/* CSS Document */

/*** Minitab CSS ***/

/**
 * Class for the DIV that has all the minitabs 
 */
div.minitabs {
    padding: 0 0 0 0; 
    margin:  1em 0 1em 0 ;
	

}

/** 
 * Class for a DIV that has one minitab.
 * This is required to keep the minitabs to a uniform width
 */
div.minitab {
	width:11.2em;
    float: left;
	display:block;

/* There is a .5em difference btw test and production server */
		
	height:2.5em;
	line-height: 2.5em;
	text-align:center;
	

}

/** 
 * Class for the DIV that will display the content after clicking on a minitab.
 */
div.minitabContent {
    height: auto; 
    margin: 0; 
    padding: 0; 
}

/**
 * Class for holding the hidden DIV content for a minitab
 */
div.minitabHidden {
    visibility: hidden;
    width: 0px;
    height: 0px;
    position: absolute;
    top: -9000px;
    left: -9000px;
}



/*** Minitab link classes ***/
a.minitab:link, a.minitab:visited {
    color: #000000;
	font-size: .8em; 
	padding: 0;
    text-decoration: none;
	font-weight: bold;
	
    border-style: solid;
    border-color: #ccc;
    border-width: .0625em 0 0 .0625em;
		
	display:block;
	height:2.5em;
	line-height: 2.5em;
}



a.minitab:hover, a.minitab:active {
    color: #7482B0;
	font-size: .8em; 
	padding: 0;
    text-decoration: none;
	font-weight: bold;
	
    border-style: solid;
    border-color: #ccc;
    border-width: .0625em 0 0 .0625em;
		
	display:block;
	height:2.5em;
	line-height: 2.5em;
	
}

a.minitabActive:link, a.minitabActive:visited, a.minitabActive:active {
    color: #000000;
	font-size: .8em; 
	padding: 0;
    text-decoration: none;
	font-weight: bold;
	
    border-style: solid;
    border-color: #ccc;
    border-width: .0625em 0 0 .0625em;
		
	display:block;
	height:2.5em;
	line-height: 2.5em;
	
	background:#e1e1e1;

}

a.minitabActive:hover{
    color: #7482B0;
	font-size: .8em; 
	padding: 0;
    text-decoration: none;
	font-weight: bold;
	
    border-style: solid;
    border-color: #ccc;
    border-width: .0625em 0 0 .0625em;
		
	display:block;
	height:2.5em;
	line-height: 2.5em;
	
	background:#e1e1e1;

}
