/**
 * @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;
 	list-style: none;
 	margin: 1em 0 1.5em;
 	padding: 0;
 	color: whitesmoke;
  	font-family: 'Open Sans Condensed', 'Arial Narrow', sans-serif;
	font-size: 17px;
	text-transform: uppercase;
	line-height: 24px;
	text-decoration: none;
	font-weight: bold;
}

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

ul.primary a,
ul.secondary a {
	color: white;
}

/*
 * Primary tabs
 */

ul.primary li {
  
}

ul.primary li.active {
  border-bottom: 1px solid white;
  margin-bottom: -1px; /* Overlap the ul's border. */
}

ul.primary a:link,
ul.primary a:visited {
	 
  	color: #777;
}

ul.primary a:hover,
ul.primary a:focus {
	color: white;
}

ul.primary a.active {
  
}

/*
 * 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 {
	color: red;
}

ul.secondary a:hover,
ul.secondary a:focus {
  color: yellow;
}

ul.secondary a.active,
ul.secondary a:active {
  color: green;
}
