/********************************************
HTML ELEMENTS
********************************************/
/* top elements */
* { margin: 0; padding: 0; outline: 0; } /*sets no padding or margin around the body of our document*/

body {
background-color: #000000; /*website background color (white)*/
background-image: ; /*url(Images/bg.jpg)  -  sets the background image, in our case the stripey background*/
background-repeat: repeat; /*repeats our background over and over*/
color: #333333; /*sets our text color for our website*/
margin: 15px 0; /*sets no padding and a 15px margin around the body of our document*/
font-family: Verdana, Tahoma, arial, sans-serif; /*sets the font family for our website*/
font-size: 70%; /*sets the font size in %, you can also use 12px or 14px etc... px stands for pixels*/
line-height: 1.5em; /*sets the height between each line of text.*/
}

/********************************************
WEBSITE LAYOUT
********************************************/
#wrap {
width: 890px; /*width of our wrap*/
background: #CCC url(Images/Body1.jpg) repeat-y center top; /*sets our background color to white and uses our content.jpg as a background, the background is also repeated along the Y axis*/
margin: 0 auto; /*center our margin to auto will center our website*/
text-align: left; /*aligns our text to the left*/
}
#content-wrap {
clear: both; /*The clear property sets the sides of an element where other floating elements are not allowed.*/
width: 890px; /*width of our wrap*/
background: #CCC url(Images/Body1.jpg) repeat-y center top; /*sets our background color to white and uses our content.jpg as a background, the background is also repeated along the Y axis*/
margin: 0px auto; /*sets our top margin at 5 pixels and the rest to auto*/
padding: 0; /*sets 0 padding*/
}

#header { /* background image block */
display: block;
height: 147px;
background: #caced1 url(Images/Header1.jpg) no-repeat;
margin-top: 0px;
}
#header a {
text-decoration:none;
}
.hide {
visibility:hidden;
}
#rss { /* RSS Link */
float: left;
position:absolute;
width : 273px;
height: 125px;
margin-left: 0px;
margin-top: 0px;
}



/********************************************
Navigation
********************************************/
#menu { 
	display: block;
    text-align: center;
    font-size: 120%;
    text-decoration: none;
}

#menu ul { 
	width: 878px; /*If your links text is bigger you will have to adjust this value*/
    height: 34px;
	margin: 0 auto;
	padding: 0;
	line-height: 30px; /*same as height. This will center your text verticaly*/
	text-decoration: none;
    background: url(Images/menu_bg.jpg) repeat-x left top;
}

/*Left Corner*/
#menu ul li.left {
	display: block;
	float: left;
	clear: left;
	width: 75px;
	height: 34px;
    background: url(Images/menu_bg.jpg) no-repeat left top;
}

/*Right Corner*/
#menu ul li.right {
	display: block;
	float: right;
	clear: right;
	width: 30px;
	height: 34px;
    background: url(Images/menu_bg.jpg) no-repeat right top;
}

#menu ul li { 
	width: auto;
	display: inline;
	float: left;
	list-style: none;
	text-align: center;
	text-decoration: none;
}
			
#menu ul li a { 
	display: block;
	text-decoration: none;
	text-transform: inherit;
	padding: 0 5px;
	color: #CCCCCC;
}

#menu ul li em {
	display: block;
	float: left;
	width: 2px;
	height: 34px;
    background: url(Images/menu_sep.jpg) no-repeat left top;
}

/*last separator*/
/*This will add a separator after your last link*/
#menu ul li.sep {
	width: 2px;
    background: url(Images/menu_sep.jpg) no-repeat left top;
}
		  
#menu ul li a:hover, #menu ul li a.active { 
	background: transparent url(Images/menu_over.jpg) repeat-x center top;
	text-decoration: none;
	Color: white;
}

#menu ul li a.active {
	font-weight: bold;
	cursor: default;
}
/********************************************
MAIN COLUMN
********************************************/
#main {
float: right; /*floats our main content area to the right*/
width: 630px; /*gives our content area a width of 660pixels*/
margin: 15px; padding: 0px 0 0 0;
display: inline;
}

#main h2 {
padding: 0;
margin-bottom: 0;
color: #333333;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 100%;
font-style: normal;
font-weight: bold;
}

#main h2 a {
color: #2666c3;
text-decoration: none;
}

#main p, #main h1, #main h2, #main h3, #main ol, #main ul,
#main blockquote, #main table, #main form {
margin-left: 0px;
margin-right: 20px;
}

/********************************************
Newsletter COLUMN
********************************************/
#newsletter {
float: right; /*floats our main content area to the right*/
width: 630px; /*gives our content area a width of 660pixels*/
margin: 15px; padding: 0px 0 0 0;
display: inline;
}

#newsletter h2 {
padding: 0;
margin-bottom: 0;
color: #333333;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 100%;
font-style: normal;
font-weight: bold;
}

#newsletter h2 a {
color: #2666c3;
text-decoration: none;
}

#newsletter p, #newsletter h1, #newsletter h2, #newsletter h3, #newsletter ol, #newsletter ul,
#newsletter blockquote, #newsletter table, #newsletter form {
margin-left: 0px;
margin-right: 10px;
}

/********************************************
SIDEBAR
********************************************/
#sidebar {
float: left;
width: 205px;
padding: 0;
color: #333333;
margin-top: 5px;
margin-right: 5px;
margin-bottom: 0;
margin-left: 20px;
}
#sidebar h2 {
margin: 5px 25px 5px 0px;
font-size: 130%;
font: bold 'Trebuchet MS', Tahoma, Sans-serif;
color: #333333;
}
#sidebar p {
margin-left: 3px;
font-size: 94%;
}

#sidebar ul.sidemenu {
list-style: none;
text-align: left;
margin: 5px 10px 8px 0; padding: 0;
text-decoration: none;
border-top: 1px solid #A9D4EF;
}
#sidebar ul.sidemenu li {
list-style: none;
padding: 4px 0 4px 5px;
margin: 0 2px;
color: #333333;
border-bottom: 1px solid #D2E8F7;
}
* html body #sidebar ul.sidemenu li {
height: 1%;
}
#sidebar ul.sidemenu li a {
text-decoration: none;
color: #FF0000;
}
#sidebar ul.sidemenu li a:hover {
color: #333;
}
#sidebar ul.sidemenu ul { margin: 0 0 0 5px; padding: 0; }
#sidebar ul.sidemenu ul li { border: none; }

/********************************************
FOOTER
********************************************/
#footer {
color: #333333;
background: #caced1 url(Images/Footer1.jpg) no-repeat center top;
clear: both;
width: 890px;
height: 37px;
text-align: center;
font-size: 100%;
}
#footer p {
padding: 0px 0;
margin: 0;
}
#footer a {
color: #FF0000;
text-decoration: none;
}

/* alignment classes */
.float-left { float: left; }
.float-right { float: right; }
.align-left { text-align: left; }
.align-right { text-align: right; }

/* display and additional classes */
.clear { clear: both; }

/********************************************
WEBSITE LINKS
********************************************/
a, a:visited {
text-decoration: none;
background: inherit;
color: #000000;
}
a:hover {
text-decoration: underline;
background: inherit;
color: #000000;
}

/********************************************
WEBSITE TEXT HEADERS
********************************************/
h1, h2, h3 { font-family: 'Trebuchet MS', Tahoma, Sans-serif; }
h1 {
font-size: 180%;
font-weight: normal;
color: #555;
}
h2 {
font-size: 160%;
color: #88ac0b;
font-weight: normal;
}
h3 {
font-size: 135%;
color: #666666;
}

/********************************************
WEBSITE IMAGES
********************************************/
img {
background: #fff;
border: 0px solid #E5E5E5;
padding: 5px;
}

img.float-right { margin: 5px 0px 10px 10px; }
img.float-left { margin: 5px 10px 10px 0px; }

h1, h2, h3, p {
margin: 10px 15px;
padding: 0;
}
ul, ol {
margin: 5px 15px;
padding: 0 25px;
}
