/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	margin: 0px 12px 0px 12px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background: #232323 url(../graphics/bodybkgd.gif);
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #000033;
	text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000033;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 100%;
	background: #bbb url(../graphics/contentbkgd.gif) repeat-y right top;
	min-width: 920px;
}
#outerWrapper #header {
	padding: 20px 10px 25px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	min-width: 920px;
	background: #333 url(../graphics/vaselogo.jpg) no-repeat 15px 6px;
}
#outerWrapper #header h1 {
	font: italic 28px "Times New Roman", Times, serif;
	color: #ddd;
	letter-spacing: .3em;
}
.headerstyle1 {
	font-size: 34px;
	font-style: normal;
}
.headerstyle2 {
	font: italic 22px;
}
.headerstyle3 {
	font-style: normal;
}
#outerWrapper #header h2 {
	margin-bottom: 0px;
	font: italic normal 15px "Times New Roman", Times, serif;
	letter-spacing: 0.2em;
	margin-top: 6px;
	color: #DDDDDD;
}

#outerWrapper #menuwrapper {
	background: #CCCCCC url(../graphics/navbkgd.gif);
	display: block;
	width: 100%;
	min-width: 920px;
}
#outerWrapper #menuWrapper .clearFloat {
	clear: both;
	display: block;
	size: 0px;
	line-height: 0px;
	height: 0px;
}
#outerWrapper #menubar {
	padding-top: 5px;
	margin-right: auto;
	margin-left: auto;
	width: 79em;
	height: 25px;
	padding-bottom: 3px;
	padding-left: 34px;
}

#outerWrapper #contentWrapper {
	background: url(../graphics/outerbkgd.gif) repeat-y left top;
	min-width: 920px;
}

#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #666; /* Sets the right border properties for an element using shorthand notation */
	color: #fff;
	float: left;
	font-size: 10px;
	font-weight: bold;
	line-height: 14px;
	padding: 0px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 170px;
}
#outerWrapper #contentWrapper #leftColumn1 .padinside p {
	margin-bottom: 5px;
}
#outerWrapper #contentWrapper #leftColumn1 .padinside .caption {
	margin-top: 5px;
	padding: 0px;
}

#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #63749c; /* Sets the left border properties for an element using shorthand notation */
	color: #fff;
	float: right;
	font-size: 10px;
	font-weight: bold;
	line-height: 14px;
	padding: 0px 0px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 170px;
}
#outerWrapper #contentWrapper #leftColumn1 .padinside, #outerWrapper #contentWrapper #rightColumn1 .padinside {
	padding: 10px 5px;
}
#outerWrapper #contentWrapper #rightColumn1 .padinside p {
	margin-bottom: 5px;
}
#outerWrapper #contentWrapper #rightColumn1 .padinside .caption {
	margin-top: 5px;
	padding: 0px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	background-color: #bbb;
	margin: 0 190px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 5px 20px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #content #register td {
	padding-right: 5px;
	padding-bottom: 5px;
}
#outerWrapper #contentWrapper #content .padcontent #contenttext #register {
	padding-top: 15px;
}

#outerWrapper #contentWrapper #content #register .formclass {
	font-size: 11px;
	background: #DBDBDB;
	width: 200px;
}
#outerWrapper #contentWrapper #content #register #button2 {
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	background: #990000;
	border: 1px solid #232323;
	padding-right: 3px;
	padding-left: 3px;
}
#outerWrapper #contentWrapper #content .padcontent #leftcontent {
	float: left;
	width: 48%;
	margin: 0px;
	padding: 0px;
}

#outerWrapper #contentWrapper #content .padcontent #events h3, #outerWrapper #contentWrapper #content .padcontent #essays h3, #outerWrapper #contentWrapper #content .padcontent #featured h3, #outerWrapper #contentWrapper #content .padcontent #contenttext h3, #outerWrapper #contentWrapper #content .padcontent #loginDiv h3 {
	margin-top: 6px;
}
#outerWrapper #contentWrapper #content .padcontent {
	padding: 10px 0px 20px;
}
#outerWrapper #contentWrapper #content .padcontent #events, #outerWrapper #contentWrapper #content .padcontent #featured {
	background: #FFFFFF;
	border: 1px solid #3F3F3F;
	padding-right: 10px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #content .padcontent #featured {
	background: #a8a8a8;
		margin-top: 25px;
}
#outerWrapper #contentWrapper #content .padcontent #loginDiv {
	background: #A0ABC2;
	margin-top: 25px;
	padding-right: 10px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #content .padcontent #essays {
	background: #999999;
	margin-left: 53%;
	border: 1px solid #3F3F3F;
	padding-right: 10px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #content .padcontent #essays p {
	margin-top: 5px;
}

#outerWrapper #contentWrapper #content .padcontent #contenttext {
	margin-top: 25px;
	margin-left: 53%;
	padding-right: 10px;
	padding-left: 10px;
	border: 1px solid #3F3F3F;
}
#outerWrapper #contentWrapper #content #imgWrapper {
	font: bold 9px Verdana, Arial, Helvetica, sans-serif;
	color: #663300;
	float: left;
	height: 280px;
	margin-bottom: 10px;
	text-align: center;
	margin-top: 10px;
	margin-right: 10px;
}
#outerWrapper #contentWrapper #content #imgWrapper .caption {
	padding-right: 3px;
	padding-left: 3px;
}
#outerWrapper #contentWrapper #botpaging {
	clear: both;
	text-align: left;
	margin-bottom: 0px;
	padding-top: 0px;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	clear: both;
	display: block;
	size: 0px;
	line-height: .01px;
	height: 0.01px;
}
#itemDesc {
	width: 500px;
	margin-right: auto;
	margin-left: auto;
}

#outerWrapper #footer {
	background-color: #ddd;
	border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
	font-size: 10px;
	font-variant: small-caps;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	letter-spacing: 0.1em;
	clear: both;
}
.imgbrdr {
	border: 1px solid #232323;
}
#outerWrapper #contentWrapper #content .padcontent a {
	font-weight: normal;
}
#outerWrapper #contentWrapper #content .padcontent a:hover, #outerWrapper #contentWrapper #content .padcontent a:active, #outerWrapper #contentWrapper #content .padcontent a:visited:hover {
	color: #000033;
}
#outerWrapper #contentWrapper #content .padcontent a:link, #outerWrapper #contentWrapper #content .padcontent a:visited {
	color: #990000;
}
#outerWrapper #contentWrapper #leftColumn1 .padinside img, #outerWrapper #contentWrapper #rightColumn1 .padinside img {
	border: 1px solid #000000;
}
