@charset "utf-8";
@import "/CommonFiles/rotator.css";
body  {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background-color: #ffffff;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
.twoColFixLtHdr #containerouter {
  background-image: url(/images/MenuBG.png);
  background-repeat: repeat-y;
  width: 900px;
  border: 1px solid black;
  border-width: 0 1px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
.twoColFixLtHdr #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: inherit;
  /*
	background-image: url(/images/MenuBG.png);
  */
  background-image: url(/images/ContentBG.png);
	background-repeat: no-repeat;
  background-position: 0px 152px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
  border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header { 
	background: #ffffff; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
  height: 152px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixLtHdr #header p {
  margin: 0;
	font-size: 10px;
	color: white;
	padding: 0;
	background-color: inherit;
	border: 1px solid white;
	border-width: 0 0 1px 0;
}
.twoColFixLtHdr #header a {
  color: white;
	text-decoration: none;
	padding: 0 7px;
}
.twoColFixLtHdr #sidebarcontainer {
  float: left;
}
.twoColFixLtHdr #sidebar1 {
	float: none; /* since this element is floated, a width must be given */
	width: 273px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 0;
	margin: 0;
	background-color: #faedd0;
}
.twoColFixLtHdr #sidebar1 ul#menu {
	margin: 0;
	padding: 0;
}

.twoColFixLtHdr #sidebar1 ul#menu li {
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: #e8a713;
	color: #000000;
	font-size: 11px;
	border: 1px solid #faedd0;
	border-width: 1px 0 0 0;
	background-image: url(/images/deselected.png);
	background-repeat: no-repeat;
	background-position: top right;
}
.twoColFixLtHdr #sidebar1 ul#menu li.selected {
	font-weight: bolder;
  background-color: #e8c77b;
	background-image: url(/images/selected.png);
	background-repeat: no-repeat;
	background-position: top right;
}
.twoColFixLtHdr #sidebar1 ul#menu li a {
  display: block;
	text-decoration: none;
	color: #000000;
	font-size: 11px;
	padding: 4px 10px;
  height: 1%;
}

.twoColFixLtHdr #sidebar1 ul#menu li ul {
	margin: 0;
	padding: 0;
	font-weight: normal;
}

.twoColFixLtHdr #sidebar1 ul#menu li ul li {
	margin: 0;
	padding: 0;
  padding-left: 1em;
	background-color: #ccdcec;
	font-weight: normal;
	color: #000000;
	background-image: url(/images/deselected_l2.png);
  background-position: top right;
	background-repeat: no-repeat;
}
.twoColFixLtHdr #sidebar1 ul#menu li ul li a {
  color: #000000;
  height: 1%;
}

.twoColFixLtHdr #sidebar1 ul#menu li ul li.selected {
	background-color: #99ccff;
	font-weight: normal;
	background-image: url(/images/selected_l2.png);
  background-position: top right;
	background-repeat: no-repeat;
}
.twoColFixLtHdr #sidebar1 ul#menu li ul li.selected a {
  color: #000000;
  font-weight: bolder;
  height: 1%;
}

#sidebar1 #clock1 {
}
#sidebar1 #clock1 table {
	border-style: none;
	color: white;
	font-size: 10px;
	margin: 4px auto;
}
#sidebar1 #clock1 td {
	text-align: center;
	padding: 1px 2px;
	border-style: none;
}
#sidebar1 #clock1 th {
}

#logobar {
  border: 1px solid #faedd0;
  border-width: 1px 0;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 1em 282px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 1em 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent a, #mainContent a:visited, #mainContent a:active {
	color: #0051a0;
	font-weight: bolder;
	text-decoration: none;
}
#mainContent a:hover {
	color: #464749;
}
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000; 
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 2px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #ffffff;
	font-weight: bold;
	font-size: 10px;
}
.twoColFixLtHdr #footer a {
	color: #cbcccd;
	text-decoration: none;
}
.twoColFixLtHdr #footer a:hover {
	color: #97999c;
}
.fltrt { /* 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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#cse {
  background-color: #cbcccd;
	padding: 20px 0;
	border: 1px solid white;
	border-width: 1px 0;
}
#cse table, #cse td {
	border-style: none;
	vertical-align: bottom;
}
div.gsc-control-cse {
	background-color: #cbcccd;
	border-width: 0;
}
#cse td.gsc-input:before {
	content: "Search the site";
	color: #131f59;
	font-size: 11px;
}
#countdown {
	background-image: url(/images/countdownbg.png);
	background-repeat: none;
	height: 37px;
	border: 1px solid white;
	border-width: 1px 0;
}
#mainContent p {
	text-align: justify;
}
h1 {
	color: #0051a0;
	font-size: 20px;
}
h2 {
	color: #464749;
	font-size: 18px;
}
h3 {
	color: #0051a0;
	font-size: 16px;
}
h4 {
	color: #464749;
	font-size: 14px;
}
h5 {
	color: #0051a0;
	font-size: 12px;
}
div.latestnews {
  margin-top: 4em;
  margin-bottom: 2em;
}
div.newsboxcontainer {
	border: 1px solid white;
	border-width: 0 1px 1px 0;
}
div.newsbox {
	background-color: #d4d5d7;
	width: 594px;
	border: 1px solid #0051a0;
	border-width: 0 1px 1px 1px;
	margin: 0 1px 0 1px;
}
div.newsitem {
	padding: 4px;
}
div.newsitem p {
	font-size: 11px;
	padding: 0;
	margin: 10px 0;
}
div.newsdate {
	font-weight: bold;
	font-size: 10px;
	margin-bottom: -10px;
}
div.newssep {
	background-image: url(/images/dots.png);
	background-repeat: no-repeat;
	background-position: center;
}
table {
	border-collapse: collapse;
	border: 1px solid #464749;
}
table td {
	border: 1px solid #464740;
	padding: 2px 4px;
}
table th {
	text-align: left;
  background-color: #0051a0;
	color: white;
	font-weight: bold;
  padding: 2px 4px;
}
table.nb {
  border-collapse: collapse;
  border-style: none;
}
table.nb td {
  border-style: none;
}
table.nb th {
  border-style: none;
}
ul ul > li {
  list-style-type: circle;
}
#orgComm h3 {
  margin-bottom: 0;
}
#orgComm p {
  margin: 0;
  padding: 0;
}
#orgComm .Name {
  font-weight: bold;
  padding-left: 1em;
}
#orgComm .Aff {
  font-style: italic;
  padding-left: 2em;
}
table#specialthemes {
}
table#specialthemes td {
}
table#specialthemes th {
  text-align: left;
  background-color: #0051a0;
}
table#specialthemes h3 {
  margin: 0;
  font-size: 10pt;
  color: white;
}
table#specialthemes p {
  margin: 0;
  font-weight: normal;
}
table#specialthemes ul {
}
table#specialthemes ul li {
}
table#specialthemes ul ul {
}
table#specialthemes ul ul li {
}
img {
  padding: 0;
  margin: 0;
}
div {
  padding: 0;
  margin: 0;
}
.cfpTopic {
  font-weight: bold;
	color: #0051a0;
}
#RA {
}
#RA table {
  border-collapse: collapse;
  border: 2px solid black;
  margin: 2em 0;
  width: 100%;
}
#RA table td {
  border: 1px solid black;
  vertical-align: top;
}
#RA table th {
  color: black;
  background-color: inherit;
  font-weight: bolder;
  border: 1px solid black;
  width: 12em;
  vertical-align: top;
}
#RA .RARevComment {
  margin: 0.5em 2em;
  padding: 4px 4px 4px 14px;
  border: 1px solid gray;
  border-width: 0 0 0 1px;
  font-size: 10pt;
  font-family: unknown, monospace;
  background-color: rgb(230,230,230);
  background-image: url(/web/20130917101255im_/http://icip2012.com/Papers/images/CommentBGText.gif);
  background-repeat: repeat-y;
  background-position: 1px top;
}
#RA th.RARevHead, #RA th.sep{
  text-align: center;
  font-size: larger;
  font-weight: bold;
  color: white;
  background-color: black;
  width: inherit;
}
#RA tr.needinput {
  background-color: rgb(255,255,200);
}
#RA {
}
#RA {
}
#RA table.RAssessment {
  border-collapse: collapse;
  border: 1px solid black;
  font-size: 12px;
  width: 11em;
  margin: 1em auto;
}
#RA table.RAssessment td {
  border: 1px solid black;
  padding: 4px 0;
}
#RA table.RAssessment td.horAcc {
  background-color: black;
  color: white;
  font-weight: bolder;
}
#RA table.RAssessment td.vertJust {
  line-height: 90%;
  background-color: black;
  color: white;
  font-weight: bolder;
}
#RA table.RAssessment td.numLabel {
  background-color: black;
  color: white;
  font-weight: bolder;
}
#RA table.RAssessment td.input {
  height: 12px;
  width: 12px;
}
#RA table#AvgScores {
  width: 100%;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
}
#RA table#AvgScores td {
  border: 1px solid black;
  border-width: 0 1px;
  text-align: center;
  padding: 0 10px;
}
#RA table#RAssessment td.input input {
  background-color: blue;
  color: red;
}
#RA div#awds {
  display: inline;
}
#RA table#assessmentlegend {
  border-collapse: collapse;
  border: 1px solid black;
  font-size: 11px;
}
#RA table#assessmentlegend td {
  border: 1px solid black;
  padding: 1px 2px;
  text-align: left;
  vertical-align: middle;
}
#RA table#assessmentlegend th {
  background-color: black;
  color: white;
  font-weight: bolder;
  font-size: 11px;
  vertical-align: middle;
}
table.Exhibit {
  /*border-collapse: collapse;*/
  border-style: none;
  text-align: center;
}
table.Exhibit td {
  border-style: none;
  padding-top:15px;
  padding-bottom:15px;
  padding-right:10px;
  padding-left:10px;
}
table.Exhibit th {
  border-style: none;
}
p.extraDesc {
  font-size: smaller;
  margin-bottom: 0;
  padding: 0;
}
table.SessionList {
  border-collapse: collapse;
  border-style: none;
}
table.SessionList tr, table.SessionList td {
  border-style: none;
  font-size: 12px !important;
  padding:2.5px;
}
td.locationcell {
  border-style: solid;
  text-align: right;
}
td.daycell {
  color: red;
  background-color: inherit;
  font-weight: bold;
}
td.timecell {
  color: black;
  background-color: inherit;
  text-indent: 0.5cm;
  font-weight: bold;
}
table.SessionDescription {
  border-collapse: collapse;
  border-style: none;
}
table.SessionDescription td {
  border-style: none;
}
table.PaperDescription {
  border-collapse: collapse;
  border-style: none;
}
table.PaperDescription td {
  border-style: none;
}
table.AbstractSearch {
  border-collapse: collapse;
  border-style: none;
}
table.AbstractSearch td {
  border-style: none;
}
table.ResultsForm {
}
table.ResultsForm td {
  border-width: 0;
}
table.ResultsForm table {
  border-style: none;
  border-width: 0;
  width: 200px;
  margin: 0;
  padding: 0;
}
table.ResultsForm table td {
  border-style: none;
  border-width: 0;
  margin: 0;
  padding: 0;
}