@charset "UTF-8";

/** 
 * MTV.com CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		MTV
 * @version		0.1
 * @type		transitional
 * @browsers	Windows: IE6+, Opera7+, Firefox1+
 *				Mac OS: Safari2+, Firefox2+
 *
 * @link		http://www.lwis.net/
 * @copyright	2008 Live Web Institute. All Rights Reserved.
 *
 * Module Classes: *.dir {} *.on {} *.open {} li.hover {} li.first {} li.last {}
 * Expected directory tag - li
 *


@import "helper.css";
 */

/*------------------------------------------------------------------------------------------------------/
	@section	Style Framework  */


	/* First-level expected directory tag - li */

	ul.dropdown li 
	{
		line-height:11px;
	}

	ul.dropdown *.dir {
	}

		/* Non-first level */
		ul.dropdown ul *.dir {
		 padding-right: 15px;
		 background-image: url(../../../../moreitems.gif);
		 background-position: 100% 50%;
		 background-repeat: no-repeat;
		}

		ul.dropdown ul ul *.dir {
		 background-image: url(../../../../moreitems.gif);
		}


	/* Components override */

	ul.dropdown-vertical *.dir {
	 background-image: url(images/nav-arrow-right.png);
	}

	ul.dropdown-vertical-rtl *.dir {
	 padding-right: 15px;
	 background-image: url(images/nav-arrow-left.png);
	 background-position: 0 50%;
	}



/*------------------------------------------------------------------------------------------------------/
	@section	Base Drop-Down Styling  */



	/* ALL LEVELS (incl. first) */

	ul.dropdown {
		height:25px;
	}

	ul.dropdown a
	{
		display:block;
		width:100%;
		height:100%;
	}

	ul.dropdown li {
		height:25px;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover 
	{
		background-color:#958760;
	}
	ul.dropdown ul li.hover,
	ul.dropdown ul li:hover 
	{
		background-color:#958760;
	}
	ul.dropdown ul ul li.hover,
	ul.dropdown ul ul li:hover 
	{
		background-color:#958760;
	}

		/* Links */

		ul.dropdown a:link,
		ul.dropdown a:visited { color: #fff; text-decoration: none;}
		ul.dropdown a:hover {
		}

		ul.dropdown ul a.dir:hover { /* proposal */
		}

		ul.dropdown a:active {
		}


		/* NON-FIRST LEVEL */

		ul.dropdown ul {
		 left: 0px;
		 right: 0;
		 width: 320px;
		 margin-top: -1px;
		 border: 1px solid #644b30;
		 font: bold 11px/1em Tahoma, Geneva, Verdana, sans-serif;
		}

			ul.dropdown ul li {
			 background-color: #c5c39d;
			 font : bold 20px/1em Tahoma, Geneva, Verdana, sans-serif;
			 color:#fff;
			 height:20px;
			 padding:3px;
			}

		ul.dropdown ul ul {
		 top: -15;
		 right: auto;
		 left: 100%;
		 margin-top: 0;
		 font-weight: normal;
		}

			ul.dropdown ul ul li {
			 background-color: #c5c39d;
			 font : bold 20px/1em Tahoma, Geneva, Verdana, sans-serif;
			 color:#fff;
			 height:20px;
			 padding:3px;
			}

		ul.dropdown ul ul ul li {
		 background-color: #c5c39d;
		 font : bold 20px/1em Tahoma, Geneva, Verdana, sans-serif;
		 color:#fff;
		 height:20px;
		 padding:3px;
		}



/* Mixed */

ul.dropdown li a,
ul.dropdown *.dir {
}

ul.dropdown ul li a,
ul.dropdown ul *.dir { border-color: #4a4a4a #242424 #242424; border-left: none; }

ul.dropdown ul ul li a,
ul.dropdown ul ul *.dir { border-color: #595959 #333 #333; }

ul.dropdown ul ul ul li a,
ul.dropdown ul ul ul *.dir { border-color: #767676 #404040 #404040; }

