/* ENTITIES */

body{

	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	min-width: 1000px;
	color: #333;

}

body.small_screen{

	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	min-width: 350px;
	color: #333;
	background-color: #d6d8db;
}
form{

	
}
input {

	font-size: 14pt;
	line-height: 25pt;
	resize: none;
	margin-right: 6px;
	margin-bottom: 6px;
	
	width: 300px;
	border-radius: 10px;
	
}

select {

	font-size: 14pt;	
	resize: none;	
	width: 300px;
	height: 35px;
	border-radius: 10px;
	margin-right: 6px;
	
}

/* DIVS */

.wrapper{

	margin: auto;
	width: 100%
	height: 200px;
	
}

.nav_holder{

	width: 100%;
	margin: auto;
	

}

/* TEXT */

.title{

	text-align: center;

}

.subtitle{

	text-align: center;

}

.section_title{

	text-align: center;
	font-size: 14pt;
	line-height: 16pt;
	
}

.note{

	text-align: center;
	font-size: 11pt;
	

}

.prompt_form{

	position: relative;
	font-size: 14pt;
	line-height: 16pt;
	color: black;
	font-weight: normal;


}

/* TABLE */


table {
      	background: #fff;
      	border-collapse: collapse;
	
      	color: #222;
      	font-family: 'PT Sans', sans-serif;
      	font-size: 13px;
      	width: 99%;
	table-layout: fixed;
	
	
}
th{

	border: 2px solid #333;
      	color: #222;
      	font-weight: 700;
      	line-height: 20px;
      	text-align: center;
	background-color: #d6d8db;
	
}
td {
      	border: 1px solid #333;
      	color: #444;
      	line-height: 22px;
	text-align: center;
	vertical-align: top;
	
	
      
}
tr{

	
}



/* BUTTONS */
.button_form_center{

	display: block;
	
	margin-left: auto;
	margin-right: auto;
  	cursor: pointer;
	margin-top: 20px;
	margin-bottom: 10px;
	width: 100px;
	font-size: 14px;
  	font-family: sans-serif;
  	font-weight: bold;
  	padding: 5px 10px;
	border: 1px solid #333;
  	border-radius: 10px;
}
.button_form_left{

	float: left;
	margin-left: 10px;
	margin-top: 20px;
	margin-bottom: 10px;
	cursor: pointer;
	width: 100px;
	font-size: 14px;
  	font-family: sans-serif;
  	font-weight: bold;
  	padding: 5px 10px;
	border: 1px solid #333;
  	border-radius: 10px;


}
.button_form_right{

	float: right;
	margin-right: 10px;
	margin-top: 20px;
	margin-bottom: 10px;
	cursor: pointer;
	width: 100px;
	font-size: 14px;
  	font-family: sans-serif;
  	font-weight: bold;
  	padding: 5px 10px;
	border: 1px solid #333;
  	border-radius: 10px;


}

.button_glossy {
  	
	width: 200px;
	
  	position: relative;
 	background-color: #cc3300;
  	background-image: linear-gradient( /* chrome */
    		hsla(0, 0%, 100%, 0.6), hsla(0, 0%, 100%, 0) 50%,
    		hsla(0, 0%, 0%, 0.3) 50%, hsla(0, 0%, 100%, 0.2)
  		);
  	font-size: 18px;
  	font-family: sans-serif;
  	font-weight: bold;
  	color: white;
  	padding: 10px 20px;
 
  	text-shadow:
    		0 0 15px hsla(0, 0%, 100%, 1), /* bloom */
    		0 2px 4px hsla(0, 0%, 0%, 0.7); /* drop shadow */
  	border: none;
  	border-radius: 10px;

  	display: block;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
  	cursor: pointer;
  	transition: transform 0.1s;
}


.button_glossy:hover {

  	transform: scale(1.05);
 
}

/* LINKS */

a{

	color: #cc3300;
	text-decoration: underline;
	cursor: pointer;

}

a:link, a:visited{
	
	color: #cc3300;

}

a:hover, a:active{

	color: #cc3300;

}

/* NAVIGATION MENU */


/* Add a black background color to the top navigation */
.topnav {
    	background-color: #333;
    	overflow: hidden;
   	
	z-index: 10;

	width: 605px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/* Style the links inside the navigation bar */
.topnav a {
	
    	float: left;
   	display: block;
    	color: #f2f2f2;
    	text-align: center;
    	padding: 14px 16px;
    	text-decoration: none;
    	font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    	background-color: #ddd;
    	color: black;
	cursor: pointer;
}

/* Add an active class to highlight the current page */
.active {
    	background-color: #cc3300;
    	color: white;
}

