/**************************************************************************

    Admissions -    March 2009 - cbuck - IE Ticket #9958
		
 * Styles for the left navigation bar
 * This version is for PUBLIC web sites
 * This is a special adaptation for the Admissions site!
 * It includes styles for the search box that is tacked onto the bottom of the form.
 
 **************************************************************************/


.navBar{
        float: left;
        width: 177px;
        margin: 0 10px 0 0;
        padding: 0;
        background-color: #fed649; /*dark yellow - gold*/
        border-right: 0px solid #fed649;
        border-bottom: 0px solid #fed649;
        border: 1px solid #000080;
        overflow: hidden;
}

.navBar a {
width: 100%;  /* causes IE to make the links full width, but for some reason
misaligns them in other browsers */
}

html>body .navBar a {   /* IE ignores this selector */
width: auto;                    /* corrects alignment in non-IE browsers */
}


/*********** .navBar link styles ***********/

.navBar ul a:link, .navBar ul a:visited {
        display: block;
}

.navBar ul {
        list-style-type: none;
        list-style-image: none;
        margin: 0;
        padding: 0;
}

/* hack to fix IE/Win's broken rendering of block-level anchors in lists */
.navBar li {
        border-bottom: 1px solid #fed649;
}

/* fix for browsers that don't need the hack */
html>body .navBar li {
        border-bottom: none;
}

.navBar ul {
        margin: 0;
        padding: 0;
        border-bottom: 0px solid #fed649; /*dark yellow - gold*/
        word-spacing: normal;
        list-style-position: outside;
        display:block;
}

.navBar li {
    margin: 0;
    padding: 0;
}

.navBar a:link, .navBar a:visited {
        display: block;
        padding: 3px 3px 3px 14px;
        border-top: 1px solid #EFD20A;  /* slight shading as divider */
        border-bottom: 1px solid #fed649;
        font: bold 12px Arial, Helvetica, sans-serif;
        color: #000066;
        text-decoration: none;
        text-align: left;
/*      text-indent: 6px; allows room for the arrow image when "on" */
}

.navBar a:hover{
        color: #000066;
        text-decoration: none;
        background-color: #fee99f; /*light yellow*/
}


/************** #On Section Link **************/

.navBar a:hover, .navBar a.CurrentPage, .navBar a.buttonOn {
        background-color: #fee99f;
        background-image: url(../images/shape.gif);  /*arrow*/
        background-repeat: no-repeat;
   background-position: -3px; /* The .gif has some empty space around the actual arrow. */

/* border on current selection and hovers */
    border-top: 1px solid #9F7C1D;
    border-bottom: 1px solid #9F7C1D;
}

/*
        Sub-menu selections.
*/

.navBar ul ul a:link, .navBar ul ul a:visited, .navBar ul ul a:hover {
    padding-left: 24px;
    padding-right: 3px;
    text-indent: 0;
}

.navBar ul ul ul a:link, .navBar ul ul ul a:visited, .navBar ul ul ul a:hover {
        padding-left: 35px;
        padding-right: 3px;
    text-indent: 0;
}

/* *****************************************************
    Hacks for IE6 to keep levels 2 and 3 from pushing the menu border to the left
    and allow text wrap for long selections.
    Widths are calculated as width of .navBar less left padding.
*/
* html .navBar {
    overflow: hidden;
}

/** html .navBar ul a, * html .navBar ul a:hover {

        width: 163px;
*/
/*
In one case, using an old tabular layout (admissions), the 163px width
caused the linked area to end inside the menu area, leaving a gap on the
left.  Removing this or replacing it with width:100% corrected the problem.
cb - 2/23/09
}
*/

* html .navBar ul ul a, * html .navBar ul ul a:hover {
    width: 153px;
}

* html .navBar ul ul ul a, * html .navBar ul ul ul a:hover {
    width: 142px;
}

/* End IE6 hacks */


/* divider bar on top of a list item */
.navBar a.topbar {
        border-top: 1px solid #000080;
        padding-top: 5px;
        margin-top: 2px;
}
/************** current page selection **************/

/***********  SEARCH BOX STYLES *********************/
/* prompt matches a menu level 1 link */
/*
#searchprompt {
        border-top: 1px solid #006;
        font: bold 12px Arial, Helvetica, sans-serif;
        color: #006;
        padding: 5px 3px 3px 14px;
}

#searchbox {
        text-align: center;
        margin: 0.2em 0 0.5em 0;
}

#srch_txt {
        padding: 0;
        height: 16px;
        display: inline;
        vertical-align:top;
}

#submit_srch {
        height: 18px;
        margin-left: 0.6em;
        display: inline;
        vertical-align:top;
}
*/

