/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
	list-style:none;
	font-weight:bold;
	background: #000000;
	margin-bottom:10px;
	/* Clear floats */
	float:left;
	position:relative;
	z-index:5;
}
#nav li{
	float:left;
	position:relative;
}
#nav a{
	display: block; 
	color: #FFF; 
	padding: 10px 30px 10px 30px;
	text-decoration:none; 
	text-transform:uppercase;
	vertical-align:center;
	font: 8pt Arial, Helvetica, Sans-serif; 
	border-right: solid 1px #333; 
}
#nav a:hover{
}

/*--- 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;) */
	text-align:left;
	text-transform:none;
}
#nav ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced questions */
	float:none;
	text-align:left;
	text-transform:none;
}
#nav ul a{
	white-space:nowrap;
	text-transform:none; /* Stop text wrapping and creating multi-line dropdown questions */
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
	border-bottom: 0px;
}
#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:#666;
}
#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;
	text-transform: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:#333;
}


/* SINGLE DROPDOWN FUNCTIONALITY */
#menu, #menu ul{ 
	padding:0; 
	margin:0
}
#menu a{
	display:block;
}
#menu li{
	display:block; 
	float:left;
}
#menu li ul li{
	float:none;
}
#menu li ul{
	display:none; position:absolute; z-index:1
}
#menu li:hover ul{
	display:block;
}

/* SINGLE DROPDOWN STYLING */
#menu{}
#menu a{
	color:#09F;
	background-color:e3e3e3;
}
#menu a:hover{
	color:#fff;
	background-color:09F;
}
#menu li{
	background-color:#FFF; 
	border:solid 1px #CCC;  
	margin-left:-1px; 
	padding:4px 10px 4px 10px;
}
#menu li:hover{
	color:#09F; 
	background-color:#F0F0F0;
}

/* SINGLE DROPDOWN FUNCTIONALITY */
#options, #options ul{ 
	padding:0; 
	margin:0
}
#options a{
	display:block;
}
#options li{
	display:block; 
	float:left;
	width:128px !important;
	padding: 0px;
}
#options li ul li{
	float:none;
	position:relative;
	overflow:visible;
}
#options li ul{
	display:none; 
	position:absolute;
	z-index:1;
}
#options li:hover ul{
	display:block;
}

/* SINGLE DROPDOWN STYLING */
#options{}
#options a{
	color:#666; 
}
#options a:hover{
	color:#666;
	/*background:#0080c5;*/
	
}
#options li ul.optionsMenu li{
	background:#fff; 
	border:solid 1px #CCC;  
	margin-left:-1px;
	text-align:left;
	color:#666;
}
#options li ul.optionsMenu li:hover{
	 
	border:solid 1px #CCC;  
	margin-left:-1px; 
	text-align:left;
	color:#fff;
}
#options li ul.optionsMenu li.disabled_style {
	display:none;
}
#options li ul.optionsMenu li a{
	margin: 0;
	display:block;
	padding:4px 10px 4px 10px;
	background:transparent;
	color:#0080c5;
	overflow:hidden;
	width:108px !important;
}

#options li ul.optionsMenu li a:hover {
	background:#0080c5;
	color:#fff;
}

.shadow {
	-moz-box-shadow: 3px 3px 4px #666;
	-webkit-box-shadow: 3px 3px 4px #666;
	box-shadow: 3px 3px 4px #666;
}

#options li.image{
	margin-left:-1px; 
	background-color:transparent !important;
	width:16px !important;
	padding:1px;
	border:0px;
	text-align:center; 
}

#options li.image:hover{
	background: transparent !important;
}	
	
#options li:hover{
	color:#0080c5;
	
}
#options ul.optionsMenu ul{
	display: none;
	visibility: none;
}
#options ul.optionsMenu li:hover > ul {
	display: block;
}

#options ul.optionsMenu ul.editAccess li {
	background:#fff;
	color:#666;
}
#options ul.optionsMenu ul.editAccess li:hover {
	background:#0080c5;
	color:#fff;
}
	
	
	
#options ul ul a 
{
    color: #000;
    background: #E3E3E3;
    text-decoration: none;
}

#options ul ul ul a
{
    color: #000;
    background: #EEEEEE;
    text-decoration: none;
    border-bottom: 1px solid #999999;
    border-left: 1px solid #999999;
    border-right: 1px solid #999999;
}
#options ul ul a:hover 
{
    color: #FFFFFF;
    background: #0080c5;
}

/* MENU WITH CHILD */
#menu1{
	list-style: none;
	padding: 0;
	background-color: #FFF;
}
#menu1 li{
	float:left;
	background-color:#FFF; 
	border:solid 1px #CCC;  
	margin-left:-1px; 
	padding:4px 10px 4px 10px;
	width:100px;
	text-align:left;
}
#menu1 li a{
	display: block;
	margin: 0;
	padding: 0;
	line-height: 18px;
}
#menu1 ul{
	position: absolute;
	list-style: none;
	padding: 0px;
}
#menu1 ul li{
	clear:left;
}
#menu1 li:hover ul{
	display: block;
}
.clearfix{
	clear:both;
}
/* SINGLE DROPDOWN STYLING - buttom */

#options li.button{
	margin-left:-1px; 
	background-color:transparent;
	padding:1px;
	border:0px;
	text-align:center; 
	font-weight:plain;
	width:150;
}
.button {
    background: -moz-linear-gradient(center top , #0080C5 5%, #0080C5 100%) repeat scroll 0 0 #E0ECF8;
    border: 2px solid #CCCCCC;
    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 1px 0 0 #0080C5 inset;
    color: #FFFFFF;
    display: inline-block;
    font-family: 'Archivo Narrow',sans-serif;
    font-size: 16px;
    padding: 6px 24px;
    text-decoration: none;
    text-shadow: 1px 1px 3px #000000;
}

.buttonintable {
    background: -moz-linear-gradient(center top , #FFFFFF 5%, #F1F1F1 100%) repeat scroll 0 0 #FFFFFF;
    border: 1px solid #DCDCDC;
    border-radius: 6px 6px 6px 6px;
    color: #666666;
    display: inline-block;
    font-family: 'Archivo Narrow',sans-serif;
    font-size: 10pt;
    padding: 4px 12px;
    text-decoration: none;
    text-shadow: 1px 3px 9px #FFFFFF;
}


#stickyFooter {
    clear: both;
    height: 40px;
    margin-bottom: -40px;
    position: relative;
}
 
.footerContent {
    background-color: #000000;
    height: 40px;
    margin: 0;
    vertical-align: middle;
    width: 100%;
}

.footerLeft {
    color: #FFFFFF;
    float: left;
    font-family: 'Archivo Narrow',sans-serif;
    font-size: 9pt;
    padding: 10px 10px 15px 15px;
    text-align: left;
    vertical-align: middle;
}

a.lightgrey:link {
    color: #CCCCCC;
    text-decoration: none;
}
a:link {
    color: #0080C5;
    text-decoration: none;
}
.lightgrey {
    color: #CCCCCC !important;
}

.footerRight {
    color: #FFFFFF;
    float: right;
    font-family: 'Archivo Narrow',sans-serif;
    font-size: 9pt;
    padding: 10px 10px 15px 15px;
    text-align: left;
    vertical-align: middle;
}
