/* General */

body {
	margin-bottom: 50px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
		color: #333366;
}


td {
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
			line-height: 150%;
}


.pagetitle {
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: bolder;
}



/* General Link Formatting */

a:link {
	color: Navy;
	background-color: transparent;
	text-decoration: none;
}

a:visited {
	color: Navy;
	background-color: transparent;
	text-decoration: none;
}

a:hover {
	color: Maroon;
	background-color: transparent;
	text-decoration: none;
}

a:active {
	color: Red;
	background-color: transparent;
	text-decoration: none;
}

/* custom links for footer*/

a.foot:link {
	color: White;
	text-decoration: none;
	font-size:x-small;
}

a.foot:visited {
	color: White;
	text-decoration: none;
		font-size:x-small;
}

a.foot:hover {
	color: yellow;
	text-decoration: none;
		font-size:x-small;

}

a.foot:active {
	color: White;
	text-decoration: none;
		font-size:x-small;
}

.foot {
color:#FFFFFF;}

/* custom links for nutbirdz link*/

a.nutbird:link { color: #FFFFFF; text-decoration: none; font-size:10px; line-height: 200%; font-weight: normal;}

a.nutbird:visited { color: #FFFFFF; text-decoration: none; font-size:10px; line-height: 200%; font-weight: normal;}

a.nutbird:hover { color: yellow; text-decoration: none; font-size:10px; line-height: 200%; font-weight: normal;}

a.nutbird:active { color: yellow; text-decoration: none; font-size:10px; line-height: 200%; font-weight: normal;}

.nutbird {color:#FFFFFF; line-height: 200%;}

.description {font-size:10px; font-style:normal; line-height: 150%;}
/* ------------------------------------------------------------------------------
VERTICAL DROPDOWN FORMATTING


THE FOLLOWING CSS MUST BE IN YOUR STYLESHEET IF YOU ARE USING
VERTICAL DROPDOWN MENUS
(you can change the values etc)


DELETE THE FOLLOWING CSS IF YOU ARE NOT USING VERTICAL DROPDOWN MENUS
    
------------------------------------------------------------------------------- */


#nav, #nav ul {
  margin:0;
  padding:0;
  list-style:none;
  width:120px; /* Width of Menu Items */
  font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
  font-size: 10px;
  font-weight: bold;
  	text-transform: capitalize;
		color: #983620;
}

#nav li {
  position:relative;
}
  
#nav li ul {
  position:absolute;
  width:150px;
  left:120px; /* Set 1px less than menu width */
  top:0;
  display:none;
}

/* Styles for level 1 Menu Items */
#nav li a {
  display:block;
  text-decoration:none;
  color:#FFFFFF;
background-image:url(<?php echo $domain_url; ?>/images/menu_tile.gif); /* IE6 Bug */
  padding:5px;
  border-bottom:0px;
}
#nav li a:link { color:#666699; background-image:url(<?php echo $domain_url; ?>/images/menu_tile.gif);} /* Link Styles */

#nav li a:visited { color:#666699; background-image:url(<?php echo $domain_url; ?>/images/menu_tile.gif);} /* Visited Styles */

#nav li a:hover { color:#FFFF00; background:#333366; } /* Hover Styles */
    
#nav li a:active { color:#FFFFFF; background:#333366; } /* Active Styles */


/* Styles for level 2 Menu Items */
#nav li ul li a {
  display:block;
  text-decoration:none;
  color:#FFFFFF;
  background:#F5F5Fa;
background-image:; /* IE6 Bug */
  padding:5px;
  border-bottom:0px;
    border:1px solid #666699;
}

#nav li ul li a:link { color:#333366;  background:#F5F5Fa; } /* Link Styles */

#nav li ul li a:visited { color:#333366;   background:#F5F5Fa; } /* Visited Styles */

#nav li ul li a:hover { color:#FFFF00; background:#333366; } /* Hover Styles */
    
#nav li ul li a:active { color:#FFFFFF; background:#333366; } /* Active Styles */



    
#nav li:hover ul, #nav li.over ul { display:block; } /* The magic */



/* Fix IE. Hide from IE Mac \*/
* html #nav li { float:left; height:1%; }
* html #nav li a { height:1%; }
/* End */