body {
   font-family: league-gothic;
    background: url(../img/bubblesr.png);
    background-size: cover;
    
}

p {
	text-align: center;	
}

#wrapper {
    width: 1024px;
	margin: 0 auto;
}

h2 {
	font-family: Helvetica, Arial, sans-serif;	
	font-size: 24px;
	color: #fff;
	text-align: center;
	margin: 20px;
}

#login {
    margin: 0 auto;
    width: 380px;
    ;
    border-radius: 10px;
    border: 2px solid #ccc;
    background-color: #fff;
}

#logo {
    height: 120px;
    width: 320px;
    margin: 100px auto 20px;
    background: url(../img/tapoutopt.png);
}



form {
	text-align: center;
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}



input {
    font-size: 20px;
    -moz-border-radius:15px; /* Firefox */
    -webkit-border-radius: 15px; /* Safari, Chrome */
    border-radius: 15px; /* CSS3 */
    border: 1px solid #999;
    text-align: center;
	margin: 20px;
}

input[type=text] {
	margin: 5px;
	width: 90%;
}

input[type=password] {
	margin: 5px 5px 30px 5px;
	width: 90%;
}

input[type=button] {
    display: inline;
	margin: 5px;
	
}


.greenb {
    background-color: #a4d29e; 
    color: #fff;
}

.redb {
    background-color: #bf6d75;
    color: #fff;
}

.optionbox {
    width: 200px;
    height: 200px;
    background-color: #fff;
	display: inline-block;
	margin: 15px;
    -moz-border-radius:15px; /* Firefox */
    -webkit-border-radius: 15px; /* Safari, Chrome */
    border-radius: 15px; /* CSS3 */
    border: 2px solid #999;
    text-align: center;
	-webkit-transition: border-color 1s;
	transition: border-color 1s;
	position: relative;
}

.optionbox span {
	position:absolute; 
  	width:100%;
  	height:100%;
  	top:0;
  	left: 0;

  /* edit: added z-index */
  z-index: 1;
  
    /* edit: fixes overlap error in IE7/8, 
     make sure you have an empty gif */
  background-image: url('empty.gif');
}

.optionbox:hover {
	border-color: red;
}

#viewbox {
	background-image:url(../img/cpanel/view.jpg);
}
#modbox {
	background-image:url(../img/cpanel/modify.jpg);
}
#expbox {
	background-image:url(../img/cpanel/export.jpg);
}
#logbox {
	background-image:url(../img/cpanel/logout.jpg);
}

#toolbox {
	width: 100%;
	margin: auto;
	text-align: center;
}

#fullpanel {
	width: 100%;
	background-color: #fff;
	-moz-border-radius:15px; /* Firefox */
    -webkit-border-radius: 15px; /* Safari, Chrome */
    border-radius: 15px; /* CSS3 */
    border: 2px solid #999;
	margin-bottom: 40px;
		
}

table {
	margin: 40px auto;
	width: 90%;	
	border: 1px solid #888;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 18px;
}

th {
	font-weight: bold;
	background-color: #D11A1A;
	color: #fff;
}

td {
	padding: 5px;	
}

tr {
	border: 1px solid #888;	
}

tr:nth-child(odd) {
    background-color: #FFA1A3;
}

#jqueryerrors {
	color: #DB191C;	
}