/* Place top of navigation bar background division behind logo division. */
#navbg {position: absolute; top: 0px; z-index: 1;}

/* Start content division of page to right of navigation bar, 
   and below Great Degrees! Inc. logo, leaving white space at top of pages. */
#content {position: absolute; top: 25px; left: 340px;}

/* Position phone number in navigation bar. */
#phone {
	position: absolute;
	top: 145px;
	left: 36px;
	z-index: 3;
	width: 250px;
	height: 28px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:24px;
	color: rgb(255, 255, 255)
}



/* Position location in navigation bar. */
#location {
	position: absolute;
	top: 581px;
	left: 36px;
	z-index: 3;
	width: 250px;
	height: 28px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	color: rgb(255, 255, 255)
}

/* Position location in navigation bar. */
#badge {
	position: absolute;
	top: 675px;
	left: 97px;
	z-index: 4;
	width: 300px;
	height: 300px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	color: rgb(255, 255, 255)
}


/* Position navigation buttons division of page. */
#navbuttons {position: absolute; top: 220px; left: 36px; z-index: 3;}
/* Make each navigation button a separate 'block'; i.e. separate paragraph. */
#navbuttons a {display:block;}

/* Position footnotes portion of page on top of navigation bar, near its bottom. */
#footnotes {position: absolute; top: 350px; left: 30px; z-index: 3;}

/* Set colors for navigation buttons. */
a:hover { color: rgb(0, 255, 255) }
a:link    { color: rgb(255, 255, 255) }
a:visited { color: rgb(255, 255, 255) }
a:active  { color: rgb(255, 255, 255) }

/* Set colors for links not in navigation bar */
a.linkcolor2:hover { background: white; color: rgb(01, 01, 162) }
a.linkcolor2:link    { color: rgb(01, 01, 162) }
a.linkcolor2:visited { color: rgb(01, 01, 162) }
a.linkcolor2:active  { color: rgb(01, 01, 162) }


/* Specify body font. */
body {
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(01, 01, 162);
}

/* Specify red font. */
.red { color: #FF0000 }

/* Specify white font. */
.white { color: #FFFFFF }


/* Specify no border around images that have hyper links to click on */
img
{  border-style: none;
}


