@charset "utf-8";
/*
Colors:
Gray/Blue: #abdfc8
           rgb(173,191,200)
Whitish:   #eeeeee
           rgb(238,238,238)
DkTan:     #b3b38a
           rgb(179,179,138)
Blue:      #00679a
           rgb(0,103,154)
Green:     #8ab459
           rgb(138,180,89)
*/
html, body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
}
body {
  background-image: url('../images/VertImages.jpg');
  background-repeat: repeat-y;
  background-position: right 199px; /* Pixel value is equal to height of header div + height of border */
  font: 100% Verdana, Arial, Helvetica, sans-serif;
  color: black;
  background-color: rgb(238,238,238);
}
/* IE7 Fix */
* html #container {
    display: table;
    height: 100%
}
/* Opera Fix */
body:before {
    content: "";
    height: 100%;
    float: left;
    width: 0;
    margin-top: -32767px;
}
/* IE6 Fix */
* html div#body {
    overflow: visible;
}
div#container {
  height: 100%;
  height: auto !important;
  min-height: 100%;
  background-color: blue;
  background: url('../images/MenuBG.png') repeat-y left 975px;
}
div#main {
  overflow: auto;
  padding-bottom: 100px; /* padding height equals height of footer block */
}
div#header {
  height: 200px; /* Defines height of header block */
  background: rgb(173,191,200);
  background-image: url('../images/ICIP2013_Webhead.png');
  background-repeat: no-repeat;
  background-position: top left;
  border-bottom: 1px solid black;
  padding: 0;
}
div#body {
    overflow: hidden;
    height: 100%;
}
div#content {
    margin: 0px 210px 0px 210px; /* left and right margins equal width of sidebar plus padding of ?? */
    padding: 10px;
}
div#left-sidebar {
    width: 200px; /* defines width of left sidebar */
    float: left;
    padding: 0; /* defines buffer inside left sidebar */
}
div#right-sidebar {
    width: 200px; /* defines width of right sidebar */
    float: right;
    padding: 20px; /* defines buffer inside right sidebar */
}
div#footer {
  border-top: 1px solid black;
  position: relative;
  height: 18px; /* defines height of footer block */
  margin-top: -19px; /* set to -(height of footer +1) */
  clear: both;
  padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
  background: black; 
  color: white;
}
div#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 */
  font-size: 10px;
  text-align: center;
}
div#footer a {
  color: white;
}
div#left-sidebar ul#menu {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
}

div#left-sidebar ul#menu li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: rgb(0,103,154);
  color: black;
  font-size: 11px;
  border: 1px solid black;
  border-width: 1px 0 0 0;
}
div#left-sidebar ul#menu li.selected {
  font-weight: bolder;
  color: black;
  background-color: rgb(179,179,138);
}

div#left-sidebar ul#menu li a {
  display: block;
  text-decoration: none;
  color: rgb(238,238,238);
  font-size: 11px;
  padding: 4px 10px;
}
div#left-sidebar ul#menu li.selected a {
  color: black;
}
div#left-sidebar ul#menu li a:hover {
  background-color: rgb(173,191,200);
  color: black;
}
div#left-sidebar ul#menu li ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}
h1 {
  font-size: 22px;
  color: rgb(0,103,154);
}
h2 {
  font-size: 20px;
  color: black;
}
h3 {
  font-size: 18px;
  color: rgb(0,103,154);
}
h4 {
  font-size: 16px;
  color: black;
}
h5 {
  font-size: 14px;
  color: rgb(0,103,154);
}
table.importantDates {
  border: 2px solid black;
  border-collapse: collapse;
  font-size: 80%;
}
table.importantDates th {
  text-align: left;
  padding: 4px 20px;
  background-color: black;
  color: white;
  font-weight: bold;
  font-size: 120%;
}
table.importantDates td {
  border: 1px solid black;
  padding: 4px 10px;
}
.cfpTopic {
  font-weight: bold;
  color: rgb(0,103,154);
}
.OrgTitle {
  font-weight: bolder;
  color: rgb(0,103,154);
  margin: 1em 0;
}
.OrgTitle .OrgPerson {
  margin-left: 1em;
  color: black;
}
.OrgTitle .OrgPerson .OrgName {
}
.OrgTitle .OrgPerson .OrgAffiliation {
  color: black;
  margin-left: 1em;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 0.4em;
}
table.copyrightInfo {
  border-collapse: collapse;
  border: 1px solid black;
}
table.copyrightInfo td {
  border: 1px solid gray;
  padding: 0 0.5em;
}
table.PaperStatusGrid {
  border-collapse: collapse;
  border: 1px solid black;
  width: 100%;
}

table.PaperStatusGrid tr.HeaderRow {
  background-color: black;
  color: white;
}

table.PaperStatusGrid tr.HeaderRow th {
  font-weight: bold;
  text-align: left;
  padding: 2px 10px;
}

table.PaperStatusGrid td {
  padding: 2px 10px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}
table.AcceptanceLetterInfoTable {
  border-collapse: collapse;
  border: 2px solid black;
}
table.AcceptanceLetterInfoTable td {
  border: 1px solid gray;
  padding: 3px 1em;
}
table.AcceptanceLetterInfoTable th {
  border: 1px solid gray;
  color: white;
  background-color: black;
  font-size: 100%;
}
table.HotelList {
  border-collapse: collapse;
  border: 2px solid black;
  font-size: 12px;
}
table.HotelList th {
  border: 1px solid black;
  padding: 2px 0.5em;
}
table.HotelList td {
  border: 1px solid gray;
  padding: 2px 0.5em;
}
table.HotelList td.groupcode {
  color: red;
  font-weight: bold;
}
table.HotelList td.deadline {
  min-width: 8em;
}
table.RegFeeSchedule {
  border-style: solid;
  border-width: 2px;
  border-color: black;
  border-collapse: collapse;
}
table.RegFeeSchedule td, th {
  border-style: solid;
  border-width: 1px;
  border-color: black;
  font-size: smaller;
  padding: 2px 0.5em;
}
table#RegContactInfo {
  border-style: none;
  border-collapse: collapse;
}
table#RegContactInfo td {
  border-style: none;
  font-size: 100%;
}
table#RegContactInfo td.PersonalInfo {
  text-align: right;
}
p.extraDesc {
  font-size: smaller;
  margin-bottom: 0;
  padding: 0;
}
table#ExtrasList {
  border-collapse: collapse;
  border: 2px solid black;
  margin: 0.5em;
  width: 700px;
}
table#ExtrasList th {
  background-color: black;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 2px 6px;
}
table#ExtrasList td {
  background-color: white;
  color: black;
  border: 1px solid gray;
  padding: 2px 6px;
}
table#ExtrasList td.RegExtraDesc {
  font-size: 10pt;
  background-color: #00adee;
}
table#ExtrasList td.RegExtraDesc p {
  margin: 2px 1em;
}
table#ccinfo {
  border-collapse: collapse;
  border-style: none;
}
table#ccinfo th {
}
table#ccinfo td {
  padding: 2px 6px;
  border-style: none;
  vertical-align: middle;
}
table#RegistrantInfo {
  border-collapse: collapse;
  border-style: none;
}
table#RegistrantInfo th {
  font-weight: bold;
  text-align: right;
  border-style: none;
  padding: 3px;
  color: black;
}
table#RegistrantInfo td {
  padding: 3px;
}
.FinePrint {
  font-size: 10pt;
}
table.SessionList {
  border-style: none;
}
table.SessionList tr td {
  border-style: none;
  font-size: small;
}
td.locationcell {
  border-style: solid;
  font-size: large;
  text-align: right;
}
td.daycell {
  color: red;
  background-color: inherit;
  font-size: larger;
  font-weight: bold !important;
  padding-left: 0 !important;
}
td.timecell {
  color: black;
  background-color: inherit;
  padding-left: 1em !important;
  font-weight: bold !important;
}
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#ExhibitorDetail {
  border-collapse: collapse;
}
table#ExhibitorDetail tr {
}
table#ExhibitorDetail td {
  font-size: 11pt;
  vertical-align: top;
  border: 1px solid gray;
  border-width: 1px 0;
  padding: 15px 0;
}
table#ExhibitorDetail td.desc {
  font-size: 10pt;
  border-style: none;
}
table#ExhibitorDetail table.exdetail {
  padding: 10px;
}
table#ExhibitorDetail table.exdetail td {
  border-style: none;
  padding: 0;
}
table#ExhibitorDetail td img {
}
.emph {
  color: #b5121a;
  font-weight: bolder;
}
table#worldTimes {
  border-collapse: collapse;
  border: 1px solid black;
}
table#worldTimes td {
  border-style: none;
  font-size: smaller;
  border: 1px dotted gray;
  padding: 1px 3px;
}
div#newtemplatenote {
  position:fixed;
  width:180px;
  /*height:100px;*/
  top:200px;
  right:0;
  padding:8px;
  background:#FFFFFF;
  border:2px solid red;
  z-index:100;
}
div#newtemplatenote h2 {
  padding: 0;
  margin: 0;
  font-size: 12pt;
  margin-bottom: 5px;
}
div#newtemplatenote ol {
  padding: 0;
  margin: 0;
  margin-left: 1.3em;
  font-size: 10pt;
}
div#newtemplatenote li {
}
div#newtemplatenote li strong {
  color: black;
  background-color: rgb(255,128,128);
}

.prizeTerms p {
  font-size: smaller;
  text-align: justify;
  margin: 1em 3em;
}
#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(../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;
}

