/* CSS reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
    margin:0;
    padding:0;
}
input,textarea, select{
    color: #7f7f7f;
    font-size: 14px;
    font-family: 'Ubuntu', serif;
	padding:3px;
	border:none;
	background: #fff;
	width:100%;
}
input[type=checkbox]{
	width:20px;
	height:20px;
}
input[type=radio]{
	width:15px;
	height:15px;
}
input[type=submit]{
	width:50%;
	margin:20px 0;
	padding:10px;
	cursor:pointer;
	color: #f7f7f7;
	background: #3CB371;
}
input[type=submit]:hover{
	background: #5ED593;
}
input[type=button]{
	width:50%;
	padding:10px;
	color: #f7f7f7;
	background: #7f7f7f;
	cursor:pointer;
}
input[type=button]:hover{
	color: #f7f7f7;
	background: #afafaf;
}
#regist_form input{
	width:100%;
}
.pad {
	padding-top:15px;
}
html, body {
	height:100%;
    margin:0;
    padding:0;
}
body {
	width: 100%;
	background: white;
    color: #7f7f7f;
    font-size: 14px;
    font-family: 'Ubuntu', serif;
	background: -webkit-linear-gradient(#eeeeee, #cecece);
    background: -o-linear-gradient(#eeeeee, #cecece);
    background: -moz-linear-gradient(#eeeeee, #cecece);
    background: linear-gradient(#eeeeee, #cecece);
	background-attachment: fixed;
}
h1,h2,h3,h4,h5,h6{
	text-align:center;
} 
h1 {
	padding: 2vh 0 4vh 0;
	font-size: 20px;
}
h2 {
	padding: 2vh 0;
	font-size: 18px;
}
h3 {
	padding: 0.5vh 0 1vh 0;
	font-size: 16px;
}
table{
	width:760px;
	margin:10px auto;
	border-spacing:0;
}
.half{
	width:450px;
}
th{
	background-color:#7e7e7e;
	color:#fff;
	padding:10px;
}
.list tr:nth-child(even){
	background-color:#ccc;
}
td{
	padding:10px;
	/*white-space: nowrap;*/
}
/*
td:first-child{
	width:125px;
	text-align:center;
	padding-right:3px;
}
td:nth-child(3),td:nth-child(5){
	padding-right:3px;
}
*/
a {
    text-decoration: none;
    color: #7f7f7f;
    opacity: 0.6;
}
a:hover{
    text-decoration: none;
    opacity: 1;
}
#err{
	background-color:#ff6666;
	padding:2vh;
	font-weight:bold;
	color:#ffffff;
	text-align:center;
}
#msg{
	background-color:#6cd96c;
	padding:2vh;
	font-weight:bold;
	color:#ffffff;
	text-align:center;
}
.text-center{
	text-align:center!important;
}
#logo{
	text-align:center;
	padding:10px;
}
.full{
	width:609px;
}
.zip{
	width:92px;
}
.setstreet{
	width:213px;
}
.num{
	width:64px;
}
.quarter{
	width:221px;
}
.quarterlabel{
	width:123px;
	text-align:right;
}
.number{
	width:35px!important;
}
.date{
	width:145px;
}
.olabel{
	width:158px;
	text-align:right;
}
#logindiv{
	width:25%;
	margin:0 auto;
	text-align:center;
}
#login input{
	width:150px;
	margin:10px;
}
.row_even{
	background-color:#ccc;
}
.row_odd{
	background-color:#ddd;
}

/* Tooltip container */
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
	background-color: #ffffff;
    color: #7f7f7f;
    border-radius: 50%;
    width: 15px;
    height: 15px;
}

/* Tooltip text */
.tooltip .tooltiptext {
	visibility: hidden;
	width: auto;
	background-color: #555;
	color: #fff;
	text-align: center;
	padding: 5px;
	border-radius: 6px;

	/* Position the tooltip text */
	position: absolute;
	z-index: 1;
	bottom: 125%;
	left: 50%;
	margin-left: -60px;

	/* Fade in tooltip */
	opacity: 0;
	transition: opacity 0.3s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}