@charset "utf-8";
body  {
	/* font: 100% Verdana, Arial, Helvetica, sans-serif; */
	font: 100% Calibri, sans-serif;
	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 */
	color: #000000;
}
.twoColHybLtHdr #container { 
	width: 100%;  /* this will create a container 80% of the browser width */
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
  padding: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
  /*
	background-color: #0073cf;
  */
} 
.twoColHybLtHdr #header { 
	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. */
	margin: 0;
  border-bottom: 3px solid rgb(81, 141,212);
  background-color: white;
} 
.twoColHybLtHdr #headerContent {
  padding: 0;
  margin: 0;
}
.twoColHybLtHdr #headerContent 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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 28px;
	font-weight: bold;
	color: black;
}
#headerContent #headerDate {
  font-size: 18px;
	font-weight: bold;
	color: black;
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
*/
.twoColHybLtHdr #sidebar1 {
	float: left; 
	width: 15em; /* since this element is floated, a width must be given */
	padding: 0; /* top and bottom padding create visual space within this div  */
	margin: 0;
}
/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/

.twoColHybLtHdr #mainContent { 
	margin: 0 0 0 15em; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
  /*
	border: 3px solid rgb(81, 141,212);
	border-width: 3px 0 0 3px;
  */
	padding: 18px;
} 
.twoColHybLtHdr #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	margin: 0 0 0 15em;
	vertical-align: middle;
  /*
	background-color: #024980;
	color: white;
  */
  border-top: 3px solid rgb(81, 141,212);
} 
.twoColHybLtHdr #footer p {
  text-align: center;
  font-size: 10pt;
  margin: 0;
	padding: 3px;
	color: black;
}
.twoColHybLtHdr #footer p a {
	color: black;
}
/* Miscellaneous classes for reuse */
.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;
}
h1 {
  font-size: 120%;
	font-weight: bold;
	color: rgb(192, 80, 77);
}
h2 {
  font-size: 125%;
	font-weight: bold;
}
h3 {
  font-size: 100%;
	font-weight: bold;
	color: rgb(148,54, 52);
}
h4 {
  font-size: 100%;
	font-weight: bold;
}
a, a:visited, a:active {
  text-decoration: none;
	color: rgb(31, 73, 125);
	border-bottom: 1px solid rgb(31, 73, 125);
}
a:hover {
	color: black;
}
a.plain, a.plain:hover, a.plain:active, a.plain:visited {
  text-decoration: none;
	border-style: none;
}
.twoColHybLtHdr #footer a {
  color: black;
  text-decoration: underline;
  border-style: none;
}
#menucolor {
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  width: 15em;
  border-right: 3px solid rgb( 81, 141,212);
  z-index: -1;
  height: 5000px;
  overflow: hidden;
}
#menu {
  width: auto;
  /*
	margin: 0;
	padding: 0;
  border-top: 1px solid black;
  */
  padding: 0 0 0 10px;
}
#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
  border-style: none;
}
#menu li {
	text-decoration: none;
	color: gray;
  font-weight: normal;
  text-align: left;
  text-indent: 1em;
}
#menu li.header {
	font-weight: bold;
	text-align: left;
	font-size: 105%;
  color: rgb(31, 73, 125);
  text-indent: 0;
  margin-top: 12px;
}
#menu li a {
	display: inline;
	text-decoration: none;
  text-align: left;
  border-bottom: 1px solid rgb(31, 73, 125);
}
#menu li a:hover {
	color: black;
}
#menu li.mainnav {
  border-bottom: 1px solid black;
  padding: 2px 0.5em;
}
#menu li.container {
  border-style: none;
}
#menu li div.socialnet {
  text-align: center;
}
#menu li div.socialnet a.plain {
  border-style: none;
  text-decoration: none;
}
#menu li div.socialnet a.plain img{
  border-style: none;
  margin: 4px;
}
#orgComm h2 {
  font-size: 1.1em;
	font-weight: 700;
	padding: 0 0 0 3px;
	margin: 10px 0 3px 0;
}
.important {
  padding: 0.5em;
  border: 2px solid rgb(81, 141,212);
  background: rgb(198,251,255);
}
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.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;
}
p.FinePrint {
    font-size: smaller;
}
.red {
  color: red;
}
div #progressbar table {
  border-width: 0;
  border-collapse: separate;
}
div #progressbar td {
 border: 1px solid gray;
}
div #progressbar td.none {
 border-width: 0;
}
div #progressbar td.selected {
 background-color: #fff2d1;
 font-weight: bolder;
 border: 1px solid black;
}
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: white;
  font-size: larger;
  font-weight: bold;
}
td.timecell {
  color: black;
  background-color: inherit;
  text-indent: 0.5cm;
  font-weight: bold;
}
#home2col {
  border-collapse: separate;
  border-style: none;
}
p {
  text-align: justify;
}
.alert {
  font-size: x-small;
  color: red;
  padding-left: 6px;
}
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;
}
#bridgeImage {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
p#headerText {
  font-size: 16pt;
  color: rgb(31, 73, 125);
  font-weight: bold;
  text-align: center;
  margin: 5px;
}
table.importantDates {
 border-style: none;
}
table.importantDates th {
  font-weight: bolder;
  color: rgb(148, 54, 52);
  border-style: none;
  font-size: 100%;
}
table.importantDates td {
  padding: 0 5px;
}
#sidebar1 #logoBlock {
  margin: 0;
  padding: 5px;
  text-align: center;
  font-size: 18pt;
  font-weight: bold;
}
div.logo img {
  padding: 6px;
}
table.AcceptanceLetterInfoTable {
  border: 2px solid black;
  border-collapse: collapse;
  margin: 1em;
}
table.AcceptanceLetterInfoTable td {
  border: 1px solid black;
  padding: 4px;
}
table.RegMemberStatus {
  border: 2px solid black;
  border-collapse: collapse;
  margin: 1em 0;
}
table.RegMemberStatus td {
  border: 1px solid gray;
  padding: 2px;
}
table#RegistrantInfo {
  border-collapse: collapse;
}
table#RegistrantInfo th {
  font-weight: bold;
  text-align: right;
  border-style: none;
  padding: 3px;
}
table#RegistrantInfo td {
  padding: 3px;
}
table#ExtrasList {
  margin-left: auto;
  margin-right: auto;
  border: 2px solid black;
  border-collapse: collapse;
}
table#ExtrasList th {
  font-weight: bold;
  text-align: center;
  border: 1px solid black;
  padding: 5px;
}
table#ExtrasList td {
  border: 1px solid gray;
  padding: 5px;
}
div.AcceptedPaper {
  margin: 1em 0;
}
div.AcceptedPaper p.Title {
  margin: 0;
  padding: 0;
}
div.AcceptedPaper p.AuthorList {
  margin: 0;
  margin-left: 2em;
  padding: 0;
}
img.Person {
  margin: 0 0.5em 0.5em 0;
  border: 1px solid black;
}
div.plenlist h3 {
  margin-bottom: 0;
}
div.plenlist p {
  margin-top: 0;
}
table.sponsors { border-collapse: separate; border-style: none; margin: 2em auto; padding: 0; }
table.sponsors td { text-align: center; padding: 0 1em; }
table.sponsors th { background-color: white; border-style: none; font-size: 125%; font-weight: bold; text-align: center; }
