@charset "UTF-8";
/* CSS Document */

body {
    background: #F0F0F0 url(../images/body_bg.jpg) repeat;
    font-size: 12px;
	border-top: 10px solid #1A87C8;
	margin: 0;
    padding: 0;
}
h1.title_name {
	font-family: normal Georgia,'Times New Roman',Times,serif;
	font-weight: normal;
	font-size: 3.6em;
	margin: 0;
	padding: 50px 0 20px 50px;
	color: #333;
}
h1.title_name span {
	font-family: normal Georgia,'Times New Roman',Times,serif;
	color: #AAA;
	font-size: 0.9em;
}
h1.title_name small {
	color: #555;
	display: block;
	font-family: normal Verdana,Arial,Helvetica,sans-serif;
	font-size: 0.2em;
	letter-spacing: 1.0em;
	text-transform: uppercase;
	padding: 10px 0 0 5px;
}
p.link {
	font-size: 1em;
}
p.link a {
	color: #3FA4E6;
}
p.link a:hover {
	color: #2c709c;
	text-decoration: none;
}
/* CONTAINER */
.container {
    width: 980px;
    margin: 0 auto;
    overflow: hidden;
    background: url(../images/container_stretch.gif) repeat-y;
    font-size: 1.2em;
    position: relative;
}
#sidenav {
    width: 300px;
    position: fixed; /*--Fix the sidenav to stay in one spot--*/
    float: left; /*--Keeps sidenav into place when Fixed positioning fails--*/
}
#content {
    float: right; /*--Keeps content to the right side--*/
    width: 640px;
    padding: 0 20px 20px;
}
#sidenav h2 {
    padding: 0; 
	margin: 35px 0 5px;
    background-position:  20px top; /*--Set position of each heading background--*/
}
h2.categories { background: url(h2_categories.gif) no-repeat ;} /*--Background image for "category" heading--*/
h2.sites { background: url(h2_othersites.gif) no-repeat ;} /*--Background image for "other sites" heading--*/
#sidenav ul {
    margin: 0; 
	padding: 0 20px 30px 20px;
    list-style: none;
	border-
}
#sidenav ul li{
    margin: 0; padding:  0;
    display: inline; /*--Fixes IE6 bug of double margin--*/
}
#sidenav ul li a{
    display: block;
    margin: 0; 
	padding:  5px 0 5px 15px;
    text-decoration: none;
    color: #666;
}
#sidenav ul li a:hover {
    color: #AAA;
}
#content h1 {
	border-bottom: 5px solid #BBB;
    padding: 0 0 15px 0;
	margin-top: 15px;
}
#content h2 {
    color: #1A87C8;
    margin: 10px 0;  
	padding: 10px 0;
    font-size: 2em;
    font-weight: normal;
}
/*Download by http://www.codefans.net*/
#content p {
    line-height: 1.8em;
    padding: 7px 0;
    margin: 7px 0;
}
/* Unfortunately the fixed position property is not supported in IE6 */
*html #sidenav {
	position: absolute; 
	left: expression( ( 0 + ( ignoreMe2 = document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft ) ) + 'px' );
	top: expression( ( 0 + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop ) ) + 'px' );
}