﻿#tabs{
	width: 100%;
	height: 500px;
	margin: 20px auto;
    box-shadow:5px 5px 20px #333333;
}
#tabs>ul{
	width: 100%;
	height: 50px;
    background-color:lightgray;
}
#tabs>ul>li{
	list-style: none;
	float: left;
	width: 100px;
	height: 50px;
	background-color: lightgray;
	line-height: 50px;
	color: white;
    text-align: center;
}
#tabs>div{
	width: 50%;
	height: 450px;
	position: absolute;
	display: none;
}
#tabs li.showed{
	background-color: white;
    color:black;
	line-height: 50px;
}
#tabs div.showed{
	display: block;
}

.msgTitle{text-align:center;font-size:30px;margin:20px;text-decoration:underline;}
.msgTable{width:70%;margin:auto;background-color:rgba(156, 39, 176, 0.18);}
.msgTable input,.msgTable textarea{font-size:18px;}
.msgTable button{font-size:18px;padding:5px 30px;margin-bottom:10px;}

