/* 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 {
	outline: 0;
	padding: 0;
	margin: 0;
}
/* 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. */

html {
	font-family: Arial, Helvetica, sans-serif;
	font-size:  14px;
	height: 100%;
}
body {
	color: #036;
	margin: 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #033;
}
/* Sets the style for visited links. */
a:visited {
	color: #000;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #5275AA;
}
/* 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: #000;
}
.clear {
	clear:both;
}
.right {
	float: right;
	margin-bottom: 10px;
	margin-left: 10px;
}
.left {
	float: left;
	margin-right: 20px;
	margin-bottom: 5px;
}
.arrow {
	background: url(images/arrow.gif) no-repeat left top;
	padding-left: 15px;
	margin-top: 8px;
}
#flash {
	position: absolute;
	z-index: 0;
}
#topHeader { background-repeat: no-repeat; background-position: center top; }
#topHeader #logo { background-image: url(images/pmel-acoustics-logo.png); background-repeat: no-repeat; width: 459px; height: 135px; margin: 0 0 0 -10px; padding: 0; }
#topHeader #logo a img { width: 340px; height: 130px; display: block; }
#topHeader #logo a { background-repeat: no-repeat; background-attachment: scroll; background-position: 0 0; display: block; border: 0; }
#topHeader #logo a:hover, #gutter #logo a:active { background-color: transparent; background-repeat: no-repeat; background-attachment: scroll; background-position: 0 0; display: block; border: 0; }
#topHeader #logo a img { display: block; width: 0; height: 0; }
#header {
	text-align: center;
	height: 135px;
	padding-left: auto;
	padding-top: auto;
	float: center;
}
#map-canvas {
	width: 100%;
	height: 375px;
	background-color: #FFF;
}
#titleplain {
	float:left;
	color: #FFF;
	text-decoration: none;
	letter-spacing: -1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	line-height: 60px;
}
#titleright {
	float:right;
	text-decoration: none;
	letter-spacing: -1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	margin-top: 40px;
	color: #009;
	margin-left: 50px;
}
#title {
	float:left;
	color: #FFF;
	letter-spacing: -1px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	line-height: 70px;
}
#title a, #title a:link, #title a:visited {
	color: #FFF;
	text-decoration:none;
}
#title a:hover {
	color: #069;
	text-decoration: none;
}
#italic-sm {
	color: #FFF;
	float:left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: italic;
	padding: 50px 0 0 0px;
}
#headlinks {
	float:right;
	width:200px;
	text-align:right;
	color: #009;
	padding:30px 150px 0 0;
}
#headlinks a, #headlinks a:link, #headlinks a:visited, #headlinks a:active {
	color: #03C;
	text-decoration:none;
}
#headlinks a:hover {
	color: #03F;
	text-decoration:none;
}
/* 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.  amb-changed 6/24/2013 */
#outerWrapper {
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 920px;
	float: center;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding: 0;
	}
#oneColumn { /* This sets the id for a 1 column layout */
	overflow: hidden;
	width: 920px;
	margin-top: 20px;
}

#oneColumn #content {
	width: 840px;
	margin-top: 40;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 20px;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 30px;
	padding-left: 20px;
}
#threeColumns { /* This sets the id for a 3 column layout */
	overflow: hidden;
	background: #FFF url(images/newventscontent-bg.png) repeat-y left;
	width: 920px;
}
#threeColumns #leftColumn {
	float: left;
	padding: 15px 0px 10px 25px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
}
#threeColumns #rightColumn {
	float: right;
	padding: 15px 30px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
}
/* 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. */
#threeColumns #content {
	margin: 0 205px 0 215px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 460px;
}
#twoColumnleft { /* This sets the id for a 2 column layout with a left column only */
	overflow: hidden;
	width: 920px;
}
#twoColumnleft #content, #twoColumnright #content {
	width:580px;
}
#twoColumnleft #leftColumn {
	float: left;
	padding: 15px 10px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 240px;
}
#twoColumnleft #rightColumn {
	display:none;
}
/* 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. */
#twoColumnleft #content {
	margin: 0 15px 0 285px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 30px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#twoColumnright { /* This sets the id for a 2 column layout with a right column only */
	overflow: hidden;
	width: 920px;
}
#twoColumnright #leftColumn {
	display:none;
}
#twoColumnright #rightColumn {
	float: right;
	padding: 25px 35px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 240px;
}
/* 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. */
#twoColumnright #content {
	margin: 0 0px 0 15px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 30px 10px 30px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}


#VentstwoColumnright { /* This sets the id for a 2 column layout with a right column only */
	overflow: hidden;
	width: 920px;
}
#VentstwoColumnright #leftColumn {
	display:none;
}
#VentstwoColumnright #rightColumn {
	float: right;
	padding: 25px 35px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 340px;
}
/* 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. */
#VentstwoColumnright #content {
	margin: 0 0px 0 15px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 30px 10px 30px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width:500px;
}
#footer {
	height: 55px;
	color: #069;
	clear: both;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 30px;
}
#credit {
	text-align: center;
	padding-top: 0px;
	padding-bottom: 8px;
	font-size: 11px;
	color: #456290;
	width: 920px;
	margin-right: auto;
	margin-left: auto;
}
#credit a, #credit a:hover, #credit a:visited, #credit a:active, #credit a:focus {
	color: #456290;
	font-weight: normal;
	text-decoration: none;
}
#staffcontainer {

	width: 100%;
	background-color: #FFF;
}

/* ---------- Navigation CSS ---------- */
#navcontainer {
	position:relative;
	height:40px;
	width:920px;
	font-family:Helvetica, Arial, Verdana, sans-serif;
	padding-top: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-left: auto;
}
#nav {
	position:absolute;
	height:50px;
	text-transform:uppercase;
	font-size: 14px;
	font-weight: bold;
	background-repeat: no-repeat;
	background-position: left top;
	padding-left: 15px;
	padding-top: 0px;








	padding-bottom: 20px:
	margin-top: 0px;
	left: 21px;
	top: -23px;
}
#nav ul {
	margin:0;
	padding:25px 0px 0px 15px;
	list-style-type:none;
}
#nav ul li {
	display:inline;
	margin:0px;
	padding-right: 20px;
	width: auto;
}
#nav ul li a {
	color:#039;
	text-decoration:none;
}
#nav ul li a:hover {
	color:#00F;
}

/* ---------- Typography CSS ---------- */

boldgrouphead {
	font-size: 1.4em;
	margin: .5em 0em;
	font-weight: bold;
	color: #5275AA;
}
h1 {
	margin-top: 0em;
	margin-bottom: 0em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 2em;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
}
h2 {
	margin: .5em 0em;
	color: #4C6D9E;
	font: normal 1.7em Arial, Helvetica, sans-serif;
}
h3 {
	font-size: 1.4em;
	margin: 0em;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	height: 35px;
	width: 240px;
}
h4 {
	font-size: 1.2em;
	margin: .5em 0em;
	font-weight: bold;
	color: #5275AA;
}
h5 {
	font-size: 1.0em;
	margin: .5em 0em;
	font-weight: bold;
}
h6 {
	font-size: 14px;
	font-weight: bold;
	margin-top: 0.0em;
	margin-right: 0em;
	margin-bottom: 0.0em;
	margin-left: 0.0em;
}
img {
	border: 0;
	margin: 2px 2px 2px 2px;
}
p {
	font-size: 14px;
	line-height: 1.2em;
	margin-top: 0em;
	margin-right: 0em;
	margin-bottom: 0em;
	margin-left: 0.02em;
}
pre {
	font-family: monospace;
	font-size: 1.2em;
	background: #F4F4F4;
	margin: 15px;
	padding: 10px;
	border: 1px dotted #CCC;
}
#footer a, #footer a:link, #footer a:visited, #footer a:active {
	color: #069;
}
#footer a:hover {
	color: #03C;
}
/* ---------- Two Column CSS ---------- */

.csscolumns {
	overflow:hidden;
	width: 100%;
}
/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 
#highlight_box {
	float: left;
	width:98%;
	border: thin solid #066;
	padding-top: 0px;
	padding-right: 2px;
	padding-bottom: 4px;
	padding-left: 2px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
#col_one_1 {
	margin: 0;
	float: left;
	width:98%;
	padding: 0 2px 0 2px;
	border: thin solid #066;
}
/* Two columns */
#col_one_2 {
	margin: 0;
	float: left;
	width:48%;
	padding: 0 2px 0 2px;
}
#col_two_2 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:48%;
	padding: 0 2px 0 2px;
}
/* ---------- Research groups Two Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#groupcol_one_2 {
	margin: 0;
	float: left;
	width:45%;
	height: 250px;
	padding: 0 2px 0 2px;
	border: thin solid #066;
}
#groupcol_two_2 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:45%;
	height: 250px;
	padding: 0 2px 0 2px;
	border: thin solid #066;
}
/* ---------- Three Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_3 {
	margin: 0;
	float: left;
	width:32%;
	background-color: D5EAEA;
}
#col_two_3 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:31%;
	background-color: D5EAEA;
}
#col_three_3 {
	margin: 0 0 0 12px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:31%;
	background-color: D5EAEA;
}
/* ---------- Four Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#col_one_4 {
	padding-left: 2px;
	float: left;
	width:23%;
	border: thin solid #066;
	height: 500px;
	margin-top: 4px;
	margin-right: 0;
	margin-bottom: 4px;
	margin-left: 0px;
	padding-right: 2px;
}
#col_two_4 {
	padding-left: 2px;
	float: left;
	width:23%;
	border: thin solid #066;
	height: 500px;
	margin-top: 4px;
	margin-right: 0;
	margin-bottom: 4px;
	margin-left: 12px;
	padding-right: 2px;
}
#col_three_4 {
	padding-left: 2px;
	float: left;
	width:23%;
	border: thin solid #066;
	height: 500px;
	margin-top: 4px;
	margin-right: 0;
	margin-bottom: 4px;
	margin-left: 12px;
	padding-right: 2px;
}
#col_four_4 {
	padding-left: 2px;
	float: left;
	width:23%;
	border: thin solid #066;
	height: 500px;
	margin-top: 4px;
	margin-right: 0;
	margin-bottom: 4px;
	margin-left: 12px;
	padding-right: 2px;
}
/* ---------- NEWS Three Column CSS ---------- */

/* Note: adding larger margins or padding to columns requires that you decrease the width setting proportionally. If you add padding to the container, the same applies. */ 

#newscol_one_3 {
	margin: 0;
	float: left;
	width:30%;
	height: 475px;
	padding: 0 2px 0 2px;
	border: thin solid #066;
}
#newscol_two_3 {
	float: left;
	width:30%;
	height: 475px;
	border: thin solid #066;
	padding: 0 2px 0 2px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 12px;
}
#newscol_three_3 {
	float: right;
	width:31%;
	height: 475px;
	border: thin solid #066;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 12px;
	padding-top: 0;
	padding-right: 2px;
	padding-bottom: 0;
	padding-left: 2px;
}
#newsbox_archive {
	float: left;
	width:150px;
	background-color: #FFF;
	height: 20px;
	text-align: left;
	position: relative;
	left: 230px;
	top: 445px;
	right: auto;
	bottom: auto;
	margin: auto;
	padding: 2px;
	border: thin solid #000;
}
#highlightscol_one_2 {
	margin: 0 6 0 0px;
	float: left;
	width:48%;
	height: 300px;
	padding: 0 2px 0 2px;
	border: thin solid #066;
}
#highlightscol_two_2 {
	margin: 0 0 0 6px; /* Puts a 12 pixel space between columns (left side) */
	float: left;
	width:48%;
	height: 300px;
	padding: 0 2px 0 2px;
	border: thin solid #066;
}
/* ---------- Side column menu styles ---------- */

.styledmenu {
	width: 100%; /*width of menu*/
	background-color: #FFF;
}
.styledmenu .headerbar {
	color: #036; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 2px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase;
	padding: 7px 0 7px 8px; /*31px is left indentation of header text*/
	background-color: #CCC;
	background-image: url(images/styled-menu-aqua-bg.png);
	background-repeat: no-repeat;
	background-position: left top;
	font-size: 16px;
	font-weight: bold;
}
.styledmenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0; /*bottom spacing between each UL and rest of content*/
}
.styledmenu ul li {
	padding-bottom: 2px; /*bottom spacing between menu items*/
	margin: 0px;
}
.styledmenu ul li a {
	color: black;
	display: block;
	padding: 5px 0;
	line-height: 17px;
	padding-left: 8px; /*link text is indented 8px*/
	text-decoration: none;
	background-color: #CCC;
}
.styledmenu ul li a:visited {
	color: black;
}
.styledmenu ul li a:hover { /*hover state CSS*/
	color: white;
	background: #5A7EB4;
	text-decoration: none;
}
.simplemenu {
	width: 100%; /*width of menu*/
}
.simplemenu .headerbar {
	font: bold 13px Verdana;
	color: #000; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 0px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase;
	padding: 7px 0 7px 0px; /*31px is left indentation of header text*/
}
.simplemenu ul {
	list-style-type: none;
	padding: 0 0 20px; /*bottom spacing between each UL and rest of content*/
	margin: 0;
}
.simplemenu ul li {
	margin: 0px;
	padding-bottom: 2px;
}
.simplemenu ul li a {
	font: normal 12px Arial;
	color: black;
	background: #FFF;
	display: block;
	padding: 4px 0 4px 5px;
	line-height: 17px; /*link text is indented 8px*/
	text-decoration: none;
	border-bottom: 1px solid #E2E9F1;
}
.simplemenu ul li a:visited {
	color: black;
}
.simplemenu ul li a:hover { /*hover state CSS*/
	color: #03C;
	text-decoration: none;
}
.groupmenu {
	width: 100%; /*width of menu*/
	background-color: #FFF;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-bottom-color: #FFF;
	border-left-color: #FFF;
	padding-top: 0px;
	padding-right: 0;
	padding-left: 0px;
	padding-bottom: 10px;
}
.groupmenu .headerbar {
	color: #036; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 0px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase; /*31px is left indentation of header text*/
	background-color: #FFF;
	background-image: url(images/styled-menu-aqua-bg.png);
	background-repeat: no-repeat;
	background-position: left top;
	font-family: Verdana;
	font-size: 14px;
	font-weight: bold;
	padding-top: 16px;
	padding-right: 0;
	padding-bottom: 7px;
	padding-left: 5px;
}
.groupmenu .boldtitle {
	font-size: 1.2em;
	margin: .5em 0em;
	font-weight: bold;
	color: #5275AA;
}
.groupmenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0; /*bottom spacing between each UL and rest of content*/
}
.groupmenu ul li {
	height: 50px;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	border: thin solid #069;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 2px;
	margin-left: 0px;
}
.groupmenu ul li a {
	color: black;
	padding-left: 0px; /*link text is indented 8px*/
	text-decoration: none;
	background-color: #FFF;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
}
.groupmenu ul li a:visited {
	color: #009;
}
.groupmenu ul li a:hover { /*hover state CSS*/
	color: #03C;
	text-decoration: underline;
}
/* ---------- Common styles shared between both left and right columns ---------- */

.sidebarlt {
	padding: 6px;
	border: 1px solid #9CB1D1;
	background-color: #E2E9F1;
	background-image: url(images/sidebarlt-bg.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
.sidebargray {
	background-color: #CCC;
}
.sidebarltaqua {
	background-color: #EDF4F4;
	padding-bottom: 5px;
}
.sidebarltaqua img {
	padding-top: 0px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 0px;
}
.sidebaraqua {
	background-color: #FFF;
	padding-top: 7px;
}
.sidebaraquanarrow {
	background-color: #FFF;
	padding-top: 7px;
	height: 30px;
}
.sidebaraqua .headerbar {
	color: #036; /*last 2 values are the x and y coordinates of bullet image*/
	margin-bottom: 2px; /*bottom spacing between header and rest of content*/
	margin-top:0px;
	text-transform: uppercase; /*31px is left indentation of header text*/
	background-color: #FFF;
	background-image: url(images/styled-menu-aqua-bg.png);
	background-repeat: no-repeat;
	background-position: left top;
	font-family: Verdana;
	font-size: 14px;
	font-weight: bold;
	padding-top: 16px;
	padding-right: 0;
	padding-bottom: 7px;
	padding-left: 5px;
	text-align: left;
}
.sidebaraqua a {
	color: black;
	padding: 5px 0;
	line-height: 17px;
	padding-left: 2px; /*link text is indented 8px*/
}
.sidebaraqua a:visited {
	color: black;
}
.sidebaraqua a:hover { /*hover state CSS*/
	color: #00C;
	text-decoration: none;
}
.sidebaraqua ul {
	list-style-type: none;
	padding: 0 0 0 5px; /*bottom spacing between each UL and rest of content*/
	margin: 4px;
}
.sidebaraqua ul li {
	margin: 0px;
	padding-bottom: 2px;
}
.sidebardk {
	color: #FFFFFF;
	border: 1px solid #000;
	background-color: #3B8989;
	margin-right: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	width: 100%;
	font-weight: bold;
}
.sidebardk a, .sidebardk a:hover, .sidebardk a:visited, sidebardk a:active {
	color: #FFFFFF;
	text-decoration:underline;
}
.caption-image {
	font-size: x-small;
	font-style: italic;
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
}
.table-smalltext {
	font-size: x-small;
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
}
