@charset "utf-8";
/* CSS Document */

body {
background-image:url("../images/body_bg.png");
background-repeat:repeat-x;
}

#map_canvas {
      height: 580px;
      width: 700px;
      }

#map_filters {
	width:200px;
	height: 580px;
	background:#ccc;
}

.box {
border-radius: 8px;
padding: 10px;
margin-bottom: 18px;
box-shadow: 0 2px 4px 0 rgba(1, 90, 129, 0.4);
background: #99ccff;
background-image:url("../images/body_bg.png");
}

.bar {
background-image: url("../images/table-title-bg-52.png");
box-shadow: 0 2px 4px 0 rgba(1, 90, 129, 0.4);
float: left;
border-radius: 8px;
width: 980px;
height: 35px;
padding-top: 17px;
}

.footerbar {
background-image: url("../images/table-title-bg-52.png");
box-shadow: 0 2px 4px 0 rgba(1, 90, 129, 0.4);
border-radius: 8px;
width: 980px;
height: 15px;
padding-top: 37px;
}

#menu{
text-align:center;
text-decoration:none;
}

#footer  
{
padding-top:20px;
padding-bottom:2px;
font-size: x-small;
text-align: center;
}
#nolongerused_old-footer-that-floated-at-bottom-of-page
{
padding-top:5px;
font-size: x-small;
text-align: center;
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
height: 18px
}
div#preload { display: none; }



.style1 {font-size: large}
.centered {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 50%;
  margin: auto;
} 
.style2 {color: #666666;}
.style3 {font-size: medium;}
.style6 {color: #494949;
  text-decoration:none;}
.style7 {color: #707070;
  text-decoration:none;}
.style8 {color: #d01f26;
  text-decoration:none;}
.style10 {font-size: x-small;
text-decoration:none;}
.style16 {color: #494949;
  text-decoration:none;
  font-size: x-small;}
.style17 {color: #707070;
  text-decoration:none;
  font-size: x-small;}
.style18 {color: #d01f26;
  text-decoration:none;
  font-size: x-small;}
.styleform {color:#000000;} 
  
  #adminmenu {
	text-align: left;
	background:#000000;
	color:#ffffff;
	width:100%;
	margin-left:auto;
	margin-right:auto;
	}
		
#adminmenu a:link {color:#ffffff;}
#adminmenu a:visited {color:#ffffff;}
#adminmenu a:hover {color:#00828a;}
#adminmenu a:active {color:#ffffff;}	
	
#adminleft {
	text-align: left;
	background:#000000;
	color:#ffffff;
	width:100%;
	margin-right:auto;
	}
#admincenter {
	text-align: left;
	background:#000000;
	color:#ffffff;
	width:100%;
	margin-right:auto;
	}
	
#user {
	float:right;
	}
	
.text_button {
   border: none;
   background-color: transparent;
   background-image:none;
   padding: 0;
   text-decoration: underline; /* if desired */
   color: #000;  /* or whatever other color you want */
}
.text_button:hover {
	color:#990000;
	text-decoration:none;
}

#roster_buttons {
    width: 200px;
    height: 110px;
}

#nav_buttons {
    width: 300px;
    height: 100px;
}
.navButtons {
    color: #ff9;
    font-size: 16px;
    line-height: 33px;
    padding: 5px 30px ;
    border: 1px solid #6666ff; 
    background: -webkit-gradient(linear, left top, left bottom, from(#9999ff), to(#6666FF));
    -webkit-box-shadow: 0 0 2px #E4E3E3;
    -webkit-border-radius: 10px;
}

/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
	list-style:none;
	font-weight:bold;
	margin-bottom:10px;
	/* Clear floats */
	float:left;
	width:95%;
	text-align:left;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/

}
#nav li{
	float:left;
	margin-right:10px;
	position:relative;
	border-style:solid;
	border-width:0px 1px 1px 1px;
}
#nav a{
	display:block;
	padding:10px;
	color:#fff;
	background:rgb(64,169,245);
	text-decoration:none;
}
#nav a:hover{
	color:#fff;
	background:rgb(64,169,245);
	text-decoration:underline;
}

/*--- DROPDOWN ---*/
#nav ul{
	background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li{
	padding-top:0px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:-41px; /* Bring back on-screen when needed */
	
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:rgb(64,169,245);
	text-decoration:underline;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:rgb(64,169,245);
}