/* MENU STRIP */

/* holds the whole navigation menu */
.menuStrip
{
    float:left;
    position:relative;
    left:-1px;
}

/* The ul list that makes up the menu*/
ul#menuStripList {
    margin: 0; padding: 0;
    float:left;
/*    width: 100%;*/
    list-style: none;
    font-size: 1.1em;
}
ul#menuStripList li {
    float: left;
    margin: 0; padding: 0;
    position: relative; /*--Important--*/
}
ul#menuStripList li a {
    /*float: left;*/
    /*text-indent: -9999px; --Push text off of page--  NO IDEA WHY THIS WAS THERE IN THE FIRST PLACE */
    height: 44px;
}

/* A menu item in the navigation */
.menuStripItem
{
    border-left:#235277 1px solid;
    padding:0px;
    margin:0px;
    height:37px;
}
/*
.menuStripItem:hover
{ 
    background-image: url(MenuOver.png); 
    background-position:left top;
    background-repeat:repeat-x;
}*/
.menuStripItemLast
{
    /* needs the righ hand border*/
    border-right:#235277 1px solid;
}
.menuStripItemTick
{
    padding-right:25px !important;
    background-image:url(/images/MenuStrip/MenuExpander.png);
    background-repeat:no-repeat;
    background-position: right center;
}
.menuStripItemTick:hover
{
    background-image: url(/images/MenuStrip/MenuExpanderHover.png); 
}

/* Styles for the selected menu item*/
.menuStripItemSelected
{
    background-image: url(/images/MenuStrip/MenuSelected.png); 
}



/* The link on a menu item*/
.menuStripLink
{
    text-align:center;
    line-height:36px;
    padding-left:12px;
    padding-right:12px;
    display:inline;
    font-size:14px;
    height:37px;
    padding-top:9px; /* expand to allow mouse over effects on link */
    padding-bottom:11px; 
    text-decoration:none;
}
.menuStripLink:hover
{ 
    COLOR: #2a6792;
    text-decoration:none;
    background-image: url(/images/MenuStrip/MenuOver.png); 
    background-position:left top;
    background-repeat:repeat-x;
}
.menuStripLink
{
    color:#fff;
}


/* The Drop down section within the Menu*/
ul#menuStripList li .sub {
	position: absolute; /*--Important--*/
	top: 37px; left: 0;
    border: solid 1px #aaaaaa;
	background-color:#f0f0f0;
    background-image:url(/images/MenuStrip/DropDownBG.png);
    background-repeat:repeat-x;
    background-position:left top;
	padding: 5px 5px 5px 5px;
	float: left;
	    display:inline;

	/*--Bottom right rounded corner (doesn't work in ie)--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner (doesn't work in ie)--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
	display: none; /*--Hidden for those with js turned off--*/
	z-index:5;
}

/* Menu Strip - Product Drop Down (ms_pdd) Styles*/
.ms_pdd
{
	text-align:center; 
	width:700px; 
	background-color:White;
    background-image:url(/images/MenuStrip/DropDownBG.png);
    background-repeat:repeat-x;
    background-position:left top;
    border-top: solid 1px #dddddd;
    border-left: solid 1px #dddddd;
    border-right: solid 1px #f2f2f2;
    border-bottom: solid 1px #f2f2f2;
    padding:5px;
	/*--Bottom right rounded corner (doesn't work in ie)--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner (doesn't work in ie)--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}

.ms_pdd_container
{
	text-align:left; 
	margin:0 auto; 
	width:700px; 
	padding:0px; 
}

.ms_pdd_header
{
    color:#333333;
    font-family:Arial;
    font-size:12px;
    font-weight:bold;
    line-height:20px;
    margin:0px 0px 0px 5px;
    text-align:left;
}

.ms_pdd_featureLinks
{
    background-image:url(/images/global/bulletGreyBG.png);
    background-repeat:no-repeat;
    background-position:left center;
    color:#519BC6;
    line-height:20px;
    padding-left:20px;
    margin-left:12px;
    font-size:11px;
}

