@charset "utf-8";
body  {
	background: #fff;
	font-size:85%;
	line-height:1.5em;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

a {color:#cd0102; text-decoration:none}
a:hover {color:#cd0102; text-decoration:underline;}

#container { 
	width: 70%;  /* this will create a container 80% of the browser width */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	margin: 0px;
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image: url(images/banner_bg.jpg);
	background-repeat: repeat-x;
	background-position: 0px 0px;
} 

.centered
    {
    text-align:center;
    margin-top:0px;
    margin-bottom:0px;
    padding:0px;
    }

#sidebar1 {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 190px; /* since this element is floated, a width must be given */
	padding: 0; /* top and bottom padding create visual space within this div  */
}

#sidebar2 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 35%; /* since this element is floated, a width must be given */
	padding:  0; /* top and bottom padding create visual space within this div */
}

#sidebar2 h3 {
	margin: 0 30px 0 30px;
	color:#002878
}

#sidebar2 p {
	margin-left: 30px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 30px;
	color:#002878
}

#mainContent { 
	margin: 30px 36% 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
}

#mainContent p {
	margin-left: 30px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 30px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:85%;
	color:#666666;
}

.square {font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:85%; list-style-type:square: color:#666666;}
	
.squareCN {color:#002878; list-style-type:square}

#mainContent h3 {
	margin: 0 30px 0 30px; /* the left and right margin should be given to every element that will be placed in the side columns */
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#666666;
}


#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	border-top: 1px dashed #CCCCCC
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	color:#CCCCCC;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/*menu inspired css play*/
/*Credits: CSSpplay */
/*URL: http://www.cssplay.co.uk/menus/pro_two */
#menu2 ul {margin:0 auto; padding:0; list-style:none; display:table; white-space:nowrap; list-style:none; height:35px; position:relative; font-size:11px; }
#menu2 li {display:table-cell; margin:0; padding:0;}
#menu2 li a {display:block; float:left; height:35px; line-height:35px; color:#fff; text-decoration:none; font-family:Verdana, Arial, Helvetica, sans-serif;  text-align:center; padding:0 0 0 8px; cursor:pointer; }
#menu2 li a b {float:left; display:block; padding:0 16px 0 8px; font-weight:normal;}
#menu2 li.current a {color:#fff; background:url(images/button3.gif);}
#menu2 li.current a b {background:url(images/button3.gif) no-repeat right top; font-weight:normal;}
#menu2 li a:hover {color:#fff; background:#000 url(images/button4.gif);}
#menu2 li a:hover b {background:url(images/button4.gif) no-repeat right top; font-weight:normal;}
#menu2 li.current a:hover {color:#fff; background:#000 url(images/button3.gif); cursor:default;}
#menu2 li.current a:hover b {background:url(images/button3.gif) no-repeat right top; font-weight:normal;}
#wrapper {background:#fff url(images/button1.gif);  border:1px solid #000; border-width:0 1px; border-bottom:1px solid #444;}
