/*<![CDATA[*/

/* Colors
f7eac2 Page header and menu
bc9b69 Content header and active menu
ebe8df Left panel under menu
d89b31 Image info background
100f0f Header text color100f0f
*/

/* External Style Sheets - styles hidden from older browsers
========================================================== */
/* @import "[url]/global_style.css"; */


/* Document Setup
========================================================== */

/* Page Properties
------------------------------------------------ */
/* Force vertical scrollbars by add 1px to the bottom margin - http://www.hicksdesign.co.uk/journal/forcing-scrollbars-now-even-better
html { height: 100%; margin-bottom: 1px; } */

html {
	/* Keep FireFox from jumping when pages need vertical scrollbar. - http://www.websemantics.co.uk/tutorials/useful_css_snippets/ */
	overflow: -moz-scrollbars-vertical;
	overflow-x: auto;
	overflow-y: scroll;
	/* Hides inactive IE browser scrollbar. (http://archivist.incutio.com/viewlist/css-discuss/600)
	overflow: auto; */
}

html,
body {
	height: 100%;
	width: 100%;
	margin: 0;
	border: 0;
	padding: 0;
}

body {
	position: relative;
	background: #cdb189 url(../images/bg.jpg) no-repeat 50% 0px; /**/
}

/* Base Font Size
------------------------------------------------ */
/*
http://clagnut.com/blog/348/
http://www.netmag.co.uk/zine/design-tutorials/20-pro-tips
http://www.astahost.com/info.php/sizes-webdesign-em-vs-px_t8926.html
http://www.evolt.org/article/Ten_CSS_tricks_you_may_not_know/17/60369/
http://tantek.com/log/2004/09.html#d07t1434

This makes one em or 100% roughly ten pixels (16 x 62.5% = 10).
Now you can equate pixel sizes to ems, 10px = 1.0em. Or 10px = 100%.
Joshua Logsdon is using 1.38 to be more precise with how font sizes seem to be rounding.
*/
html { font-size: 1.25em; } /* In IE 16px is the default font size, 1.25×16px = 20px. */
body { font-size: 50%; } /* Adjusts base font to 10px. */
html>body { font-size: 10px; } /* Overrides the above in all browsers except IE. */
body * { font-size: 100%; line-height:1.22em; } /* IE hack for cascading body font-size. */

table { font-size: inherit; font: 100%; }
select, input, textarea { font: 99% Arial, Helvetica, sans-serif; }

/* Default Font Family
------------------------------------------------ */
html { font-family: Verdana, Arial, Helvetica, sans-serif; }

/* Default Link Style
------------------------------------------------ */
a, a:link{ /*, a:visited, a:hover, a:active */
	text-decoration: underline;
	color: #0033FF;
	}
	a:hover {/*, a:active */
		color: #0099ff;
	}
	/*
	Removes focus outline from links used by mouse, tab remains.
	Resources:
	http://sonspring.com/journal/removing-dotted-links
	http://www.maratz.com/blog/archives/2006/01/20/outline-property-for-image-replaced-link/
	*/
	a:active, a:focus { 
		outline: none;
		/* -moz-outline-style: none; */
	}

img { display: block; } /* In IE, images are treated as inline elements */
/*img {*margin-bottom: expression("-3px"); }*/ /* Get rid of IE 3px auto-margin after images. Resource: http://www.pinkblack.org/itblog/?p=28 */

/* Body Containers and Wrappers
========================================================== */
#bodyContainer { text-align: center; } /* Center the container inside the wrapper. */
	#contentContainer {
		margin: 0 auto; /* Brings in the div margins, keeping only the width. */
		margin-left: auto; /* IE5/Mac will ignore the above, but understand these. */
		margin-right: auto;
		margin-top: 6px;
		padding-left: 20px;
		width: 780px;
		text-align: left; /* Now counter the centering of content. */
		/*background: url(../images/mnu_shadow.gif) no-repeat 0% 0px; */
	}
	#contentContainer_nested {
		padding-right: 20px;
		/*background: url(../images/mnu_shadow_right.gif) no-repeat 100% 0px; */
	}

/* Header and Footer
========================================================== */
#header {}
	#masthead {
		width: 760px;
		height: 65px;
		overflow: hidden;
		background: #f7eac2;
		}
		#masthead #logo {
			float: left;
			margin: 10px 0px 0px 10px;
			}
		#masthead #volume {
			width: auto;
			padding: 15px 10px 8px 0px;
			font: normal 400 120%/normal Arial, Helvetica, sans-serif;
			color: #100f0f;
			text-align: right;
			}
	
#footer {
	clear: both;
	width: 760px;
	text-align: center;
	background-color: #6f6b5e;
	}
	#footer h5 {
		margin: 0;
		padding: 1.4em 1.2em 0;
		font-weight: 400;
		color: #FFFFFF;
		}
	#footer h6 { /* copyright */
		margin: 0px;
		padding: 0.5em 0.5em 1.4em; /* #6f6b5e url(../images/ftr_shadow.gif) no-repeat top left */
		font-weight: 400;
		color: #ebe8df;
		}
	#footer a, #footer a:link, #footer a:visited, #footer a:hover, #footer a:active {
		text-decoration: underline;
		color: #100f0f;
		}


/* Content Columns
========================================================== */
#colContainer {
	background: #ebe8df;/* url(../images/bg_column_left.gif) repeat-y;*/
}

#leftCol {
	float: left;
	width: 140px;
}
	
#leftCol_menu {
	overflow: hidden;
  	width: 140px;
	padding: 0 0 10px;
	background: #f7eac2;
	}
	#leftCol_menu h3 {
		margin: 0;
		padding: 0 0.8em 0.4em;
		font: normal 700 1.4em/1.0em 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
		letter-spacing: 2px;
		text-transform: uppercase;
		color: #bc9b69;
		}
	#leftCol_menu dl {
		display: block;
		overflow: hidden;
		/* left padding works with the li padding below, spacing the first left li */
		margin: 0;
		padding: 0; /*padding-left: 1px;
		border: solid 1px #d2e0f0; border-width: 0px 0px 0px 2px;*/
		list-style: none;
		font-size: 0.9em;
		background: transparent;
		}
		#leftCol_menu dl dt { 
			margin: 0;
			padding: 0;
			font-size: 0;
			line-height: 0;
		}
		#leftCol_menu dl dd {
			float: left; 
			clear: left;
			overflow: hidden;
			width: 140px; 
			margin: 0;
			padding: 0;
			text-align: left;
			background: transparent;
			}
		#leftCol_menu dl dd.last {
			border-bottom: 0 dashed #d89b31;
			padding-bottom: 0;
		}
		
			#leftCol_menu dl dd a,
			#leftCol_menu dl dd a:link {
				display: block;
				margin: 0;
				/*border: solid 1px #fff; border-width: 1px 0px;*/
				padding: 0.4em 0.2em 0.4em 1.0em;
				font: normal normal 1.1em/normal Verdana, Arial, Helvetica, sans-serif;
				text-decoration: none;
				color: #6A6A6A;
				background: transparent;
				}
			#leftCol_menu dl dd a:hover,
			#leftCol_menu dl dd a:active {
				text-decoration: underline;
				background-color: #bc9b69;
				color: #fff;
			}
			#leftCol_menu dl dd.expand a:hover,
			#leftCol_menu dl dd.expand a:active {
				background: #bc9b69 url(../images/gfx_icon_plus.gif) no-repeat 129px 7px;
			}
			#leftCol_menu dl dd.active a,
			#leftCol_menu dl dd.active a:link {
				border: solid 1px #d89b31;
				border-width: 1px 0 1px;
				padding-left: 0.5em;
				font-weight: 700;
				text-decoration: none;
				color: #5a5a5a;
				background-color: #fff;
				}
			#leftCol_menu dl dd.active a:hover,
			#leftCol_menu dl dd.active a:active {
				background-color: #fff;
				text-decoration: underline;
			}
			#leftCol_menu dl dd.expanded a,
			#leftCol_menu dl dd.expanded a:link {
				border-top: 1px solid #d89b31;
				border-width: 1px 0 0;
				font-style: italic;
				font-weight: 400;
				font-size: 1.1em;
				background: #fff url(../images/gfx_icon_minus.gif) no-repeat 129px 7px;
			}
			#leftCol_menu dl dd.expanded a:hover,
			#leftCol_menu dl dd.expanded a:active {
				background-color: #fff;
				text-decoration: underline;
			}
			
				#leftCol_menu dl dd.active .last {
					border-bottom: 1px solid #d89b31;
					}
				/* nested link */
				#leftCol_menu dl dd.active dd a,
				#leftCol_menu dl dd.active dd a:link {
					border: 1px solid #fff;
					border-width: 0 0 0 3px;
					padding-left: 1.0em;
					font-weight: 400;
					font-style: normal;
					font-size: 1.2em;
					text-decoration: none;
					color: #5a5a5a;
					background-color: #fff;
					background-image: none;
					}
				#leftCol_menu dl dd.active dd a:hover,
				#leftCol_menu dl dd.active dd a:active {
					text-decoration: underline;
					background-color: #fff;
					color: #5a5a5a;
				}
					/* nested active link */
					#leftCol_menu dl dd.active dd.active a,
					#leftCol_menu dl dd.active dd.active a:link {
						padding-left: 0.5em;
						font-weight: 700;
						background-color: #fff;
						}
					#leftCol_menu dl dd.active dd.active a:hover,
					#leftCol_menu dl dd.active dd.active a:active {
						background-color: #fff;
					}
			/* Commented Backslash Hack hides rule from IE5-Mac \*/
			#leftCol_menu dl dd a { float: none; } /* End IE5-Mac hack */

/* Left Column - Subsection
---------------------------------------------------------- */
#leftCol_subSection {
	border-top: 1px solid #9A835B;
	padding-bottom: 0.0em;
	font: normal normal 100%/normal Verdana, Arial, Helvetica, sans-serif;
	color: #245578;
	background: #ebe8df;
	}
	#leftCol_subSection h3 {
		margin: 2.0em 0 0.3em 0.5em;
		padding: 0;
		font: normal 700 1.4em/normal 'Palatino Linotype', 'Book Antiqua', Palatino, serif; 
		color: #92704c;
		letter-spacing: 1px; 
		text-transform: uppercase; 
		}
	#leftCol_subSection p {
		margin: 0;
		padding: 0 0.5em 0;
		font-size: 1.1em;
		color: #777161;
		}
		
	#leftCol_subSection a,
	#leftCol_subSection a:link {
		display: block;
		margin: 1.0em 0.5em;
		padding: 0.7em 0;
		text-decoration: none;
		color: #fff;
		border-bottom: 0px solid #ebe8df;
		}
	#leftCol_subSection a:hover,
	#leftCol_subSection a:active {
		background: #dfdacd;
		}
		#leftCol_subSection a h3 {
			margin-top: 0;
			}
	#leftCol_subSection a.active,
	#leftCol_subSection a.active:link,
	#leftCol_subSection a.active:visited, 
	#leftCol_subSection a.active:hover,
	#leftCol_subSection a.active:active,
	#leftCol_subSection a.active p {
		text-decoration: none;
		background: #ebe8df;
		}
		#leftCol_subSection a.active h3 {
			margin-top: 0;
			}

/* Right Column - Content
---------------------------------------------------------- */
#rightCol {
	overflow: hidden;
	float: left;
	width: 620px;
	background-color: #FFFFFF;
}

/* Content Styles
========================================================== */

/* 
attribute 
dateline
lead-in
cutline/caption */
			
/* copy */
.copy {
	padding-bottom: 1.0em;
	}
	.copy p {
		margin: 1.0em; 
		margin-left: 1.2em; 
		font: 400 1.1em/1.4em Verdana, Arial, Helvetica, sans-serif;
		color: #5a5a5a;
	}
	.copy .dateline {}
	.copy .lead {
		font-weight: 700;
		font-variant: small-caps;
		}
		.copy .kicker {
			font-size: 1.2em;
		}
	/* copy links */
	.copy a,
	.copy a:link, .copy a:visited,
	.copy a:hover, .copy a:active {
		padding-bottom: 0.1em;
		border-bottom: 1px dashed #4a7e90;
		text-decoration: none;
		color: #11476f;
		}
		.copy a:hover, .copy a:active {
			border-bottom: 1px solid #b1005d;
			color: #b1005d;
			}
	.copy h2 { /* headline */
		margin: 0;
		padding: 0.4em 0.5em 0;
		font: 700 1.8em/normal 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
		color: #fff;
		background: #bc9b69;
	}
	/* copy header/standfirst */
	.copy h3 {
		margin: 0;
		padding: 1.0em 0.7em 0.0em;
		border-bottom: 0px solid #bc9b69;
		font: 700 1.6em/1.3em 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
		color: #d89b31;
		}
		.copy h3.header-first { margin-top: 0.3em; }
	/* copy subhead/subheader */
	.copy h4 {
		margin: 0;
		padding: 0.5em 1.0em 0.5em;
		font: 700 1.2em/normal Verdana, Arial, Helvetica, sans-serif;
		text-decoration: none;
		color: #5a5a5a;
		}
	.copy h5 { /* lead-in/deck/lede */
		margin: 0;
		border-bottom: 1px dashed #D6E0E0;
		padding: 0.8em 0.6em 0.8em 1.0em;
		font: 400 1.1em/normal Verdana, Arial, Helvetica, sans-serif;
		color: #5a5a5a;
	}
	.copy h6 { /* byline */
		margin: 0;
		padding: 0.3em 0.3em 0.6em 1.0em;
		font: 400 1.1em/normal Verdana, Arial, Helvetica, sans-serif;
		color: #fff;
		background: #bc9b69;
	}
	.copy h6.header-byline {
		padding-left: 1.2em;
		color: #807A73;
		background: transparent;
	}
	.copy .stand-out {}
	.copy p.crosshead { /* A few words used to break up large amounts of text, normally taken from the main text. */
		float: right;
		clear: right;
		width: 300px;
		font-size: 1.6em;
		font-weight: 700;
		line-height: 1.7em;
	}
	.copy .sidebar {}
	.copy .pull-out {
		margin: 1.0em;
		padding: 0.4em;
		background: #F1E6D8;
	} 
	.copy .quote {}
	.copy .endnote { font-style: italic; } /* Text written at the end of an article stating the authors credentials. */
	.copy .attribute {}

.copy_imageContainer {
	/* position: relative; Fixes IE5/Mac display to be on top of headings */
	display: inline-block;
	float: right;
	clear: right;
	width: 400px;
	margin-top: 0.6em;
	margin-left: 1.2em;
	margin-bottom: 1.0em;
	background: #f7eac2;
}
.copy_image-200 {
	width: 200px;
}
.copy_image-300 {
	width: 300px;
}
.copy_image-600,
.copy_image-620 {
	float: none;
	clear: none;
	width: 600px;
	margin-left: 0;
}
.copy_image-620 {
	width: 620px;
}
	.copy_image_infoContainer {
		padding: 0.6em 0;
	}
		.copy_image_infoContainer p {
			margin: 0;
			padding: 0.4em 0.8em;
			font: 400 1.1em/normal Arial, Helvetica, sans-serif;
			color: #888888;
		}
		.copy_image_infoContainer .copy_image_caption {
			font-weight: 700;
			color: #555555;
		}
		.copy_image_infoContainer .copy_image_cutline {
			color: #555555;
		}
		.copy_image_infoContainer .copy_image_cutline-quote {
			font-size: 1.9em;
			color: #555555;
		}
		.copy_image_infoContainer .copy_image_credit {
			padding-top: 0;
			padding-bottom: 0;
			font-style: normal;
			text-align: right;
			font-size: 0.9em;
		}
	
	
.blockquote {
	position: relative;
	float: left;
	margin: 0;
	padding: 5px;
	width: 200px;
	}
	.blockquote .quote_open {
		float: left;
		width: 20px;
		font: normal 700 26px/normal 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
		color: #CCCCCC;
		}
	.blockquote .quote_close {
		position: absolute;
		bottom: 15px;
		left: 180px;
		width: 20px;
		font: normal 700 26px/normal 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
		color: #CCCCCC;
		}
	.blockquote .quote_byline {
		margin: 5px 10px;
		font-style:italic;
		font-size: 110%;
		text-align: right; 
		color: #999;
		}
	.blockquote .quote_content {
		float: left;
		width: 160px;
		margin-top: 7px;
		font-weight: 400;
		font-size: 110%;
		color: #d89b31;
		}

	
.return_to_top {
	clear: both;
	margin: 0.5em 1.0em;
	font: normal normal 1.1em/normal Verdana, Arial, Helvetica, sans-serif;
	text-align: right;
	}
	.return_to_top a,
	.return_to_top a:link, .return_to_top a:visited,
	.return_to_top a:hover, .return_to_top a:active {
		border-bottom: 1px dashed #91A7C9;
		padding-bottom: 0.1em;
		text-decoration: none;
		color: #075892;
		}
		.return_to_top a:hover, .return_to_top a:active {
			border-bottom: 1px solid #7C1144;
			color: #b1005d;
			}

		
/* Tables
========================================================== */
.config_table td {
	border-bottom: 1px solid #ccc;
	padding: 0.3em;
	white-space: nowrap;
	font: normal normal 1.1em/normal Verdana, Arial, Helvetica, sans-serif;
	}
	.config_table td.data_cell {
		border-left: 1px solid #f1f1f1;
	}
	.config_table tr.odd_row {
		background: #f6f6f6;
	}

.table_calendar {
	width: 600px;
	margin: 0.8em;
	border: 0;
	padding: 0;
	}
	.table_calendar th {
		border-bottom: 1px solid #d89b31;
		padding: 5px 30px 5px 10px;
		font-weight: 700;
		font-size: 1.1em;
		line-height: 1.3em;
		text-align: left;
		color: #fff;
		background: #d89b31;
		}
	.table_calendar td {
		border-bottom: 1px dashed #d89b31;
		padding: 0.5em 0em 0.5em 1.5em;
		line-height: 1.4em;
		color: #100f0f;
		font-size: 1.1em;
		}
	.table_calendar tr.row_last td {
		border-bottom: 0;
		padding-bottom: 0.8em;
		}
	.table_calendar td p {
		font-size: 1.0em;
	}
	
/* Menus and Lists 
========================================================== */

.heading {
	position: relative; /* Fixes IE5/Mac display to be on top of headings */
}
.list_related-articles {
	/*position: absolute;
		top: 0;
		right: 0;*/
	float: right;
	clear: right;
	width: 310px;
	margin-top: 0.5em;
	background-color: #bc9b69;
}
.list_related-articles dl {
	float: right;
	margin: 0.4em 0.2em;
	border: 0;
	padding: 0;
	background: transparent;
	}
	.list_related-articles dt {
		float: left;
		display: inline;
		margin: 0;
		padding: 0.4em 0.8em;
		font-size: 1.0em;
		font-weight: 700;
		color: #100f0f;
		}
	.list_related-articles dd {
		float: left;
		display: inline;
		margin: 0;
		padding: 0;
		}
		
	.list_related-articles a,
	.list_related-articles a:link,
	.list_related-articles a:visited,
	.list_related-articles a:hover,
	.list_related-articles a:active {
		float: left;
		display: block;
		margin: 0;
		padding: 0.4em 0.8em;
		border: 0;
		font-size: 1.0em;
		text-decoration: none;
		color: #100f0f;
		background: transparent;
		}
		.list_related-articles a:active,
		.list_related-articles a:hover {
			text-decoration: underline;
			color: #fff;
			background-color: #7a7a7a;
		}
		/**/
	.list_related-articles a.active,
	.list_related-articles a.active:link,
	.list_related-articles a.active:visited,
	.list_related-articles a.active:hover,
	.list_related-articles a.active:active {
		font-weight: 700;
		color: #fff;
		background-color: #100f0f;
		}
	
/* Header Menu
------------------------------------------------ */
.hdr_menu {
	width: auto;
	height: 22px;
	float: right;
	clear: right;
	margin-top: 6px;
	padding-top: 0.4em;
	padding-right: 0.6em;
	padding-left: 23px;
	color: #f7eac2;
	text-align: right;
	background: #bc9b69 url(../images/hdr_tab.gif) top left no-repeat;
	}
	.hdr_menu a, .hdr_menu a:link, .hdr_menu a:visited, .hdr_menu a:hover, .hdr_menu a:active {
		padding: 0 0.5em;
		padding-top: 1em;
		font: 700 1.1em/normal Arial, Helvetica, sans-serif;
		color: #fff;
		text-decoration: underline;
		}
		.hdr_menu a:hover, .hdr_menu a:active {
			font-weight: 700;
			color: #fff;
			text-decoration: underline;
			}

/* Bulletted List
------------------------------------------------ */
/* see http://www.simplebits.com/publications/bulletproof/toc/ */
.list_bullet_0 {
	list-style-type: none;
	padding: 0;
	margin: 0;
	margin-left: 1em;
}
	.list_bullet_0 li{
		margin-left: 0;
		padding-left: 1em;
		padding-bottom: 1em;
		border: none;
		list-style: none;
		background-image: url(/housing/images/gfx_arrow02.gif);
		background-repeat: no-repeat;
		background-position: 0 .4em;
	}


/* Menu List
------------------------------------------------ */
.list_basic {
	margin: 0;
	padding: 1.0em 0 0.4em; 
	font-size: 1.1em;
	color: #5a5a5a;
	}
	.list_basic li {
		margin-left: 3.0em;
		padding-left: 0.2em;
		padding-bottom: 1.0em;
		}
		
/* Features List
---------------------------------------------------------- */
#features {
	margin: 1.5em;
	font-size: 1.2em;
	font-family: Verdana, sans-serif;
	line-height: 1.5em;
	color: #666b75;
	}
	#features a:link, #sidebar a:visited {
		border-bottom: dashed 1px #91A7C9;
		padding-bottom: 1px;
		text-decoration: none;
		color: #075892;
		}
	#features a:hover {
		border-bottom: solid 2px #7C1144;
		color: #b1005d;
	}
	
	#features h3 {
		margin: 25px 0 12px 0;
		padding: 0 0 5px 0;
		font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
		font-weight: 700;
		font-size: 120%;
		line-height: 1em;
		letter-spacing: 2px;
		text-transform: uppercase;
		color: #A1B164;
		border-bottom: 1px solid #dbd5c5;
		}
		#features h3.first {
			margin-top: 0;
			}
			
	#features p {
		margin: 0;
		padding: 3px 0px;
		}
		
	#features ul, #sidebar dl {
		margin: 0;
		padding: 0;
		line-height: 1.5em;
		list-style: none;
		}
		#features li {
			margin: 0 0 .5em 0;
			padding: 0 0 0 14px;
			background: url(../images/icon-bullet_0.gif) no-repeat 0 4px;
			}
		#features ul.articles li {
			padding-left: 16px;
			background-image: url(../images/icon-doc.gif);
			background-position: 0 2px;
			}
		#features ul li.last {
			margin-bottom: 0;
			}
	/* sub navigation */	
	#features ul.sub li.active a:link, #sidebar ul.sub li.active a:visited {
		color: #383d44;
		font-weight: bold;
		text-decoration: none;
		border-bottom: none;
		}
	#features ul.sub li.active {
		background: url(../images/icon-subon.gif) no-repeat 1px 4px;
		}

.back-issues {
	padding-left: 5px;
}
	.back-issues p {
		float: left;
		margin: 10px 0 0;
		padding: 0 0.6em 1.4em;
		text-align: center;
	}
	.back-issues a,
	.back-issues a:link,
	.back-issues a:visited,
	.back-issues a:hover,
	.back-issues a:active {
		text-decoration: none;
		border: 0;
	}
	.back-issues img {
		width: 138px;
		height: 179px;
		border: 0;
		margin-bottom: 5px;
	}


/* Index-Specific Content
========================================================== */
#flash_bar {
	margin: 0;
	padding: 0 1.0em;
	font-weight: 700;
	font-size: 0.8em;
	color: #fff;
	background: #f7eac2;
	}
	
.credits_title {
	font-weight: 700;
}


/* Utility
========================================================== */

/* == METHODS - Accessible Hiding - http://simonwillison.net/2003/Sep/13/screenReaders/ & others
-------------------------------------------------------------------------------------------------- */
.hide {
	display: none;
}

.access,
#skip-links,
#branding #branding-strapline,
#navigation-main li.home {
	position: absolute; /* for the benefit of IE5 Mac */
	left: -9999px;
	height: 0;
	overflow: hidden;
	font-size: 0;
}

/* == METHODS - Image Replacement (Phark) http://phark.typepad.com/phark/2003/08/accessible_imag.html
-------------------------------------------------------------------------------------------------- */
.phark,
#branding h1 a {
	display: block;
	overflow: hidden;
	font-size: 0.0;
	line-height: 0.0;
	text-decoration: none;
	text-indent: -9999px;
	background: transparent no-repeat 0 0;
}

.cleaner {
	clear: both;
	overflow: hidden;
	width: auto;
	height: 0.1px;
	font-size: 0.1px;
	background: transparent;
	}
.clear_float {
	clear: both;
	overflow: hidden;
	height: 1px;
	margin-top: -1px;
	font-size: 1px;
	background: transparent;
	}

/*
Necessary for a floated element's container. A floated element does not force its container's bottom edge down as the float is made taller; the float will hang down out of the container bottom without this fix.
Resources:
http://www.positioniseverything.net/easyclearing.html
http://www.webtoolkit.info/css-clearfix.html

http://www.positioniseverything.net/explorer/dup-characters.html
It turns out that this duplicating characters bug can be triggered by other things than just HTML comments. Phil Baines points out that any elements given the style {display: none} will also induce the bug. 
*/
.clear-fix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.clear-fix { /* Fixes IE/Mac */
	display: inline-block;
}
html[xmlns] .clear-fix {
	display: block;
}
* html .clear-fix { /*  ,* html .clear-fix * */
	height: 1%;
}
/* MacIE5 Commented Backslash Hack - Begin hiding CSS from MacIE5  \*/
.clear-fix { display: block; }
/* MacIE5 Commented Backslash Hack - End */

/*
	<!--  Microsoft Internet Explorer does not render things correctly, so import an IE-specific style sheet.  -->

	<!--[if IE]>
		<style type="text/css">
			@import url("http://www.nmsu.edu/style/ie_specific.css");
			}
		</style>
	<![endif]-->
		
		
	<link rel="stylesheet" type="text/css" href="common.css" />
	
	<!--[if IE]>
	  <link rel="stylesheet" type="text/css" href="all-ie.css" />
	<![endif]-->
	
	<!--[if IE 5.5]>
	  <link rel="stylesheet" type="text/css" href="ie-5.5.css" />
	<![endif]-->

	<!--[if IE 6]>
	  <link rel="stylesheet" type="text/css" href="ie-6.0.css" />
	<![endif]-->
	
	<!--[if IE lt  6]>
	  <link rel="stylesheet" type="text/css" href="ie-5.0+5.5.css" />
	<![endif]-->
*/

/* Print-Specific Styles
========================================================== */
/*
@media print {

}
*/


/*]]>*/
