@charset "UTF-8";
/* CSS Document */

body {
	font:11px Verdana, Arial, Helvetica, sans-serif;
	background: #3b3f35;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	/* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #707953;
	text-align:left;
}
a {
	color: #8A8A8A;
	text-decoration:none;
}
a:hover {
	text-decoration:none;
	color: #000000;
}
div.new_image_title span.left {
	padding-top:3px;
	padding-bottom: 1px;
	float: left;
	text-align: left;
	width: 49%;
}
div.new_image_title span.right {
	padding-top:3px;
	padding-bottom: 1px;
	float:right;
	text-align:right;
	width: 49%;
}
.skye #container {
	width: 900px;
	height: auto;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #3b3f35;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.skye #header {
	height:50px;
	background: #e7eade;
	/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	border: 1px solid #6b765a;
	text-align:right;
	background-image: url(../images/logo.gif);
	background-repeat: no-repeat;
	background-position: left;
}
.link_home {
	height:40px;
	margin-left:0px;
	padding-top:10px;
	position:relative;
	width:200px;
	z-index:101;
}
.link_home a {
	display:block;
	height:40px;
	text-decoration:none;
	width:200px;
}
.menu {
	margin-top:-40px;
	margin-left: 150px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	float:right;
	padding-top: 8px;
	padding-right:10px;
	height:40px;
	
}
.skye #mainContent {
	height: 90%;
	margin: 1px auto;
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #f1f5e5;
	border: 1px solid #6b765a;
	text-align: left;
}
.new_image_menu {
	width: 600px;
	height:80px;
	padding-top: 5px;
	margin: 0px auto;
	text-align:center;
}
.new_image {
	width: 880px;
	height:100%;
	margin: 0px auto;
	text-align:left;
	line-height: 20px;
}
.skye #footer {
	
	margin: 2px auto;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
.skye #footer p {
	text-align:center;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 2px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
