@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #666666;
}
a:hover {
	text-decoration: none;
	color: #0033FF;
}
a:active {
	text-decoration: none;
	color: #00CC66;
}

#wrapper{
	width: 100%;
	height: 650px;
	background-color: #FFFFFF;
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	position: absolute;
	left: 0px;
	top: 0px;
}
.main  #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 500px;
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	position: relative;
	margin-right: auto;
	margin-left: auto;
}
.main  #header {
	height: 95px;
	background-image: url(../images/topfade.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	width: 900px;
	position: absolute;
	left: 0px;
	top: 0px;
}
#logo2{
	background-image: url(../images/logo.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 95px;
	width: 174px;
	position: relative;
	left: 22px;
	top: 0px;
}
#title {
	height: 19px;
	width: 579px;
	position: absolute;
	top: 33px;
	right: 118px;
	float: right;
	background-image: url(../images/head_text.gif);
	background-repeat: no-repeat;
}
.main  #mainContent {
	height: 460px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	width: 900px;
	position: absolute;
	top: 95px;
	left: 0px;
}
.main  #menu{
	width: 900px;
	height: 31px;
	background-color: #FFFFFF;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1000;
}


/* __________________MENUSYSTEM */
/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 100%;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 178px;
	float: left;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 160px;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 10em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #666666;
}
ul.MenuBarHorizontal li
{
	border: 1px solid #666666;
}

/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	background-color: #EEE;
	padding: 0.5em 0.75em;
	color: #333;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	background-color: #006699;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #006699;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarDownHover.gif);

	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
		display: inline;
		f\loat: left;
		background: #FFF;
	}
}


.main #footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	text-align: right;
	position: absolute;
	width: 900px;
	bottom: 0px;
	height: 22px;
}

.bold_text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	font-weight:bold;
}
.text {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
}
#main_text {
	height: 93px;
	width: 703px;
	position: absolute;
	top: 107px;
	z-index: 2;
	left: 46px;
}
#contact_text {
	height: 100px;
	width: 284px;
	position: absolute;
	left: 46px;
	top: 104px;
	z-index: 2;
}
#page_titles {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #6699CC;
	height: 24px;
	width: 219px;
	position: absolute;
	top: 35px;
}
#cust_logos {
	position: absolute;
	left: 89px;
	top: 113px;
	width: 699px;
	height: 264px;
	background-image: url(../images/cust_logos.gif);
	background-repeat: no-repeat;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}


#mainpic{
	background-repeat: no-repeat;
	height: 320px;
	width: 826px;
	position: absolute;
	top: 102px;
	right: 39px;
	float: right;
	z-index: 1;
	background-image: url(../images/main_pic.jpg);
}
#mainpiclogin{
	background-repeat: no-repeat;
	height: 320px;
	width: 826px;
	position: absolute;
	top: 99px;
	right: 37px;
	float: right;
	z-index: 1;
}
#mainpicregister{
	background-repeat: no-repeat;
	height: 320px;
	width: 826px;
	position: absolute;
	top: 99px;
	right: 37px;
	float: right;
	z-index: 1;
}
#colleges {
	position: absolute;
	top: 63px;
	height: 366px;
	width: 800px;
	left: 43px;
}
#college_pic {
	background-image: url(../images/colleges.gif);
	height: 366px;
	width: 338px;
	background-repeat: no-repeat;
	float: left;
	position: relative;
}
#college_info {
	float: right;
	position: relative;
	width: 460px;
	height: 366px;
}

#pierce_info {
	float: right;
	position: absolute;
	width: 460px;
	height: 71px;
	left: 0px;
	top: 0px;
}
#everett_info {
	float: right;
	width: 460px;
	height: 79px;
	left: 0px;
	top: 94px;
	position: absolute;
}

#long_info {
	float: right;
	width: 460px;
	height: 85px;
	left: 0px;
	top: 185px;
	position: absolute;
}
#renton_info {
	float: right;
	width: 460px;
	height: 85px;
	left: 0px;
	top: 278px;
	position: absolute;
}
#apDiv1 {
	position:absolute;
	left:17px;
	top:97px;
	width:166px;
	height:21px;
}
#apDiv2 {
	position:absolute;
	left:9px;
	top:127px;
	width:393px;
	height:101px;
}
#apDiv3 {
	position:absolute;
	left:405px;
	top:87px;
	width:448px;
	height:324px;
}
#reg_log {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	position: absolute;
	left: 809px;
	top: 76px;
	font-weight: bold;
}
