@charset "UTF-8";

/**
 * Default CSS Drop-Down Menu Theme
 *
 * @file		default.css
 * @name		Default
 * @version		0.1.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
 *
 */


/*-------------------------------------------------/
 * @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;
 background-color: #D7E3F6;
 width: 100%;
}

	ul.dropdown li {
	 padding: 7px 10px ;
	 border-style: solid;
	 border-width: 1px 1px 1px 0;
	 border-color: #fff #d9d9d9 #d9d9d9;
	 background-color: #D7E3F6; /*#f6f6f6;*/
	 color: #000;
	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
	 background-color: #b9d1f6;  /* eee */
	 color: #000;
	}

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


	/* -- level mark -- */

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

		ul.dropdown ul li {
		 font-weight: normal;
		}



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


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


/* page related changes for desktop */
select {
    font-size: 107%;
    padding: 3px 10px;
    margin: 1px 0;
}

input { 
    /* font-size: 107%; */
    padding: 3px 7px;
    margin: 1px 0;
}


input[type="checkbox"] {
    margin: 4px 4px 4px 5px;
    width: 15px;
    height: 15px;
}


input[type="submit"] {
    padding: 3px 10px;
    font-size: 107%;
}


