
/*Most of the code has been learnt from CDU Learnline material and website mmtuts.com video tutorials*/

/*this gets rid of website defaults*/
*{
	margin: 0;
	padding: 0;	
}
/*this sets the body content appearance*/
.body {
	background-color: white;
	font-size: 100%;
	font-family: Arial;
	line-height: 1.5;
	text-align: left;
}
/*this sets the body content size*/
.body {
	
	margin: 0 auto;
	width: 75%;
	text-decoration: none;
	clear: both;
}



/*this ensures there is no underlining or decoration on the headers*/
.header {
	text-decoration: none;
}




/*this ensures there is no underlining or decoration on the links/anchors*/
a {
	text-decoration: none;
}

/*setting the fonts for the headers and if browser does not have arial then use the next stipulated*/
h2 {
	font-family: arial, "Times New Roman";
	font-size: 35px
	
	}

h3 {
	font-family: arial, "Times New Roman";
	font-size: 25px
	}
	
h4 {
	font-family: arial, "Times New Roman";
	font-size: 25px
	}	
	

/*this set the navigation pane*/
nav {
	margin: 30px;
	width: 90%;
	height: 40px;
	background-color: darkgrey;
	border-radius: 10px;
}

/*this sets the navigations listed items appearance*/
nav ul li {
	list-style: none;
	display: inline-block;
	float: left;
	
}
/*this sets the anchor details of the navigation tabs and content*/
nav ul li a {
	display: block;
	text-decoration: none;
	font-size: 20px;
	font-family: arial;
	color: black;
	line-height: 20px;
	padding: 10px 40px;
	border-radius: 10px;
}

/*this gives the way the Nav tabs must appear when you hover over them*/
nav ul li a:hover {
	color: white;
	background-color: red;	
}
/*this gives the appearance of the active Nav tab*/
.active {
	color: white;
	background-color: red;	
	border-radius: 10px;
}	


.content {
	width: 90%;
	float: left;	
}
/*this defines how the content appears in the browser*/


.topcontent {
	background-color: white;
	font-size: 20px;
	font-family: arial;
	line-height: 27px;
	text-decoration: none;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	padding: 0% 5%;
	
}

/*this this defines the img size*/
.img-Driver {
	width: 350px;
	height: 100px;
}
