@import url(http://fonts.googleapis.com/css?family=Roboto+Slab);
* {
    /* With these codes padding and border does not increase it's width and gives intuitive style.*/

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	margin:0;
	padding:0;
	font-family: Arial, serif;
}
div#envelope{
	width: 55%;
	margin: 10px 30% 10px 25%;
	padding:10px 0;
	border: 2px solid gray;
	border-radius:10px;
}
form{
	width:70%;
	margin:4% 15%;
}
header{
	background-color: #ffffff;
	text-align: left;
	padding-top: 8px;
	padding-bottom: 8px;
	margin-top: -11px;
	margin-bottom: -8px;
	color: aliceblue;
}

/* Makes responsive fields.Sets size and field alignment.*/
input[type=text]{
	margin-bottom: 20px;
	margin-top: 10px;
	width:100%;
	padding: 15px;
	border-radius:5px;
	border:1px solid #990000;
	font-size:18px;
}
input[type=password]{
	margin-bottom: 20px;
	margin-top: 10px;
	width:100%;
	padding: 15px;
	border-radius:5px;
	border:1px solid #990000;
}
input[type=submit]
{
	margin-bottom: 20px;
	width:100%;
	padding: 15px;
	border-radius:5px;
	border:1px solid #990000;
	background-color: #9d161b;
	color: aliceblue;
	font-size:15px;
	cursor:pointer;
}
#submit:hover
{
 background-color: #7e0206;
}
textarea{
	width:100%;
	padding: 15px;
	margin-top: 10px;
    border:1px solid #990000;
	border-radius:5px;
	margin-bottom: 20px;
	resize:none;
  }
input[type=text]:focus,textarea:focus {
	border-color: #4697e4;
}
  input[type="checkbox"],
  input[type="radio"] {
    border: 1px solid #ccc;
    transform: scale(2);
    margin:20px;
    padding:5px;
  }

.bg_menu {
        background-image : url(../../img/bg/bg_menu.gif);
        background-repeat:repeat-x;
        height:30px;
}
.rTable {
		    	display: table;
		    	width: 100%;
		}
		.rTableRow {
		    	display: table-row;
		}
		.rTableHeading {
		    	display: table-header-group;
		    	background-color: #ddd;
		}
		.rTableCell, .rTableHead {
		    	display: table-cell;
		    	padding: 3px 10px;
		    	border: 1px solid #999999;
		}
		.rTableHeading {
		    	display: table-header-group;
		    	background-color: #ddd;
		    	font-weight: bold;
		}
		.rTableExp {
		    	display: table-cell;
		    	padding: 3px 10px;
		    	border: 1px solid #999999;
		    	background-color: #9d161b;
		    	color: #fff;
		}
		.rTableFoot {
		    	display: table-footer-group;
		    	font-weight: bold;
		    	background-color: #ddd;
		}
		.rTableBody {
		    	display: table-row-group;
		}
.btntub {
    border: none;
    outline: none;
    padding: 10px 16px;
    background-color: #f1f1f1;
    cursor: pointer;
    font-size: 18px;
}

/* Style the active class, and buttons on mouse-over */
.active, .btntub:hover {
    background-color: #1d7d74;
    color: white;
}
