/**
 * @file
 * Tabs Styling
 *
 * Adds styles for the primary and secondary tabs.
 *
 * Compare this with default CSS found in the system module's stylesheet (a copy
 * of which is in drupal7-reference.css.)
 */


/*
 * Basic positioning styles shared by primary and secondary tabs.
 */

ul.primary,
ul.secondary {
	overflow: hidden;
	*zoom: 1;
	border-bottom: 1px solid #bbbbbb;
	list-style: none;
	margin: 0 0 1.5em 0;
	padding: 0 2px;
	/*white-space: nowrap;*/
	border-style: none;
	text-align: right;
	/*position: absolute;
	top: -65px;
	right: 0px;*/
}

ul.primary li,
ul.secondary li {
	float: left; /* LTR */
	margin: 0.5em 3px 0;
}

ul.primary a,
ul.secondary a {
	border: 1px none #e9e9e9;
	border-right: 0;
	border-bottom: 0;
	display: block;
	line-height: 1.5em;
	text-decoration: none;
}

/*
 * Primary tabs
 */

ul.primary li {
	
}

ul.primary li.active {
	
}

ul.primary a:link,
ul.primary a:visited {
	display: block;
	color: #FFFFFF;
	padding: 0px 10px;
	font-size: 1em;
	line-height: 20px;
	background-image: url(../images/cs-btn-menu@2x.png);
	background-size: 100% 300%;
	background-repeat: no-repeat;
	background-position: left top;
}

ul.primary a:hover,
ul.primary a:focus {
	color: #000000;
	background-position: left center;
}

ul.primary a.active {
	color: #ED1C24;
	background-position: left bottom;
}

/*
 * Secondary tabs
 */

ul.secondary {
	font-size: .9em;
	margin-top: -1.5em; /* Collapse bottom margin of ul.primary. */
	padding-bottom: .5em;
}

ul.secondary a:link,
ul.secondary a:visited {
	display: block;
	color: #000000;
	padding: 0px 10px;
	line-height: 20px;
	background-image: url(../images/cs-btn-2@2x.png);
	background-size: 100% 200%;
	background-repeat: no-repeat;
	background-position: left top;
}

ul.secondary a:hover,
ul.secondary a:focus {
	color: #FFFFFF;
	background-position: left bottom;
}

ul.secondary a.active,
ul.secondary a:active {
	color: #FFFFFF;
	background-position: left bottom;
}
