/* This is a CSS comment. Use this to comment your code so you can remember what the heck it was you were doing 14 months ago. Yes, a comment can traverse multiple lines - just make sure you open and close it like you see here. */ 
/* style called with '#' should be called only once in a document and with the argument id= */
/* style called with '.' can be placed multiple times and should be called with class= */
/* stylesheet is called with <link rel=stylesheet type="text/css" href="./styles.css"> for internet explorer (all flavours)*/
/* and for netscape stylesheet is called with :
<style type="text/css">
<!--
@import url(./styles.css);
//-->
</style> */


/* defines English HTML entities  */
@charset "iso-8859-1";
body {
	font-family: Verdana, Arial, Helvetica, sans-serif; 
	font-size: 10pt; 
	text-decoration: none; 
	color: #5c5c5c;
	margin:0

	
	scrollbar-face-color: #eeeeee; 
	scrollbar-shadow-color: #cccccc; 
	scrollbar-highlight-color: #cccccc; 
	scrollbar-3dlight-color: #ffffff; 
	scrollbar-darkshadow-color: #aaaaaa; 
	scrollbar-track-color: #eeeeee;
	scrollbar-arrow-color: #aaaaaa;
	


}

p {
    text-indent: 50px;
	text-shadow: 1px 1px #FF00FF;
}

.entry-content {
	font-size:12px;
}


#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #FF00FF;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}


/* Link Properties */

A:link      {
	text-decoration: none;
	color: #000000;
	font-weight : normal; 
	font-family : Arial, Georgia, Verdana, Helvetica, sans-serif;
	font-size : 9pt;
	cursor:crosshair;
/*	cursor:auto ;
	cursor:default;
	cursor:move;
	cursor:hand ;
	cursor:help;
	cursor:text;
	cursor:wait;
	cursor:n-resize;
	cursor:s-resize;
	cursor:e-resize;
	cursor:w-resize;
	cursor:ne-resize;
	cursor:nw-resize;
	cursor:se-resize;
	cursor:sw-resize ;
*/
		

}
A:visited   {
	text-decoration: none;
	color: #000000;
	font-weight : normal; 
	font-family : Arial, Georgia, Verdana, Helvetica, sans-serif;
	font-size : 9pt;

}
A:active   {
	text-decoration: none;
	color: #000000;
	font-weight : normal; 
	font-family : Arial, Georgia, Verdana, Helvetica, sans-serif;
	font-size : 9pt;

}
A:hover    {
	text-decoration: none;
	color: #000000;
	font-weight : normal; 
	font-family : Arial, Georgia, Verdana, Helvetica, sans-serif;
	font-size : 9pt;

} 

#lorem	{
	background: pink; 
	text-decoration: underline overline;
	}

.lorem	{
	background: yellow; 
	text-decoration: underline overline;
	}
	
#toolbox
{
  width: 23%;
  top: 10px;
  left: 10px;
  text-align: right;
  position: absolute;
  margin-left:75%;
}

#toolbox a
{
  color: #990000;
}

#toolbox h2, h3
{
  padding: 1%;
  padding-top:0;
  padding-bottom:0;
  margin: 0;
}

#toolbox li
{
  margin-left: -15px;
}

#content-toolbox
{
  text-align: left;
  padding: 1%;
  padding-left: 4%;
  margin: 1%;
  border: 1px solid #ddd;
  -moz-border-radius: 0.3em;
  background-color: #fafafa;
  visibility: hidden;
  display: none;
  margin-top: 5px;
  margin-left: 0px;
}
h1, h2, h3 {
	margin: 0 0 15px 0;
	padding: 0 10px;
	font-weight: normal;
}

h1, h2 {
	font-family: Georgia, Times, serif;
}

h1 {
	font-size: 1.4em;
}

h2 {
	font-size: 1em;
	font-style: italic;
}
table.pi { 
			background-color:#ffffff;
			border-style:dashed; 
			border-color:#FF00FF; 
			border-width:3px; 
			font-size:12px; 
			font-family: Verdana, Arial, Helvetica, Geneva, sans-serif;
			color:#5c5c5c; 
			padding:10px }
td.pi 			{ 
			background-color:#eeeeee;
			border-style:dashed; 
			border-color:#3e6565; 
			border-width:1px; 
			font-size:11px; 
			font-family: Verdana, Arial, Helvetica, Geneva, sans-serif;
			color:#3e6565; 
			padding:10px
}
td.po { 
			background-color:#eeeeee;
			font-size:11px; 
			font-family: Verdana, Arial, Helvetica, Geneva, sans-serif;
			color:#3e6565; 
			padding:10px
}
		/* brought to you by dev2761*/