@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 "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;
  /*background: transparent url(http://www.wepapers.com/images/Mypapers_new.gif) no-repeat scroll 0 0;*/
}

	ul.dropdown li {

	}

	ul.dropdown li.hover,
	ul.dropdown li:hover {
    color: #0263CC;
	text-decoration:none;
	}

	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: 150px;
background-color:#F9F9F9;
border-bottom:1px solid #CACACA;
border-right:1px solid #CACACA;
border-left:1px solid #CACACA;
color:black;
font-size:12px;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
padding:0;
position:absolute;
	 
	}

		ul.dropdown ul li {
		 font-weight: normal;
		}



/*-------------------------------------------------/
 * @section		Support Class `dir`
 * @level sep	ul, .class
 */


ul.dropdown *.dir {

 /*padding:5px 20px 0 30px;*/
 width:100px;
 height:23px;
 color:#0263CC;
 font-size : 14px;
 font-weight : bold;
 float : left;

 text-align : left;
 vertical-align : middle;
 text-decoration : none;
}

/* -- 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%;
}

ul.dropdown li.mypaperssub {
display:block;
padding:7px;
border-top:1px solid #E6E6E6;
background:#FFFFFF url(../images/mypaperssubbg.gif) repeat-x scroll 0 0;
}

ul.dropdown li.mypaperssub:hover {
border-top:1px solid #E6E6E6;
}

ul.dropdown li.mypaperssub a {
font-weight:bold;
color:#565656;
font-size:12px;
text-decoration:none;
}

ul.dropdown li.mypaperssub a:hover {
font-weight:bold;
color:#000000;
display:block;
}

