/* CSS Document */

body{
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
}

.utility-bar{
	background-image: -webkit-linear-gradient(bottom, #E6E6E6 45%, #EFEFEF 51%, #F5F5F5 52%);
	height:23px;
		
}

.branding-bar{
	background-color:#f0f0f1;
	height:auto;	
}

.branding{
	height:28px;
	padding:34px 0 26px;	
	width:940px;
	margin: 0 auto;
}

.branding .logo{
	float:left;	
}

.branding .start-assisting{
	float:right;
}

.logo-copy{
	float:left;
	padding-left:10px;
	padding-top:10px;
}

.suite-name{
	font-size:21px;
	font-weight:bold;
}

.tagline{
	font-size:11px;
	color:#484848;
	font-style:italic;
}

.tagline span{
	font-style: normal;
	font-weight:bold;
}

.nav-shell{
	width:100%;
	background:#f0f0f1;	
	overflow:auto;
}

.nav{
	width:940px;
	margin:0 auto;
	background-color:#969696;
	height: 46px;
	overflow: auto;
	border:1px solid #898989;
	position:relative;
}

.nav ul{
	margin: auto;
	padding:0;
	background:#969696;
	width:auto;
	padding:0 0 0;
	list-style-type: none;
	overflow:auto;
	float:left;
	position:absolute;
	top:0;
	left:46px;
	z-index:10;
	-webkit-transition: all .5s ease;
}

.test-button.admin-togle{
	padding:15px 15px 14px;
	position:absolute;
	top:0;
	left:0;
	z-index:20;
	background:#969696;
}

ul.right-nav{
	right: 0;
	width: 190px;
	z-index: 40;
	margin: 0;
	left: 750px;
}

ul.right-nav li.test-button{
	padding:4px 13px;	
	margin-top:14px;
}

ul.right-nav li.test-button:first-child{
	box-shadow: none;
}
ul.right-nav li.test-button:last-child{
	border: none;
}

.nav ul.admin-nav,
.admin .nav ul.app-nav{
	-webkit-transition-delay:0;
	left:-940px;	
}

.admin .nav ul.admin-nav, 
.nav ul.app-nav{
	left:46px;
	-webkit-transition-delay:.2s;
}

.admin .admin-togle{
	background-color:#000;
	box-shadow: none;
	
}

.test-button, .search-button{
	-webkit-transition:all 0.3s ease;	
	box-shadow: inset 1px 0 0 0 #a3a3a3;
	padding:18px 20px 14px;
	text-align:center;
	color:#cccccc;
	font-weight:bold;
	font-size:12px;
	float: left;
	list-style:none;
	border-right:#7e7e7e solid 1px;
	text-shadow:#000 0 1px 0;
}	

.search-button{
	padding:4px 20px;	
}

.search-button input{
	width:200px;	
}

.test-button:hover{
	background:#7f7f7f;
	cursor:pointer;	
	color:#FFF;
	box-shadow:none;
}

.test-button.selected, .test-button.selected:hover{
	background-image: -webkit-linear-gradient(left, #3d3d3e 2%, #464646 50%, #3d3d3e 98%);
	border-left:none !important;
	color:#FFF;
	box-shadow:none;
}


/*--- DROPDOWN ---*/

.test-button .dropdown{
	position:absolute;
	left:-9999px;
}

.nav ul li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
}
.nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:#6b0c36;
	text-decoration:underline;
}
.nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}
.nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#333;
}