
body{
 background-color: #1aff1a; /*dark green background around feilds box*/
}
div.main{
	background-color:#00cc00; /*light green background around feilds*/
	padding: 20px;
}

.navbar-default{
	background-color:red;
	
}


/* Form Related Styling */

/* Emphasis div Styling */
div.one{
	background-color:#00cc00; /*colour of div one */
	border:solid 1px black;
	padding: 15px;
}
div.two{
	background-color: #ffffff; /* white*/
	border: solid 1px white; /*dark blue*/
	padding: 15px;
}

div.error{
	background-color: black;
	color:white;
	padding: 10px;
	border: solid 1px $error_text;
}
/* Results Table Styling */
 table.results{
	 text-align:left;
	 border:3px solid white;
	 border-collapse: collapse;
 }

tr.results{
	margin-top: 12px;
	margin-bottom: 12px;
	height: 24px;
}

th.results{
	
	height: 36px;
	vertical-align: middle;
	padding: 10px;
	border-bottom: 1px solid white;
	border-right: 1px solid white;
	color:#fff
}


tr.results:nth-child(even){
	background-color:;
}
tr.results:nth-child(odd){
	background-color: ;
}

td.results{
	padding:10px;
	border-bottom: 1px solid white;
	border-right: 1px solid white;
}
/* Link Styling */

/*Navigation Styling */
.navbar , .dropdown-menu{
	background-color:#ffffff;

}
/*normal links in navbar*/
.nav-default .navbar-nav> li > a:hover{
	color:#ffffff;
	font-weight: bold;
}
/* hover link in navbar*/
.navbar-default .navbar-header> H1{
	color:#000000;
	padding-left: 25px;
	bottom:150px;
}
	

/*  Modal Styling */
/* removes blue border on modal */
.modal-open .modal,.btn:focus, a:focus{
    outline:none!important
}

.modal .modal-content{
	width: 265px;
	margin: auto;
}

.btn-success {
	background-color: $main_div_back; /* medium blue */
	border-color: $head_foot_back; /* medium blue */
}

.btn-success:hover {
  color: #fff;
  background-color: $head_foot_back; 
  border-color: $main_div_back; /* medium blue */
}