@charset "UTF-8";
/* CSS Document */

/*ANIMATED DROPDOWN MENU*/
.ddsmoothmenu {
	background: #fff; /*background of menu bar (default state)*/
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 32px;
	width: 100%;
}

.ddsmoothmenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	z-index: 100;
}

/*Top level list items*/
.ddsmoothmenu ul li {
	display: inline;
	float: left;
	position: relative;
}

/*Top level menu link items style*/
.ddsmoothmenu ul li a {
	background: url(../images/nav_gradient.jpg) repeat-x;
	border-bottom: solid 1px #939598;
	border-top: solid 1px #939598;
	color: #000;
	display: block;
	text-align: center;
	text-decoration: none;
}

/*IE6 hack to get sub menu links to behave correctly*/
* html .ddsmoothmenu ul li a { 
	display: inline-block;
}

.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited {
	color: #000;
}

.ddsmoothmenu ul li a.selected { /*CSS class that's dynamically added to the currently active menu items' LI A element*/
	background: #ccd3ea; 
	color: #000;
}

.ddsmoothmenu ul li a.current { /*CSS class that's dynamically added to the currently active menu item*/
	background: #002596;
	color: #fff;
}

.ddsmoothmenu ul li a:hover {
	background: #002596; /*background of menu items during onmouseover (hover state) url(../images/nav_sm_gradient.jpg) repeat-x; */
	color: #fff /*#fff;*/
}
	
/*1st sub level menu*/
.ddsmoothmenu ul li ul {
	
	color: #fff;	
	display: none; /*collapse all sub menus to begin with*/
	left: 0;
	line-height: 32px;
	position: absolute;
	visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li {
	display: list-item;
	float: none;	
	line-height: 32px;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu 
.ddsmoothmenu ul li ul li ul {
	top: 0;
}*/

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a.ab { /*About Links*/
	background: #002596;
	border-top: 1px solid #fff;
	padding: 0 10px 0 10px;
	margin: 0;
	text-align: left;
	text-decoration: none;
	width: 49px; /*width of sub menus*/
}
.ddsmoothmenu ul li ul li a.ab:hover { /*Tech Leasing Links-hover*/
	color: #000;
	text-decoration: none;
}
.ddsmoothmenu ul li ul li a.tl { /*Tech Leasing Links*/
    background: #002596;
	border-top: 1px solid #fff;
	padding: 0 10px 0 10px;
	margin: 0;
	text-align: left;
	text-decoration: none;
	width: 170px; /*width of sub menus*/
}
.ddsmoothmenu ul li ul li a.tl:hover { /*Tech Leasing Links-hover*/
    color: #000;
	text-decoration: none;
}
.ddsmoothmenu ul li ul li a.ths { /*Tech Hardware Sales Links*/
    background: #002596;
	border-top: 1px solid #fff;
	margin: 0;
	padding: 0 10px 0 10px;
	text-align: left;
	text-decoration: none;
	width: 170px; /*width of sub menus*/
}
.ddsmoothmenu ul li ul li a.ths:hover { /*Tech Hardware Sales Links-hover*/
	color: #000;
	text-decoration: none;
}
.ddsmoothmenu ul li ul li a.bts { /*Business Tech Links*/
	background: #002596;
	border-top: 1px solid #fff;
	margin: 0;
	padding: 0 10px 0 10px;
	text-align: left;
	text-decoration: none;
	width: 138px; /*width of sub menus*/
}
.ddsmoothmenu ul li ul li a.bts:hover { /*Business Tech Links-hover*/
	color: #000;
	text-decoration: none;
}	
.ddsmoothmenu ul li ul li a.cs { /*Case Studies Links*/
	background: #002596;
	border-top: 1px solid #fff;
	margin: 0;
	padding: 0 10px 0 10px;
	text-align: left;
	text-decoration: none;
	width: 70px; /*width of sub menus*/
}
.ddsmoothmenu ul li ul li a.cs:hover { /*Case Studies Links-hover*/
	color: #000;
	text-decoration: none;
}	
.ddsmoothmenu ul li ul li a.log { /*Log In Links*/
	background: #002596;
	border-top: 1px solid #fff;
	margin: 0;
	padding: 0 10px 0 10px;
	text-align: left;
	text-decoration: none;
	width: 60px; /*width of sub menus*/
}
.ddsmoothmenu ul li ul li a.log:hover { /*Log In Links-hover*/
	color: #000;
	text-decoration: none;
}

.ddsmoothmenu ul li ul li a:link, .ddsmoothmenu ul li ul li a:visited {
	color: #fff;	
	line-height: 32px;
}

.ddsmoothmenu ul li ul li a:hover {
	background: #ccd3ea;
	color: #fff;
	line-height: 32px;	
}

/* Holly Hack for IE7 and below */
* html .ddsmoothmenu {
	height: 1%;
}
/*END ANIMATED DROPDOWN MENU*/

