@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
	border:  none;
}

body {
	font: 62.5%/1.4 "Poiret One", Ralway, "JosefinSans Regular", Helvetica, sans-serif;
	background: #000;
	margin: 0;
	padding: 0;
	color: #000;
	font-family: "Poiret One";
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { 
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}

h1 {
	font-size: 4em;
}

h2 {
	font-size: 3.2em; 
}

h3 {
	font-size: 2.2em; 
}

h4 {
	font-size: 2.2em;
}

h5 {
	font-size: 1.8em; 
}

h6 {
	font-size: 1.4em; 
	font-weight: bold;
}

p, dt, dd, li {
	font-size: 1.3em; 
	margin-bottom: 0.75em;
}


a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ this fixed width container surrounds the other divs ~~ */
#wrapper {
	width: 960px;
	/* [disabled]background: #FFF; */
	margin: 25px auto; /* the auto value on the sides, coupled with the width, centers the layout */
	background-color: #64A3DF;
	position: relative;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
#header {
	background: #ADB96E;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content {

	padding: 10px 0;
}

/* ~~ The footer ~~ */
footer {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 10px 0;
	border: 1px dotted white;
}

/* ~~ miscellaneous float/clear classes ~~ */
.floatRight {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.floatLeft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
article {
	overflow: auto;
	opacity: .8;
}
article figure {
	/* [disabled]background-image:  url(../grafix/bkg-wedgewood4A79a5-75.png); */
	float: left;
	margin-right: 30px;
}


/* LIST MENU */
 #listmenu {
	width:76%; 	/* makes the div full width */
	float:right; /* makes the div contain the floated contents */
	margin: 0;
	position: relative;
	z-index: 1000;
	overflow: auto;
	}

 #listmenu ul {
	/*	width: 19.6em; */
	float: right;
	margin: 0 0.25em;
	padding: 3px;
	/* [disabled]border-top: 1px solid #999; */
	/* [disabled]border-bottom: 1px solid #999; */
	text-align: center; /* to center li elements, which are display inline-block instead of floated */
}


 #listmenu ul li {
	height: 1.05em;
	margin: 0 5px; /* redeclare to override previous li styles */
	padding: 2px; 
	/* [disabled]float: left; causes the list to align horizontally instead of stack */
	display: inline-block; /* aligns li's horizontally like float, but allows centering w text-align */
	position: relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type: none; /* removes bullets from li elements */
	font-size: 2.1em;
	font-weight: normal;
}

 #listmenu li {
	font-size: 2em;
}


 #listmenu li.selected {
	-moz-box-shadow: 0 0 2px 5px #999;
	-webkit-box-shadow: 0 0 2px 5px #999;
	box-shadow: 0 0 5px 2px #999;	
}

 #listmenu li.selected span, 
 #listmenu li.selected span {
	position: relative;
	padding: 0 2px;
	display: block;
	bottom: 1px;
}

 #listmenu li a, 
 #listmenu li a {
	display: block;
	position: relative; /* to allow bottom style to pull text downwards inside li a */
	padding: 0 2px; /*creates space each side of menu item's text */
	/* [disabled]bottom: 1px; */
	text-decoration: none;	 /* removes the underlining of the link */
	color: #FFF;	/* sets the type color */
	font-weight: normal;
}

 #listmenu li a {
	;
}

 #listmenu ul li:hover, 
 #listmenu ul li:hover {
	-moz-box-shadow: 0 0 2px 5px #999;
	-webkit-box-shadow: 0 0 2px 5px #999;
	box-shadow: 0 0 5px 2px #999;	
}

/*  END List Menu */


#copyright {
	text-align: center;
	color: #fff;
	font-size: 1em;
}
article header {
	padding: 15px;
}
