﻿@charset "UTF-8";

/** 
 * Default CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		Default
 * @version		0.1
 * @type		transitional
 * @browsers	Windows: IE5+, 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 url('helper.css');


/*-------------------------------------------------/
 * @section		Base Drop-Down Styling
 * @structure	ul (unordered list)
 *				ul li (list item)
 *				ul li a (links)
 *				/*\.class|(li|a):hover/
 * @level sep	ul
 */


ul.dropdown {
 font-weight: bold;
}
/* Controls links with sub directories */
	ul.dropdown li {
	 padding: 7px 10px;
	 border-style: solid;
	 border-width: 2px 2px 2px 2px;
	 border-color: #ccc;
	 background-color: #000;
	 color: #fff;
	 font-weight: bold;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {font-weight: bold; background-color: #eee; color: #111; text-decoration: none;font-family:'Comic Sans MS', Arial, sans-serif;}
	ul.dropdown a:hover {font-weight: bold; background-color: #eee; color: #111; text-decoration: none;}

/* Controls all links */
	ul.dropdown :link,
	ul.dropdown a:visited	{font-family:'Comic Sans MS', Arial, sans-serif; font-weight: bold; color: #fff; text-decoration: none;}
	ul.dropdown a:hover		{font-family:'Comic Sans MS', Arial, sans-serif; font-weight: bold; color: #111; font-weight: bold; background-color: #eee;}
	ul.dropdown a:active	{font-family:'Comic Sans MS', Arial, sans-serif; font-weight: bold; color: #fff; font-weight: bold;  text-decoration: none;}


/*
	ul.dropdown li.laf :link {color: #fff; font-weight: bold; }
	ul.dropdown li.laf :visited	{color: red; text-decoration: none; }
	#hax  a:hover		{color: blue; font-weight: bold; }
	ul.dropdown li.laf :active	{color: #fff; font-weight: bold; }
*/
	/* -- level mark -- */

	ul.dropdown ul {
	 width: 150px;
	 margin-top: 1px;
	}

		ul.dropdown ul li {
		 font-weight: bold;
		 color: green;
		}



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {
 padding-right: 20px;
 background-image: url('images/nav-arrow-down.png');
 background-position: 100% 50%;
 background-repeat: no-repeat;
}


/* -- Components override -- */

ul.dropdown-horizontal ul *.dir {
 padding-right: 15px;
 background-image: url('images/nav-arrow-right.png');
 background-position: 100% 50%;
 background-repeat: no-repeat;
}

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

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

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