/* 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 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(76, 76, 188) }
a:visited { color: rgb(76, 76, 188) }
a:active  { color: rgb(76, 76, 188) }

/* Set colors for links not in navigation bar */
a.linkcolor2:hover { background: white; color: rgb(76, 76, 188) }
a.linkcolor2:link    { color: rgb(76, 76, 188) }
a.linkcolor2:visited { color: rgb(76, 76, 188) }
a.linkcolor2:active  { color: rgb(76, 76, 188) }

/* Specify body font. */
body {
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(76, 76, 188)
}

/* Specify red font. */
.red { color: #FF0000 }


/* Specify no border around images that have hyper links to click on */
img
{  border-style: none;
}

