@charset "UTF-8";
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: url(images/bg.png) fixed;
	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: #333333;
}
#container {
	width: 890px;
	margin: 0 auto;
	text-align: left;
} 
#header {
	height: 160px;
	background: url(images/bg_top.png) no-repeat;
	margin: 0;
} 
#top_left {
	float: left;
	margin-right: 0 500px 0 0;
}
#top_right {
	float: right;
	width: 243px;
	text-align:right;
}
#top_right #gatech {
	height: 23px;
	margin-top: 6px;
}
#top_right #gatech a {
	text-decoration: none;
	font: 14px Georgia, "Times New Roman", Times, serif;
	color: #FFFFFF;
}

#top_right #pdw {
	height: 32px;
	width: 243px;
	background: url(images/logo_pdw.png) no-repeat right top;
}

#top_right #pdw:hover { background: url(images/logo_pdw.png) no-repeat 0px top; }

#top_right #futroit {
	height: 35px;
	width: 143px;
	background: url(images/logo_futroit.png) no-repeat right top;
	margin: 0px 0px 0px 100px;
}
#top_right #futroit:hover { background: url(images/logo_futroit.png) no-repeat 0px top; }
#body {
	background: url(images/bg_content.png) repeat-y;

}
#sidebar {
	background:#FFFFFF;
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
}
#sidebar ul {
	color: #555555;
	margin: 20px 10px 20px;
	padding: 0px 0px 0px 3px;
	line-height: 20px;
}
#sidebar #menu { list-style: url(images/menu_dot.png) none; }

#sidebar #menu .subMenu {
	list-style: none;
	margin: 0px 10px 10px;
	padding: 0px;
	line-height: 16px;
}
#sidebar #menu #selected { background: url(images/bg_right_on.png); }
#sidebar a {
	text-decoration: none;
	color: #000000;
}
#sidebar a:hover {
	text-decoration: underline;
}
#sidebar #menu2 { list-style: none; }

#mainContent {
	clear:left;
	margin: 0 230px 0 0;
	padding: 10px 40px 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent h1 {
	font-size: 18px;
	color: #2b7dd1; /*change this color for your own site */
}

#mainContent #mainTitle {
	font-size: 14px;
	color: #4c4c4c;
}
#mainContent h2 {
	font-size: 14px;
	color: #4c4c4c;
	margin: 20px 0px 0px;
}
#footer {
	background:#FFFFFF;
	height:30px;
	margin: 30px 0px 20px;
	text-align:center;
} 
#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 */
}
#footer #copyright {
	vertical-align:middle;
	padding: 7px;
}
.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 a float */
	clear:both;
    height: 0px;
    font-size: 1px;
    line-height: 0px;
}
