/* This CSS file contains the code for tabbed boxes in ciblant */

/* A tab is a generic item which is used for menus and for the wide boxes (c.f. below) */

.tab a {
	font-size: 12px;
	font-weight:bold;
	float:left;
	display:block;
	font-family: Arial, Helvetica, sans-serif;
	background: url("graphics/yellowtab_big.png") no-repeat top left;
	color: #333333;
	outline: none;
	border-bottom: none;
	padding: 8px 8px 6px 10px; 
	margin-right: 5px;
	text-decoration: none;
	text-align: center;
}

.tab li {
	float:left;
	list-style-type: none;
	margin: 0 2px 0 0;
	background:url("graphics/yellowtab_big.png") no-repeat top right;
}

.tab ul {
	margin: 0px;
	padding: 0px;
	list-style: none;	
	float:left;
	width: 100%;
	border-bottom: 1px solid #CCC;
	text-align:center;
}

/* These classes are the navigation specific classes */

#activenavtab {
	background: url("graphics/greentab_big.png") no-repeat top right;
	font-weight: bold;
}

#activenavtab a {
	background: url("graphics/greentab_big.png") no-repeat top left;
	font-weight: bold;
}

.navtab a {
	color:#000000;
	padding-left:10px;
	padding-right:10px;
	font-size: 14px;
	font-weight:normal;
	background: url("graphics/yellowtab_big.png") no-repeat top left;
}

.navtab li {
	background:url("graphics/yellowtab_big.png") no-repeat top right;
}

.navtab li:hover {
	font-weight: bold;
	text-decoration:none;
/*	margin-right: 2px;
	background:url("graphics/greentab_big.png") no-repeat top right; */
}

.navtab a:hover {
	font-weight: bold;
	text-decoration:none;
/*	background: url("graphics/greentab_big.png") no-repeat top left;*/
}

/* To make the current active tab */

#current {
	background: url("graphics/greentab_big.png") no-repeat top right;
	font-weight: bold;
}

#current a {
	background: url("graphics/greentab_big.png") no-repeat top left;
	font-weight: bold;
}

/* Alternative colors. The default color of a tab is yellow */

.bluetab li {
	background: url("graphics/bluetab_big.png") no-repeat top right;
}

.bluetab a {
	background: url("graphics/bluetab_big.png") no-repeat top left;
	color:#FFFFFF
}

.redtab li {
	background: url("graphics/redtab_big.png") no-repeat top right;
}

.redtab a {
	background: url("graphics/redtab_big.png") no-repeat top left;
	color:#FFFFFF;
}

.greentab li {
	background: url("graphics/greentab_big.png") no-repeat top right;
}

.greentab a {
	background: url("graphics/greentab_big.png") no-repeat top left;
}

/* Code for tower boxes, which are fixed width boxes with a 
   tab title that extends the entire width  */

.towerbox {
	width: 180px;
	font:normal 11px Verdana, Arial, Helvetica, sans-serif;
	background: url("graphics/yellowtab_big.png") no-repeat top right;
	float: left;
	margin: 10px 0px 10px 0px;
}

.towerbox h3 {
	margin: 0;
	width: 115px;
	padding: 6px 8px 4px 10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 120%;
	background:url("graphics/yellowtab_big.png") no-repeat top left;
	color: #333333;
}
  
.towerbox ul {
	margin: 0;
	padding: 10px 3px 14px 18px;
	text-indent: -0.75em;
	list-style-type: none;
	border: 1px solid #CCCCCC;
  	background-color: #FCF6E4;
}

.towerbox ul li {
	list-style-type: none;
	margin: 0 0 3px 0;
	padding: 0;
}

/* Default color for a towerbox is red. These are the alternative colors */

#redtowerbox {
	background: url("graphics/redtab_big.png") no-repeat top right;
}

#redtowerbox h3 {
	background: url("graphics/redtab_big.png") no-repeat top left;
	color:#FFFFFF
}

#bluetowerbox {
	background: url("graphics/bluetab_big.png") no-repeat top right;
}

#bluetowerbox h3 {
	background: url("graphics/bluetab_big.png") no-repeat top left;
	color:#FFFFFF
}

#purpletowerbox {
	background: url("graphics/purpletab_big.png") no-repeat top right;
}

#purpletowerbox h3 {
	background: url("graphics/purpletab_big.png") no-repeat top left;
	color:#FFFFFF
}

/* A wide box is an variable width box, where the title tab does not 
   extend for the entire width */

.widebox {
	float:left;
	padding: 6px 8px 4px 10px;
	border-left: 1px solid #FFFFFF;	
	border-right: 1px solid #FFFFFF;	
	border-bottom: 1px solid #FFFFFF;
	/*border-left: 1px solid #CCCCCC;	
	border-right: 1px solid #CCCCCC;	
	border-bottom: 1px solid #CCCCCC; */
	margin-bottom:15px;

}
