/*
// Chrome Drop Down Menu - Author: Dynamic Drive (http://www.dynamicdrive.com)
// Last updated: Jan 1st, 06'
// ----------------------------------------------------------------------------------------------->
// Portions  Copyright (c) 2006 Martin Weingarten And Weingarten Enterprises
// Notations Of Modifications Embedded Within Document(s)
// http://weingarten.net
// Weingarten Enterprises IS NOT Distributing This Code And 
// Proprietary Modifications Are Not To Be Used Elsewhere Without Advance Permission From Author(s)
// Please See Original Authors Notations And Acquire From Their Authorized Source(s) ONLY!
// ----------------------------------------------------------------------------------------------->
// Used In Conjunction With menu.js Script
// Use The Following Tag Within The <head> Of Your HTML Document To Call Externally
// <link rel="stylesheet" type="text/css" href="./menu.css" />
// Edit href Attribute Within This Tag To Match Your Path Specifications
*/


#menu{
width:100%;
}

/* 
// Add Margin Between Menu And Rest Of Content In Firefox
// MSW Removed - Causes Spacial Problems In Opera, Works Fine In FF 1.0.2
#menu:after{ 
content:"."; 
display:block; 
height:0; 
clear:both; 
visibility:hidden;
}
*/

#menu ul{ /* Navigational Menu Bar Attributes */
border-top:0px solid #C0C0C0; /* MSW */
border-bottom:0px solid #C0C0C0; /* MSW */
border-left:0px solid #C0C0C0; /* MSW */
border-right:0px solid #C0C0C0; /* MSW */
width:100%; /* FireFox Width/Alignment Issue */
background:url(chromebg.gif) center center repeat-x; /* Theme Change Here */
margin-left:0;
padding-left:0;
padding-bottom:0; /* MSW */
margin:0;
float:left;
font:bold 12px Verdana;
line-height:10px; /* Height Of Nav Bar */
}

#menu ul li{
display:inline;
width:146px; /* MSW */
}

#menu ul li a{
float:left;
color:#7F7F7F;
font-weight:bold;
padding:7px 9px 7px 7px; /* Difference in spacing due to border below */
width:146px; /* MSW */
text-decoration:none;
/* background:url(divider.gif) center right no-repeat; /* Theme Change Here */ /* MSW Removed */
}

#menu ul li a:hover{
color:#CC0000;
padding:6px 8px 6px 6px;
border:1px inset; /* MSW */
border-color:#F0F0F0; /* MSW */
width:146px; /* MSW */
}

#menu ul li a[onMouseover]:after{ /* HTML To Indicate Drop Down Link */
/* content: " v"; /* MSW Removed */
/* content: " " url(downimage.gif); /* Uncomment This Line To Use An Image Instead */
}

/* ######### Style For Drop Down Menu ######### */
/* width:146px is to evenly space for 5 links within the 730px template - 146x5=730 */

.div_menu{
position:absolute;
top:0;
margin:5px 0px 0px 0px; /* MSW - Sets Gap Distance Of Drop Down Menu Below Main Nav Bar */
border:1px solid #C0C0C0; /* Theme Change Here */
/* border-bottom-width:0; */
font:normal 12px Verdana;
line-height:10px; /* Height Of Each Drop Down Link Button */
z-index:100;
background-color:white;
width:146px;
visibility: hidden;
filter: progid:DXImageTransform.Microsoft.Shadow(color=#CACACA,direction=135,strength=4); /* Add Shadow In IE. Remove If Desired */
}

.div_menu a{
width:146px; /* MSW */
display:block;
text-indent:3px;
/* border-bottom:1px solid #C0C0C0; /* Theme Change Here */
border: 1px solid #C0C0C0;
padding:6px 8px 6px 6px; /* Specific To Firefox - 8px Adjusts Width Of Dropdown Menu */
/* padding:2px 0; /* MSW Removed In Favor Of Line Above */
text-decoration:none;
font-weight:bold;
color:black;
background:url(chromebg.gif) center center repeat-x; /* MSW */
}

.div_menu a:link{
width:146px;
color:#7F7F7F;
background-color:#FFFFFF;
border:1px outset;
border-color:#F0F0F0; /* MSW */
}

.div_menu a:visited{
width:146px; /* MSW */
color:#7F7F7F;
background-color:#FFFFFF;
border:1px outset;
border-color:#F0F0F0; /* MSW */
}

.div_menu a:active{
width:146px; /* MSW */
color:#7F7F7F;
background-color:#FFFFFF;
border:1px outset;
border-color:#F0F0F0; /* MSW */
}

.div_menu a:hover{ /* Theme Change Here */
width:146px; /* MSW */
color:#CC0000;
background-color:#F0F0F0;
border:1px inset; /* MSW */
border-color:#F0F0F0; /* MSW */
}