/*--- Fix fonts that render as bold in Firefox ---
 * place near the top of your style.css before any overriding styles
 * https://www.lockedowndesign.com/firefox-font-weight-too-bold
 */
html {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-weight: 400;
}
/* Firefox specific rule */
@-moz-document url-prefix() {
	body {
		/*font-weight: lighter !important;*/
		font-weight: 400 !important;
	}
}
/*--- end Forefox fix ---*/

html {
	overflow-Y: auto;	/* auto = show only when needed ... scroll shows bar */
	overflow: -moz-scrollbars-vertical;
}
body {
	width: auto; height: 100%;
	font-family: "Helvetica Neue", Helvetica, Arial, "Open Sans", sans-serif;
	font-size: 16px; font-style: normal; font-weight: 400;
	color: rgb(36,36,36);
	background-color: rgb(255,255,255);		/* NOTE: must change background-color for #wrap_all as well */
	-webkit-font-smoothing: antialiased;
}
h1 {
	font-size: 1.3em;
	font-weight: bold;
	text-decoration: none;
	line-height: 5px;
	color: rgb(80,80,80);
}

a {
	text-decoration: none;
}
a:link    {color:rgb(0,0,160);}
a:visited {color:rgb(0,0,160);}
a:hover   {color:rgb(255,128,0);}
a:active  {color:rgb(255,0,0);}
img {
	border: 0px;
}

#banner {
	margin: 10px auto 0px auto;
	width: auto;
	height: auto;
	text-align: left;
	background-color: none;
}

#wrapper {
	margin: auto;
	width: 1024px;
	height: 100%;
	background-color: none;
}

#left_panel {
	position: relative;
	float: left;
	margin-top: 0px;
	padding: 0px;
	width: 285px;
	height: 730px;
	font-size: 1.1em;
	text-align: right;
	z-index: 2;
	background-color: transparent;
}

#right_panel {
	position: relative;
	float: left;
	margin: -15px auto 0px auto;
	padding: 0px;
	width: 739px;
	height: 730px;
	/*text-align: right;*/
	/*right: 30px;*/			/* use this when time to adjust index position */
	z-index: 0;
	background-color: none;
}
#img_container {
	position: relative;
	margin: 0px;
	width: auto;
	height: auto;
	background-color: none;
	z-index: 0;
}
#img_container img {
	left: 0px;
}

hr {
	width: 75%;
	margin-bottom: 30px;
	border-width: 1px;
	border-style: inset;
	border-color: rgb(236,236,236);
}
#bottom_panel {
	float: left;
	top: 5px;
	margin: auto;
	padding: 0px;
	width: 100%;
	height: 175px;
	position: relative;
	background-color: none;
	border-top: none; /*solid 1px;*/
	border-color: none; /*rgb(160,160,160);*/
}

ul.a {
	/*list-style-type: circle;*/
	list-style-type: none; /*disc*/
	color: rgb(96,96,96);
}
ul {
	padding-left: 0px;
	margin-top: 4px;
	line-height: 34px;
	text-align: right;
}
ul li {
	margin-top: 0px;
}