body {
/*	background-image: url(images/grey_gradient.png);
	background-repeat: repeat-x; */
	color: #3a3a3a;
	font-family: Arial Narrow;
}

#top .unique_title {
	position: absolute;
	margin: -10px;
	z-index: 10;
	text-align: center;
	color: #ffffff;
}
p.blue_welcome{
	color: #0000FF;
	font-size: 1.2em;
}

p.blue_header {
	color: #0000FF;
	font-size: 1.2em;
}
p.subtle_italics_blue {
	color: #0000FF;
	font-weight: bold;
	font-size: 1em;
	font-style: italic;
	font-family: Arial Narrow;
	margin-top: 10px;
	margin-bottom: 10px;
}

p.red_header {
	margin-top: 10px;
	margin-bottom: 0px;
	color: #ff0000;
	font-size: 1.2em;
}

ul.space_bottom li {
	color: #000000;
	margin-bottom: 10px;
}

#top_navigation {
	font-weight: normal;
	font-size: 1.2em;/*
	width: 900px; */
	margin-left: auto;
	margin-right: auto;
}

#top_navigation ul {
	list-style: none;
	color: #ffffff;
	background-color: #0000ff;
	padding: 0.2em 0 0 0;
	text-align: center;
}

#top_navigation li {
	display: inline;
	margin: 0 0 0 0;
	padding-right: 1em;
	padding-left: 1em;
}
#top_navigation li.first {
	margin: 0 0 0 0;
	border-right: solid 1px #ffffff;
}

#top_navigation li.inside {
	border-left: solid 1px #ffffff;
	border-right: solid 1px #ffffff;
}

#top_navigation li.last {
	border-left: solid 1px #ffffff;
}

#top_navigation a,top_navigation a:visited {
    	text-decoration: none;
	color: #ffffff;
}
a:visited {
	color: #0000ff;
}
p.center_header {
	text-align: center;
	font-size: 1.5em;
	font-weight: bold;
	margin-bottom: 20px;
	color: #0000ff;
}

p.center_important {
	text-align: center;
	font-size: 1.2em;
	margin: 20px auto 20px auto;
	color: #0000ff;
}

p.left_important {
	text-align: left;
	font-size: 1.2em;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 5px;
	color: #0000ff;
}

p.coming_soon {
    margin-top: 75px;
    font-size: 1.5em;
    text-align: center;
    color: #0000ff;
}

p.text {
	text-indent: 0em;
	margin-bottom: 10px;
	color: #000000;
}

p.text_centered {
	text-indent: 0em;
	margin-bottom: 10px;
	color: #000000;
	text-align: center;
}

table.center_cells td {
	text-align: center;
	border: solid 1px #000000;
}

td.administration_header {
	color: #0000ff;
	background-color: #ff5050;
	font-size: 1.1em;
}

td.management_header {
	color: #ffff00;
	background-color: #ff5050;
	font-size:1.1em;
}

td.management_cell {
	color: #ffff00;
	background-color: #339966;
}

td.technology_header {
	color: #ffffff;
	background-color: #ff5050;
	font-size: 1.1em;
}

td.technology_cell {
	color: #ffffff;
	background-color: #0000ff;
}

ul.style1 {
	color: #0000ff;
	list-style: none;
}

tr.grey {
	background: #E0E0E0;
}

img.shadow {
	margin-top: .2em;
	padding: .3em;
	background: white;
	border-bottom: solid 2px #000000;
	border-left: solid 2px #000000;
	border-top: solid 1px #CED0CD;
	border-right: solid 1px #CED0CD;
}

ul.makeMenu, ul.makeMenu ul {
  width: 130px;                 /* sets the size of the menu blocks */
  background-image: url(images/menumenuline.gif);      
  background-repeat: repeat-y;
  padding-left: 0px;           /* stops the usual indent from ul */
  cursor: default;             /* gives an arrow cursor */
  margin-left: 0px;            /* Opera 7 final's margin and margin-box model cause problems */
  font-size: 0.9em;
  font-weight: normal;
}

ul.makeMenu li {
  text-align: left;
  list-style-type: none;       /* removes the bullet points */
  margin: 0px;                 /* Opera 7 puts large spacings between li elements */
  padding: 5px 3px 3px 3px;
  position: relative;          /* makes the menu blocks be positioned relative to their parent menu item
                                  the lack of offset makes these appear normal, but it will make a difference
                                  to the absolutely positioned child blocks */
  color: #ffffff;                 /* sets the default font colour to white */
  font-size: 1.2em;
}

ul.makeMenu li > ul {          /* using the > selector prevents many lesser browsers (and IE - see below) hiding child ULs */
  display: none;               /* hides child menu blocks - one of the most important declarations */
  position: absolute;          /* make child blocks hover without leaving space for them */
  top: 1px;                    /* position slightly lower than the parent menu item */
  left: 123px;                  /* this must not be more than the width of the parent block, or the mouse will
                                  have to move off the element to move between blocks, and the menu will close */
}

ul.makeMenu li > ul li { 
		font-size: 1.1em;
}
ul.makeMenu li:hover, ul.makeMenu li.CSStoHighlight {
  background-color: #d7eafb;      
  color: #000000;                 /* makes the active menu item text black */ 
}
ul.makeMenu ul.CSStoShow {     /* must not be combined with the next rule or IE gets confused */
  display: block;              /* specially to go with the className changes in the behaviour file */
}
ul.makeMenu li:hover > ul {    /* one of the most important declarations - the browser must detect hovering over arbitrary elements
                                  the > targets only the child ul, not any child uls of that child ul */
  display: block;              /* makes the child block visible - one of the most important declarations */
}
/* and some link styles */
ul.makeMenu li a {
	color: #ffffff; 
	display: inline; 
	width: 100%; 
	text-decoration: none; 
}
ul.makeMenu li a:hover, ul.makeMenu li a.CSStoHighLink { 
	color: #000; 
}

ul.makeMenu li a:visited {
	color: #ffffff;
}

ul.makeMenu li:hover > a { 
	color: #000; 
} 

.menu_left_side {
	background-image: url("images/menuleftline.gif");
	background-repeat: repeat-y;
	background-color: #ffffff;
	margin: 0px;
	padding: 0px;
}

.menu_center {
	background-image: url("images/menuline.gif");
	background-repeat: repeat-y;
	background-color: #ffffff;
	margin: 0px;
	padding: 0px;
}

.menu_right_side {
	background-image: url("images/menurightline.gif");
	background-repeat: repeat-y;
	background-color: #ffffff;
	margin: 0px;
	padding: 0px;
}

a.makeMenu {
	display: block;
}

.clear_none {
	clear: none;
}

.clear_both {
	clear: both;
}

.floatright {
	float: right;
	margin: 0;
	margin-top: 10px;
}

.floatleft {
	float: left;
	margin: 0;
	margin-top: 10px;
}

h1, h2, h3, h4 {
	text-align: center;
	margin-top: 0px;
	color: #000000;
}

.due_date {
	color: #ff0000;
}

.underline {
	text-decoration: underline;
	color: #000000;
}

.blue {
	color: #0000ff;
}

.red {
	color: #ff0000;
}

table.registration{
	border-collapse: collapse;
	border: 1px solid black;
	color: #ff0000;
	width: 100%;
}

.registration td, th{
	border: 1px solid black;
	padding: 5px;
}