/* This is a comment 
Span

This element may be used as a selector in a style sheet, and it also accepts the STYLE, CLASS, and ID attributes.

Div

DIV (short for "division") is a block-level element that, in function, is similar to the SPAN. But DIV may contain paragraphs, headings, and tables.*/

/* ******************** Generic Selectors ************************** */ 
/* You can take any opening HTML tag and use it as a selector */

ADDRESS
{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2.7em;
	padding: 0 0;
	background: #FFFFCC;
	color: #666;
	border-top: 1px solid #666;
	font-size: 0.7em;
	font-style: normal;
	text-align: center;
	margin: 0px 25px 0px 0px;
	clip: rect(auto, auto, auto, auto);
}
BLOCKQUOTE
{
	margin: 0 1.5em 1.5em;
	padding: 0.5em;


	font-size: smaller;
}
BLOCKQUOTE P
{
	margin: 0;
	padding: 0;
}
BLOCKQUOTE P SPAN
{
	float: left;
	position: relative;
	right: 0.25em;
	bottom: 0.25em;
	padding: 2px;
	background: #060;

	border: solid #FFF;
	border-width: 0 3px 3px 0;
	font-size: 2em;
	line-height: 1;
}
BODY
{
	margin: 1em 1em;
	padding: 1em 1em;
}
EM
{
	font-style: normal;
	font-weight: bolder;
}
H1
{
	margin: 0;
	padding: 0;
	font-size: 2em;
	line-height: 3;

}
H2
{
	margin: 0 0 0.5em;
	padding: 0;
	font-size: 1.5em;

}
H3
{
	color: #000000;
 font-size: 1.25em;
}

h4 {  
font-size: 1em; 
font-style: normal; 
font-weight: bold; 
background-color: #00FFFF;
 }

HTML
{
	margin: 0;
	padding: 0;
	font: 100%/1.5 sans-serif;
	background: #FFF;
	color: #333;
}
P
{
	color: #000000;

}
UL
{
	margin-top: 0;
	margin-bottom: 1.5em;
}

UL.NoBullet
{
	list-style-type: none;

}

hr 
{  
color: #FF0000; 
line-height: normal;
}

FOOTER
 {
 	height:auto; 
 	position: fixed;
 	bottom: 0;
 	left: 0;
 	width: 100%;

 	padding: 0 0;
 	background: #FFFFCC;
 	color: #666;
 	border-top: 1px solid #666;
 	font-size: 0.7em;
 	font-style: normal;
 	text-align: center;
 	margin: 0px 0px 0px 0px;
 	clip: rect(auto, auto, auto, auto);
}

ul.NoBullet {
  list-style-type: none}
 
 
/* ************************ ID's ************************ 	<div id="header"> 
These selectors are very similar to classes except there can only be one element with a given ID in a document. 
An ID selector is assigned by using the indicator "#".  To use an ID selector: <p ID=abc>Welcome to my website</P>*/

#header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 3;
	background: #000000;
	color : #FF4040 !important ;
	border-bottom: 2px solid #369;
	clip:    rect(auto, auto, auto, auto);
font-size: 0.8em;
 height: auto;
 font-weight: bold;
 text-align: center;
}
#content
{
	margin: 7em 1em 5em;
 padding: 6em 3em 3em;
}
#sidebar
{
	position: absolute;
	top: 3em;
	right: 0;
	width: 20em;
	background: #FFFFCC;
	color: #060;
	border: solid #9C9;
	border-width: 1px 0 1px 1px;
	clip: rect(auto, auto, auto, auto);
}

#sidebar P
{
	padding: 0 0.5em;
}


#nav
{
	position: fixed;
	top: 2em;
	left: 0;
	width: 4.8em;
   margin:0;
   padding:.25em;
	background: #FFFFCC;
	clip:       rect(auto, auto, auto, auto);
	
font-size: 0.8em; float: left; 
z-index: 2;
border-top-width: thin;  
border-right-width: thin; 
border-bottom-width: thin; 
border-left-width: thin;
}

#nav A:link
{
	color: #0000FF;
	text-decoration: none;
}

#nav A:hover
{
	color: #000000;
}

#nav A:focus
{
	color: #000000;
}

#nav A:hover SPAN, #nav A:focus SPAN
{
	visibility: visible;
}

#nav LI
{
	margin: 0 0;
	padding: 0.25em 0.1em;
	list-style-type: none;
	border-bottom: 1px solid #000000;
}

#nav SPAN
{
	position: absolute;
	top: 18em;
	left: 0.5em;
	width: 12em;
	background: #FFFFCC;
	color: #000000;
	font-size: smaller;
	visibility: hidden;
}

 
#main #menu
{
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
	float: left;
	width: 250px;
	background: #FFFFCC;
	margin: auto 3px 3px 3px;
		padding: 1px 3px 1px 1px;
border-style: solid; 
 border-top-width: medium; 
 border-right-width: thin; 
 border-bottom-width: thin; 
 border-left-width: medium; 
 clip:    rect(auto, auto, auto, auto);
 font-size: small;
}

	
#menu a:hover {
color: #a00;
background: #FFFFCC;
}

 
#footer
 { 
background-color : #000000;
position : fixed;
bottom : 0;
left : 0;
width : 100%;
height : 30px;
border-top : 1px solid #141414;
z-index : 2;
font-size : .8em; 
}

#post {
text-align: center;
} 
/**************** Pseudo classes ****************/ 

A:hover 
{
    COLOR: red; 
    TEXT-DECORATION: underline;
}

A:visited
 { 
 background: url(OK.gif) no-repeat right center;
    padding-right: 17px;
    color: #800000;
}

/**************** class style. ***************
Instead of using an HTML tag, you will use .(dot)name	<p class="redtext">

							<span class="redtext">content text</span> */
									

.body {background-color: #E0F8EC}

.menusp
{
color: #000000;
	
	margin: 0 0 0em;
}

.hormenu ul { 
display: block; 
padding: 0px; 
margin: 0px; 
list-style: none; 
text-align: center; 
} 

.hormenu ul li 
{ 
display: inline; 
padding: 0px 2px; 
margin: 0px; 
list-style: none; 
}

.topLinks 
{
COLOR: blue; 
TEXT-DECORATION: none;
}

.toplinks 
{
COLOR: blue; 
TEXT-DECORATION: none;
}

.centerred
{ 
color: red;
font-weight: bold ;
text-align: center ;
}

.center 
{
text-align: center ;
} 

.red 
{
color: red;
font-weight: bold ;
} 

.white 
{
color: white;
font-weight: bold ;
} 

.bold 
{
font-weight: bold ;
} 

.italic 
{
font-weight: normal ;
; font-style: italic ;
} 

.centerbold 
{
text-align: center ;
font-weight: bold ;
} 

.pcentered 				
{
text-align: center ;
}

.centerred 
{
text-align: center ;
color: red ;
font-weight: bold ;
} 

.centerwhite 
{
text-align: center ;
color: white ;
font-weight: bold ;
} 

.centerbold 
{ 
text-align: center ; 
font-weight: bold ;
}

.leftbold 
{ 
text-align: left ; 
font-weight: bold ;
}

.CSLinktop  {
color : #FF4040!important ;
} 

.CSLinksearch  {
color : #FF6633!important ;
} 

.CSLinkpower  {
color : #FFC000!important ;
} 

.CSLinkdetails  {
color : #00CC99!important ;
} 

.CSLinkover  {
color : #0066FF!important ;
} 

.CSLinkresearch  {
color : #FF4040!important ;
} 

.centeredImage
    {
    text-align:center;
    margin-top:0px;
    margin-bottom:0px;
    padding:0px;
    }
.CSLinkoverart { color : #33CC33!important ; }
.CSLinksupport { color : #0099FF!important ; }
.CSLinkongoing { color : #40c0ff!important ; }
.CSLinkhigh { color : #9966FF!important ; }
