/* =========================== CSS RESET SECTION   ===================== */
/*
	this section will strip off css default values for different browsers
*/
/** is wildcard: it will select ALL elements in the page*/

/*
	USEFUL ADDONS
	* rainbow
	* web developer
	* firebug
*/

*{
	margin:0px;
	padding:0px;
}

/*comma just means AND apparently*/
html, body{
	width:100%;
	height:100%;
}

/*====General Section====*/

body{
	font-family:Arial, Helvetica, sans-serif;
	background-image:url(images/back_Colour_1920x1200_07.jpg);
	background-repeat:no-repeat;
	background-attachment:fixed;
	/*background-color:#b0c4de;*/
	font-size:14px;
}

/*
put a div in the middle of its container
a) set a width (what is this doing?)
b) set margin left and right to auto (what is this doing?)*/

#wrapper{
	/*border:1px solid #F00;*/
	width:771px;
	margin:20px auto;
}

/*use this class to stop both float left and right*/
.floatFix{
	clear:both;
}

/*====Header Section====*/
#nav ul{
	/*get rid of bullet points*/
	list-style-type:none;
}

#nav ul li a{
	display:block;
	background-color:#DD5904;
	box-shadow: 2px 2px 0px #000000;
	border-radius:10px;
	margin-top:4px;
	margin-bottom:6px;
	margin-left:4px;
	/*margin-right:3px;*/
	color:#fff;
	text-align:center;
	width:92px;
	height:30px;
	padding:10px 0;
	text-decoration:none;
	text-transform:capitalize;
	float:left;
}

/*PSEUDOCLASSES:
	they allow you to access elements in :hover / :active status
	
*/

#nav ul li a:hover{
	/*button color on hover*/
	background-color:#A40000;
	/*text-decoration:underline;*/
}

#nav ul li a:active{
	/*button colour and behavior on select*/
	background-color:#FAC136;
	margin-top:6px;
	margin-bottom:4px;
	box-shadow: 0px 0px 0px #000000;
}

/*====Main Section====*/

#main h1{
	text-align:center;
	color:#D76829;
	font-size:36px;
	text-transform:capitalize;
	padding-top:120px;
	padding-bottom:25px;
}

#main h2{
	text-align:left;
	color:#E45F04;
	font-size:16px;
	text-transform:capitalize;
	padding-top:20px;
	padding-bottom:25px;
}

#sounds{
	/*border:1px solid #F00;*/
	width:290px;
	margin:20px auto;
}

#sounds ul{
	/*get rid of bullet points*/
	list-style-type:none;
}

#sounds ul li a{
	display:block;
	background-color:#DD5904;
	box-shadow: 2px 2px 0px #000000;
	border-radius:10px;
	margin-top:4px;
	margin-bottom:6px;
	margin-left:4px;
	color:#fff;
	text-align:center;
	width:92px;
	height:30px;
	padding:10px 0;
	text-decoration:none;
	text-transform:capitalize;
	float:left;
}

#sounds ul li a:hover{
	/*button color on hover*/
	background-color:#A40000;
	/*text-decoration:underline;*/
}

#sounds ul li a:active{
	/*button colour and behavior on select*/
	background-color:#FAC136;
	margin-top:6px;
	margin-bottom:4px;
	box-shadow: 0px 0px 0px #000000;
	
}