#focus {
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 30px 22px 30px;
	background:#efefef;
	-webkit-transition: all linear 0.4s;
	-moz-transition: all linear 0.4s;
	-o-transition: all linear 0.4s;
	transition: all linear 0.4s;
	min-height: 205px;
}

#focus .tabs {
	/*width: 378px;*/
	height: 60px;
	position: absolute;
	z-index: 60;
	margin: -45px 0 0 -10px;
	padding: 10px 10px 0px 10px;
	background: rgba(255,255,255,1);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(240,240,240,1) 85%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(85%, rgba(240,240,240,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(240,240,240,1) 85%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(240,240,240,1) 85%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(240,240,240,1) 85%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(240,240,240,1) 85%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebebeb', GradientType=0 );
	border-radius: 0.25rem;
}

#focus .tabs .tab {
	display:inline-block;
	padding:17px 20px 17px 39px;
	text-align:center;
	line-height:1;
	font-size:16px;
	font-weight:700;
	font-family: styrene-regular,Arial;
	text-transform:uppercase;
	color:#666;
	background:transparent none;
	float:left;
	cursor:pointer;
	border-radius: 0.25rem;
}

#focus .tabs .tab .icon {
	position:absolute;
	width:15px;
	height:15px;
	/*background:transparent url('../img/tab-icons.png') no-repeat 0 0 ;*/
	margin: 1px 0 0 -22px;
}
#focus .tabs .tab .icon:before{
	content:'\f002';
	display: block;
	width: 20px;
	height: 20px;
	color:#D7153A;
	font: normal normal normal 13px / 1 FontAwesome;
}
#focus .tabs .tab.library .icon:before{
	font-size: 14px;
	content:'\f0c9';
}

	#focus .tab.finder .icon { background-position:-15px -15px; }
	#focus .tab.finder:hover .icon { background-position:-15px -30px; }
	#focus .tab.finder.active .icon { background-position:-15px 0px; }
	#focus .tab.finder.active:hover .icon { background-position:-15px 0px; }

	#focus .tab.library .icon { background-position:0px -15px; }
	#focus .tab.library:hover .icon { background-position:0px -30px; }
	#focus .tab.library.active .icon { background-position:0px 0px; }
	#focus .tab.library.active:hover .icon { background-position:0px 0px; }


#focus .tabs .tab:hover {
	color:#173c96;
}

#focus .tabs .tab.active {
	background:#002664;
	cursor:default;
	color:#fff;
}

#focus .tabs .tab.active:hover {
	background: #002664;
	background-image: linear-gradient(rgba(255,255,255,.15),rgba(255,255,255,.15));
	cursor:default;
}


#focus .focus_content {
	display:none;
	padding-top: 40px;
}
#focus .focus_content ul{
	margin: 0;
	padding: 0;
}
#focus .focus_content.active {
	display:block;
}
