@charset "utf-8";
/* CSS Document */

<style>
body
{}

/* Main menu */

#menu
{
	width: 100%;
	margin: 0;
	padding: 8px 0 0 1px;
	list-style: none;  
	background: #06213F;
	background: -moz-linear-gradient(#06213F, #006); 
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #06213F),color-stop(1, #006));	
	background: -webkit-linear-gradient(#06213F, #006);	
	background: -o-linear-gradient(#06213F, #006);
	background: -ms-linear-gradient(#06213F, #006);
	background: linear-gradient(#06213F, #006);
	-moz-border-radius: 5px;
	border-radius: 10px;
	-moz-box-shadow: 0 2px 1px #06213F;
	-webkit-box-shadow: 0 2px 1px #06213F;
	box-shadow: 0 2px 1px #06213F;
	
}

#menu li
{
	float: left;
	padding: 0 0 10px 0;
	position: relative;
	line-height: 0;
}

#menu a 
{
	float: left;
	height: 25px;
	padding: 0 14px;
	color: #FFF;
	text-transform: uppercase;
	font: bold 12px/25px Arial, Helvetica;
	text-decoration: none;
	text-shadow: 0 1px 0 #000;
}

#menu li:hover > a
{
	color: #000;
	background: #FFF;
	background: -moz-linear-gradient(#FFF,  #FFF);	
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#FFF));
	background: -webkit-linear-gradient(#FFF,  #FFF);
	background: -o-linear-gradient(#FFF,  #FFF);
	background: -ms-linear-gradient(#FFF,  #FFF);
	background: linear-gradient(#FFF,  #FFF);
	-moz-border-radius: 2px;
	border-radius: 2px;


}

*html #menu li a:hover /* IE6 */
{
color: #000;
	background: #FFF;
	background: -moz-linear-gradient(#FFF,  #FFF);	
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#FFF));
	background: -webkit-linear-gradient(#FFF,  #FFF);
	background: -o-linear-gradient(#FFF,  #FFF);
	background: -ms-linear-gradient(#FFF,  #FFF);
	background: linear-gradient(#FFF,  #FFF);
	-moz-border-radius: 2px;
	border-radius: 2px;
}

#menu li:hover > ul
{
	display: block;
	-moz-border-radius: 2px;
	border-radius: 2px;

}

/* Sub-menu */

#menu ul
{
    list-style: none;
    margin: 0;
    padding: 0;    
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    z-index: 99999;    
    background: #06213F;
    background: -moz-linear-gradient(#06213F, #006);
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0, #06213F),color-stop(1, #006));
    background: -webkit-linear-gradient(#06213F, #006);    
    background: -o-linear-gradient(#06213F, #006);	
    background: -ms-linear-gradient(#06213F, #006);	
    background: linear-gradient(#06213F, #006);
    -moz-box-shadow: 0 0 2px rgba(255,255,255,.5);
    -webkit-box-shadow: 0 0 2px rgba(255,255,255,.5);
    box-shadow: 0 0 2px rgba(255,255,255,.5);	
    -moz-border-radius: 2px;
    border-radius: 2px;
}

#menu ul ul
{
  top: 0;
  left: 150px;
}

#menu ul li
{
    float: none;
    margin: 0;
    padding: 0;
    display: block;  
    -moz-box-shadow: 0 1px 0 #06213F, 0 2px 0 #777777;
    -webkit-box-shadow: 0 1px 0 #06213F, 0 2px 0 #777777;
    box-shadow: 0 1px 0 #06213F, 0 2px 0 #777777;
		-moz-border-radius: 2px;
	border-radius: 2px;

}

#menu ul li:last-child
{   
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;    
}

#menu ul a
{    
    padding: 10px;
	height: 10px;
	width: 130px;
	height: auto;
    line-height: 1;
    display: block;
    white-space: nowrap;
    float: none;
	text-transform: none;
}

*html #menu ul a /* IE6 */
{    
	height: 10px;
}

*:first-child+html #menu ul a /* IE7 */
{    
	height: 10px;
}

#menu ul a:hover
{
    background: #FFF;
	background: -moz-linear-gradient(#FFF,  #FFF);	
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#FFF));
	background: -webkit-linear-gradient(#FFF,  #FFF);
	background: -o-linear-gradient(#FFF,  #FFF);
	background: -ms-linear-gradient(#FFF,  #FFF);
	background: linear-gradient(#FFF,  #FFF);
		-moz-border-radius: 2px;
	border-radius: 2px;

}

#menu ul li:first-child > a
{
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
}

#menu ul li:first-child > a:after
{
    content: '';
    position: absolute;
    left: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 8px solid #FFF;
}

#menu ul ul li:first-child a:after
{
    left: -8px;
    top: 12px;
    width: 0;
    height: 0;
    border-left: 0;	
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-right: 8px solid #06213F;
}

#menu ul li:first-child a:hover:after
{
    border-bottom-color: #FFF ; 
}

#menu ul ul li:first-child a:hover:after
{
    border-right-color: #FFF; 
    border-bottom-color: transparent; 	
}


#menu ul li:last-child > a
{
    -moz-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
}

/* Clear floated elements */
#menu:after 
{
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

* html #menu             { zoom: 1; } /* IE6 */
*:first-child+html #menu { zoom: 1; } /* IE7 */

#mstones {
  /*font-family: Arial, Helvetica, sans-serif;*/
  border-collapse: collapse;
  width: 100%;
}

#mstones td, #mstones th {
  border: 1px solid #ddd;
  padding: 8px;
}

#mstones tr:nth-child(even){background-color: #f2f2f2;}

#mstones tr:hover {background-color: #ddd;}

#mstones th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  color: darkred;
}
#qparams {
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	border-collapse: collapse;
  	width: 100%;
	font-size:1.3em;
}

#qparams td {
  border: 1px solid #ddd;
  padding: 8px;
  background-color:#E2FECF;
}

#qparams th {
  background-color:#08752d;
  color:#fff;
  text-align:center;
  vertical-align:central;
  padding: 8px;
}

#qparams .qpp{
	color:#009;
  	
}

#qparams ul li{
	line-height:1.6;
  	
}

#qparams .labh,labtd{
	background-color:#c5f3ad;
	text-align:center;	
	font-weight:bold;
}

#qparams .labtd{
	font-weight:bold;
}


/* Style the tab */
.tab {
  overflow: hidden;
  
  background-color: #08752d;
  border-radius:10px 10px 0 0;
  
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  color:white;
  
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
  
}

/* Create an active/current tablink class */
.tab button.active {
  background-color:#E2FECF;
  color:#000;
  font-weight:bold;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  background-color:#E2FECF;
}



</style>

