/* Login Page */
.login_table, .login_table th, .login_table td {
    border: none;
}
.login_table {
	border: 2px dotted #888;
    margin: 0 auto; /* Set it centered */
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
}
.login_label {
    font-weight: bold;
    padding-right: 8px;
}
.login_input {
    width: 180px;
    padding: 4px;
    border: none;
    box-shadow: 5px 5px 5px #aaa;
    border-radius: 5px;
}
.login_button_cell {
    text-align: center;
}
.login_button {
    border: 2px dotted grey;
    box-shadow: 5px 5px 5px #aaa;
    text-shadow: 2px 5px 5px #aaa;	
    font-weight: bold;
    border-radius: 5px;
}
.login_button:hover {
    background: #ccc;
}
.login_button:active {
    box-shadow: 2px 2px 2px #aaa;
}
.login_h2 {
    text-align: center;
    text-shadow: 2px 5px 5px #aaa;	
}

table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px dotted grey;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 5px 5px 5px #aaa;
}
th, td {
	border: 1px dotted #888;
	padding: 4px 8px;
    vertical-align: top;
	}
