/* CSS Document */

table {
	width: 770px;
	border: solid 1px #666;
}

.thead {
	text-align: center;
}

td {
	border: solid thin #666;
}

#middle-column {
	font-size: 12px;
}

.add-btn {
	margin-bottom: 10px;
	padding: 10px;
	width: 100px;
	text-align: center;
	background-color: rgba(0,102,168,0.70);
	border-radius: 15px;
}

.add-btn a:link, .add-btn a:visited {
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

.add-btn a:hover {
	text-decoration: underline;
}

#box{
	margin: 150px auto;
	width: 300px;
	text-align: left;	
	border: 1px solid #ccc;
	-moz-box-shadow: 0 0 3px #aaa;
	-webkit-box-shadow: 0 0 3px #aaa;
	box-shadow: 0 0 3px #aaa;
}

#menu{
	overflow: hidden;
	background: -moz-linear-gradient(top, #999, #666);
	background: -webkit-gradient(linear, left top, left bottom, from(#999), to(#666), color-stop(1, #fff));
	background: linear-gradient(top, rgba(40,34,32,1), rgba(22,18,17,1));
}

#menu li{
	float: left;
	width: 99px;
	border-right: 1px solid #999;	
}

#menu li a{
	float: left;
	width: 99px;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	height: 16px;
	padding: 8px 0 8px 0;
	text-align: center;
	z-index: 10;
	position: relative;
}

#menu li a:hover{
	background: #fff;
	text-decoration: none;
}


#tabs {
	overflow: hidden;
	width: 100%;
	margin-top: 0px;
	margin-left: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	padding: 0;
	list-style: none;
}

#tabs li {
	float: left;
	margin: 0 .4em 0 0;
}

#tabs a {
	position: relative;
	background: #ddd;
	background-image: linear-gradient(to bottom, #fff, #ddd);
	padding: .7em 3.5em;
	float: left;
	text-decoration: none;
	color: #444;
	text-shadow: 0 1px 0 rgba(255,255,255,.8);
	border-radius: 5px 0 0 0;
	box-shadow: 0 2px 2px rgba(0,0,0,.4);
}

#tabs a:hover,
#tabs a:hover::after,
#tabs a:focus,
#tabs a:focus::after {
	background: #fff;
}

#tabs a:focus {
	outline: 0;
}

#tabs a::after {
	content:'';
	position:absolute;
	z-index: 1;
	top: 0;
	right: -.5em;
	bottom: 0;
	width: 1em;
	background: #ddd;
	background-image: linear-gradient(to bottom, #fff, #ddd);
	box-shadow: 2px 2px 2px rgba(0,0,0,.4);
	transform: skew(10deg);
	border-radius: 0 5px 0 0;
}

#tabs #current a,
#tabs #current a::after {
	background: #fff;
	z-index: 3;
}

#content {
    background: #FFF;
	color: #000;
    padding: 2em;
    height: 220px;
    position: relative;
    z-index: 2;
    border-radius: 0 5px 5px 5px;
    box-shadow: 0 -2px 3px -2px rgba(0, 0, 0, .5);
}

form div.form {
	clear: left;
	margin: 0px;
	padding: 0px;
	padding-top: 0.6em;
}

form div.form label {
	float: left;
	width: 17%;
}

