/* style.css */

a:link    { color:blue; text-decoration:none; }
a:visited { color:blue; text-decoration:none; }
a:hover   { color:red;  text-decoration:underline; }   

h1 {
	padding: 0.4em 0.5em;
	color: black;
	background: #f4f4f4;
	border-left: solid 10px #7db4e6;
	border-bottom: solid 5px #d7d7d7;
}

select {
	height: 30px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 5px;
        padding-left: 10px;
        padding-right: 10px;
}

input {
	height: 30px;
	font-size: 16px;
	font-weight: bold;
	padding-left: 10px;
	padding-right: 10px;
}

h3 {
        color: red;
        background: #f4f4f4;
}

table {
	height: 30px;
	font-size: 16px;
	border: 1px solid #d3d3d3;
	border-radius: 5px;
}

td, th {
	border: 1px solid #d3d3d3;
	border-radius: 5px;
}


