/*
// location: ./css/menus/verticalMenu.php
// +-----------------------------------------------------------------------------+
// | Jimstrike CMS Commercial Source Code                                        |
// +-----------------------------------------------------------------------------+
// | Copyright (c) 2007 Jimstrike.com and Dhimiter Karalliu                      |
// |                                                                             |
// | http://www.jimstrike.com/                                                   |
// +-----------------------------------------------------------------------------+
// | !!! You may NOT copy, change or distribute verbatim copies 		         |
// |     of this source file !!!           									     |
// +-----------------------------------------------------------------------------+
// +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
*/

/* MENU VERTICAL -----------------------------------------------*/

/* DIV */
#verticalMenu {
width: 100%;
margin: 0 0 0 0;
background: transparent;
color: #fff;
}

/* BUGFIX DONNOT CHANGE */
* html #verticalMenu, * html #verticalMenu #verticalMenu { /*IE 6 only */
w\idth: 100%; /*Box model bug: 180px minus all left and right paddings for #blueblock */
}

/* DIV MAIN MENU */
#verticalMenu div {
border-top: 0px;
}

/* DIV SUB MENU */
#verticalMenu #verticalMenu div {
border-top: 0px;
}

/* ACTIVE MAIN MENU */
#verticalMenu div a {
display: block;
padding: 4px 5px 4px 5px;
color: #fff;
text-decoration: none;
font: bold 110% 'Trebuchet MS', 'Lucida Grande', Arial, sans-serif;
text-transform: none;
margin: 0 8px 1px 0;
border-bottom: 1px dotted #cb7aa1;
}

/* ACTIVE SUB MENU */
#verticalMenu #verticalMenu div a {
display: block;
padding: 4px 5px 4px 5px;
color: #fff;
text-decoration: none;
font: bold 110% 'Trebuchet MS', 'Lucida Grande', Arial, sans-serif;
text-transform: none;
margin: 0 5px 1px 0;
border-bottom: 1px dotted #cb7aa1;
}

/* CURRENT STATE MAIN MENU */
#verticalMenu div a.current {
display: block;
background-color: #902462;
color: #FFFF99;
text-transform: uppercase;
}

/* CURRENT STATE SUB MENU */
#verticalMenu #verticalMenu div a.current {
display: block;
border-right: 5px solid #fcc65e;
background: #fffff2 url("images/arrow_sub_menu_current.gif") left center no-repeat;
color: #cea745;
font: normal 88% 'Trebuchet MS', 'Lucida Grande', Arial, sans-serif;
text-transform: uppercase;
}

/* BUGFIX DONNOT CHANGE */
html>body #verticalMenu div a, html>body #verticalMenu #verticalMenu div a, 
html>body #verticalMenu div .current, html>body #verticalMenu #verticalMenu div .current { /*Non IE6 width*/
width: auto;
}

/* ON MOUSEOVER MAIN MENU */
#verticalMenu div a:hover {
background-color: #821a56;
color: #fff;
}

/* CURRENT ON MOUSEOVER MAIN MENU */
#verticalMenu div a.current:hover {
background-color: #902462;
color: #FFFF99;
}

/* ON MOUSEOVER SUB MENU */
#verticalMenu #verticalMenu div a:hover {
border-right: 5px solid #a8ce4e;
background: #fafff2 url("images/arrow_sub_menu_over.gif") left center no-repeat;
color: #89aa3d;
}

/* CURRENT ON MOUSEOVER SUB MENU */
#verticalMenu #verticalMenu div a.current:hover {
border-right: 5px solid #fcc65e;
background: #fffff2 url("images/arrow_sub_menu_current.gif") left center no-repeat;
color: #cea745;
}


/* END MENU VERTICAL*/
