/* basic shadow */
div.box_with_header ,
div#message_floater
{
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=180, Color='#222')";
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=5, Direction=180, Color='#222');
	-moz-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 2px 10px #999;
}

/* button */
button {
	background-color: #6ab9e8;
	border-radius: 10px 0 10px 0;
	box-shadow: 0 2px 3px grey;
	height: 30px;
	color: white;
	border: 1px;
	-webkit-appearance: none;
	color: white;
	margin-top: 5px;

	transition: background-color 0.5s ;
	-webkit-transition: background-color 0.5s ;
}

button:hover {
	background-color: #84c4f0;

	transition: background-color 0.1s ;
	-webkit-transition: background-color 0.1s ;
}

button:active {
	position: relative;
	top: 3px;
	box-shadow: none;
}

div.box_with_header {
	display: block;
	border: none;
	height: auto;
	background-color: white;
}
div.box_with_header *:not(header) {
	margin: 5pt;
}

div.box_with_header > header {
	font-size: 12pt;
	color: white;
	font-size: 12pt;
	font-weight: bold;
	text-align: center;
	padding: 3pt;
	padding-left: 10pt;
	padding-top: 10pt;
	border-bottom: 1px solid #84c4f0;
}

/* blue gradient */
div.box_with_header > header {
	background-color: #3ca3e0;
	background-image: linear-gradient(         bottom , #56b1e8 0% , #028acf 100%);
	background-image: -o-linear-gradient(      bottom , #56b1e8 0% , #028acf 100%);
	background-image: -moz-linear-gradient(    bottom , #56b1e8 0% , #028acf 100%);
	background-image: -webkit-linear-gradient( bottom , #56b1e8 0% , #028acf 100%);
	background-image: -ms-linear-gradient(     bottom , #56b1e8 0% , #028acf 100%);
	background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, #56b1e8), color-stop(1, #028acf));
}

/* rounded top corners*/
div.box_with_header > header ,
div.box_with_header
{
	-webkit-border-radius: 18px 18px 0 0;
	-moz-border-radius: 18px 18px 0 0;
	border-radius: 18px 18px 0 0;
}


/* table */

table.basic, table.basic td,table.basic  th {
	color: #666;
	border-collapse: collapse;
}
table.basic td,table.basic  th {
	border: 1px solid silver;
	padding: 0 5pt;
}
table.basic th {
	background-color: #3ca3e0;
	color: #fff;
}
table.basic tr:nth-child(even) {
	background-color: rgb(255, 255, 255);
}
table.basic tr:nth-child(even) {
	background-color: rgb(234, 245, 254);
}
/* message floater */
div#message_floater{
	padding: 20px;
	background-color: white;
	z-index: 10000;
	text-align: center;
	display: none;
}
