/*---------------------------------------------------------------------------------
Yahoo YUI 2 RESET
---------------------------------------------------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0; }
 
table {
	border-collapse: collapse;
	border-spacing: 0; }
 
fieldset,img { border: 0; }
 
address,caption,cite,code,dfn,em,strong,th,var {
	font-style: normal;
	font-weight: normal; }
 
ol,ul { list-style: none; }
 
caption,th { text-align: left; }
 
h1,h2,h3,h4,h5,h6 {
	font-size: 100%;
	font-weight: normal; }
 
q:before,q:after { content: ''; }
 
abbr,acronym { border: 0; }

/*---------------------------------------------------------------------------------
Rebuild - Edit of Yahoo Base
---------------------------------------------------------------------------------*/
h1,h2,h3 {
	/* top & bottom margin based on font size */
	margin:1em 0;
}
h1,h2,h3,h4,h5,h6,strong {
	/*bringing boldness back to headers and the strong element*/
	font-weight:bold; 
}
abbr,acronym {
	/*indicating to users that more info is available */
	border-bottom:1px dotted #000;
	cursor:help;
} 
em {
	/*bringing italics back to the em element*/
	font-style:italic;
}
blockquote,ul,ol,dl {
	/*giving blockquotes and lists room to breath*/
	margin:1em;
}
ol,ul,dl {
	/*bringing lists on to the page with breathing room */
	margin-left:2em;
}
ol li {
	/*giving OL's LIs generated numbers*/
	list-style: decimal outside;	
}
ul li {
	/*giving UL's LIs generated disc markers*/
	list-style: disc outside;
}
dl dd {
	/*giving UL's LIs generated numbers*/
	margin-left:1em;
}
th,td {
	/*borders and padding to make the table readable*/
	border:1px solid #000;
	padding:.5em;
}
th {
	/*distinguishing table headers from data cells*/
	font-weight:bold;
	text-align:center;
}
caption {
	/*coordinated marking to match cell's padding*/
	margin-bottom:.5em;
	/*centered so it doesn't blend in to other content*/
	text-align:center;
}
p,fieldset,table {
	/*so things don't run into each other*/
	margin-bottom:1em;
}

/*---------------------------------------------------------------------------------
Base Font Size
---------------------------------------------------------------------------------*/
html { font-size: 16px; /* Set default to 16px */ }
 
body {
	  font-size: 62.5%; /* 62.5% of 16px = 10px (1em) */
	  font-family: “Helvetica Neue”, Helvetica, Arial, sans-serif; }
 
/*---------------------------------------------------------------------------------
Define All Type Stlyes & Sizes
---------------------------------------------------------------------------------*/
h1 {	font-size: 2.8em; } /* 28px */
 
h2 {	font-size: 2.4em; } /* 24px */
 
h3 {	font-size: 2.0em; } /* 20px */
 
h4 { font-size: 1.8em; } /* 18px */
 
h5 { font-size: 1.6em; } /* 16px */
 
p, li, dl { font-size: 1.4em; }  /* 14px */


/*----------------
Define All Colours
------------------

White - #FFF
Black - #000
D.Grey - #666
Brown (Paper) - #bf9c5a
D.Blue - #006
Light Grey - #CCC
Off White (Main BG) - #FBFBFB
Medium Grey - #999
----------------*/


/*---------------------------------------------------------------------------------
Basic Layout
---------------------------------------------------------------------------------*/

body {
	background: #bf9c5a url(../images/brownpaper.jpg) top center;
	/*Image courtesy of http://www.blog.spoongraphics.co.uk/freebies/5-fantastically-high-res-brown-paper-textures*/
}

#container {
	margin: 0 auto;
	width: 900px;
}

#header {
	width: 900px;
	height: 110px;
	margin: 0;
	padding: 0;
}
	#header h1 {
		margin: 0;
	}
	
	#header h2 {
		margin: 0;
	}
	
#logo { 
	float: right;
	display: inline-block;
	width: 560px;
	height: 110px;
	position: relative;
}

#logo span { /*Image Replacement*/
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('../images/azure_logo.png') left no-repeat;
	-webkit-border-radius: 0px 0px 8px 0px;
	-moz-border-radius: 0px 0px 8px 0px;
	border-radius: 0px 0px 8px 0px;
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

#phone {	
	float: left;
	display: inline-block;
	width: 340px;
	height: 110px;
	position: relative;
}

#phone span { /*Image Replacement*/
	position: absolute;
	width: 100%;
	height: 100%;
	background: url('../images/phone.png') left no-repeat;
	-webkit-border-radius: 0px 0px 0px 8px;
	-moz-border-radius: 0px 0px 0px 8px;
	border-radius: 0px 0px 0px 8px;
	-webkit-box-shadow: -1px 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: -1px 1px 2px rgba(0,0,0,0.3);
	box-shadow: -1px 1px 2px rgba(0,0,0,0.3);
}

	
#nav {
	margin: 30px 0 10px 0;
	width: 570px;
	padding: 0 15px;
	font-size: 2.4em;
	font-family: Georgia, Times, “Times New Roman”, serif;
}
	#nav ul {
	
	}

	#nav li {
		display: inline;
		padding: 0 0.5em 0 0;
		color: #006;
		text-transform: lowercase;
		text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	}
	
		#nav li a {
			color: #FFF;
			text-decoration: none;
		}
		
		#nav li a:hover {
			color: #006;
			text-decoration: none;
		}

#main {
	float: left;
	width: 900px;
	background: #FFF;
	min-height: 400px;
	margin: 0 0 10px 0;
	padding: 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	-moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
	clear: both;
}

	#main .brackets {
		color: #999;
	}
	
	#main .details {
	
	}
	
	#main .box2 a {
		color: #666;
		padding:3px;
		text-decoration:none;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		border-radius:5px;
	}

	#main .box2 a:hover {
		color: #FFF;
		background: #666;
		text-decoration: none;
		background: -webkit-gradient(linear, left bottom, left top, color-stop(0.21, rgb(102,102,102)), color-stop(0.65, rgb(153,153,153)));
		background: -moz-linear-gradient(center bottom,	rgb(102,102,102) 21%, rgb(153,153,153) 65%);
	}


		#main a span {
			visibility:hidden;
		}
		
		#main a:hover span {
			visibility: visible;
		}

	#main #content {
	float: left;
	display: inline-block;
	margin: 0;
	padding: 30px;
	width: 540px; /*600 - 2 x 30 padding*/
	clear: both;
	}
	
		#main #content h3 {
			margin-bottom: 0.5em;
			padding-top: 0.5em;
		}
	
		#main #content p {
			width: 475px;
			line-height: 140%;
			color: #666;
		}
		
		#main #content ul {
			font-weight: bold;
			margin-left: 0;
			color: #666;
		}
			#main #content ul li {
				padding-bottom: 0.5em;
				list-style: none;
			}

		
		#main #content .box1 {
			float: left;
			display: inline-block;
			margin: auto;
			margin-top: 1.4em;
			padding: 2em 2em 0.8em 2em;
			width: 270px;
			background: #FFF;
			border: 1px solid #CCC;
			clear: both;
			-webkit-border-radius: 8px;
			-moz-border-radius: 8px;
			border-radius: 8px;
		}
		
		#main #content .box1  h3 {
			font-size: 2.0em;
			margin: 0 0 0.5em 0;
			padding: 0;
			color: #999;
		}
		
		#main #content .box2 {
			float: left;
			display: inline-block;
			margin: auto;
			margin-top: 1.4em;
			padding: 2em 2em 0.8em 2em;
			width: 400px;
			background: #FFF;
			border: 1px solid #CCC;
			clear: both;
			-webkit-border-radius: 8px;
			-moz-border-radius: 8px;
			border-radius: 8px;
		}
		
		#main #content .box2  h3 {
			font-size: 2.0em;
			margin: 0 0 0.5em 0;
			padding: 0;
			color: #999;
		}
		
		#main #content .box3 {
			float: left;
			display: inline-block;
			margin: auto;
			margin-top: 1.4em;
			padding: 2em 1em 0.8em 2em;
			width: 280px;
			background: #FFF;
			border: 1px solid #CCC;
			clear: both;
			-webkit-border-radius: 8px;
			-moz-border-radius: 8px;
			border-radius: 8px;
		}
		
		#main #content .box3  h3 {
			font-size: 2.0em;
			margin: 0 0 0.5em 0;
			padding: 0;
			color: #999;
		}
		
		#main #content .box3  p {
			width: auto;
		}
		
		#main #content .box3 ul {
			width: 250px;
			font-weight: bold;
			margin-left: 0;
			color: #666;
		}
		
		#main #content .box3 ul li {
			margin: 0.5em 0;
			padding: 0;
			list-style: none;
			}
		
		#main #content .box3 ul li  a {
			display: block;
			color: #FFF;
			width: 255px;
			background: #006;
			padding: 7px;
			text-decoration:none;
			-moz-border-radius:5px;
			-webkit-border-radius:5px;
			border-radius:5px;
			background: -webkit-gradient(linear, left bottom, left top, color-stop(0.21, rgb(0,0,102)), color-stop(0.65, rgb(11,1,120)));
			background: -moz-linear-gradient(center bottom,	rgb(0,0,102) 21%, rgb(11,1,120) 65%);
		}		
		
		#main #content .box3 ul li  a {
			display: block;
			color: #666;
			width: 255px;
			background: #FFF;
			padding: 6px 4px ;
			text-decoration:none;
			-moz-border-radius:5px;
			-webkit-border-radius:5px;
			border-radius:5px;
		}

		#main #content .box3 ul li a:hover {
			color: #FFF;
			background: #666;
			text-decoration: none;
			background: -webkit-gradient(linear, left bottom, left top, color-stop(0.21, rgb(102,102,102)), color-stop(0.65, rgb(153,153,153)));
			background: -moz-linear-gradient(center bottom,	rgb(102,102,102) 21%, rgb(153,153,153) 65%);
		}
		
	#main #content .cutout1 { /*Home page*/
		float: right;
		margin: -75px -95px -25px 0;
	}
	
	#main #content .cutout2 { /*Contact page*/
		float: right;
		margin: -285px -55px -20px 0;
	}
	
	#main #content .cutout3 { /*Newsletter page*/
		float: right;
		margin: -65px -100px -10px 0;
	}
	
	#main #content .cutout4 { /*Contact Complete page*/
		float: right;
		margin: 90px -55px -20px 0;
	}
	
	#main #content .cutout5 { /*Contact Error page*/
		float: right;
		margin: -305px -55px -20px 0;
	}
	
	#main #content .cutout6 { /*Newlsetter Complete page*/
		float: right;
		margin: 87px -100px -10px 0;
	}

	#main #content .cutout7 { /*Newlsetter Error page*/
		float: right;
		margin: -65px -100px -10px 0;
	}
	
	#main #content a img{
		border: none;
		background: none;
		margin: 0;
		padding: 0;
	}
	
		#main #content a:hover img {
		border: none;
		background: none;
		margin: 0;
		padding: 0;
	}
		
	#main #images {
		float: right;
		width: 300px;
		margin: 0 0 -50px 0;
		padding: 0;
	}
	
		#main #images img {
		float: right;
		margin: 0 0 0 0;
		padding: 0;
		}
		
		#main #images img.home1{
			display: inline-block;
			margin: -70px 0px -100px 0;
		}
		
		#main #images img.home2 {
			display: inline-block;
			margin: 20px -60px -220px 0;
		}
		
		
		#main #images img.contact1{
			display: inline-block;
			margin: -70px 0px -95px 0;
		}
		
		
		#main #images img.contact2 {
			display: inline-block;
			margin: 30px -55px -70px 0;
		}
		
		#main #images img.contact3 {
			display: inline-block;
			margin: 15px -50px 0 0;
		}

		
		#main #images img.news1{
			display: inline-block;
			margin: -70px -40px -100px 0;
		}
		
	
#footer {
	margin: 10px;
	color: #FFF;
	font-size: 0.75em;
	text-transform: lowercase;
	-webkit-text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	-moz-text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
	#footer a {
		color: #FFF;
		text-decoration: none;
	}
	#footer a:hover {
		color: #FFF;
		text-decoration: underline;
	}

/*-------------------------------------------------------
Contact Form Styling
---------------------------------------------------------*/

textarea {
	width: 300px;
	margin-bottom: 15px;
	padding: 5px;
	border: 1px solid #CCC;
	font-family: “Helvetica Neue”, Helvetica, Arial, sans-serif;
	font-size: 1.0em;
	color: #006;
	color: #666;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.input, .drop {
	width: 300px;
	margin-bottom: 15px;
	padding: 5px;
	border: 1px solid #CCC;
	color: #006;
	color: #666;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.drop {
	width: 310px;
}

textarea:hover, .input:hover {
	border: 1px solid #006;
	color: #006;
	color: #666;
}

.drop:hover {
	border: 1px solid #006;
	padding: 5px;
	cursor: pointer;
	color: #006;
	color: #666;
}

.btn {
	background-color: #FFF;
	width: 100px;
	border: 1px solid #CCC;
	padding: 4px;
	margin-top: 5px;
	color: #006;
	color: #666;
	font-weight: bold;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.btn:hover {
	border: 1px solid #006;
	background-color: #006;
	cursor: pointer;
	color: #FFF;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0.21, rgb(0,0,102)), color-stop(0.65, rgb(11,1,120)));
	background: -moz-linear-gradient(center bottom,	rgb(0,0,102) 21%, rgb(11,1,120) 65%);
}


