/*

How things are organized:

 * Selectors are grouped based on the tag they finally effect.

 * Within the group, they are listed in order of specificity, least
   specific first.  CSS: The Definitive guide has the rules for
   determining specificity.  Learn them. :)

How selectors should be written:

 * No bare-class selectors; there should always be a tag associated
   with them.

 * No commas in selectors. The risks of duplication are outweighted by
   the benefits of being able to know where to look to find a
   selector.

*/

/* a */
a {
  border: none;
  color: blue;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

a.add {
  float: left;
  font-family: Verdana, Ariel, sans-serif;
  font-style: italic;
  font-weight: bold;
  text-align: right;
  width: 25em;
}

div.navigation a {
  border-bottom: 3px solid #FF9B01;
  color: #666;
  font-size: 1.2em;
  font-variant: small-caps;
  font-weight: bold;
}

div.navigation a:hover {
  color:#FF9B01;
}

div.navigation ul li.current a {
  border-width: 0px;
  color: #FF9B01;
}

table.list td.action a:after {
  content: "]";
}

table.list td.action a:before {
  content: "[";
}

div#assist a {
  font-size: .9em;
  font-weight: bold;
}

div#manage a {
  color: white;
  font-size: .9em;
  font-weight: bold;
}

div#topics ul li a {
  display: block;
}

/* body */
body {
  font: 14px Georgia, "Times New Roman", Times, serif;
  margin: 0;
  padding: 0;
}

/* caption */
caption {
  font: .7em Verdana, Arial, Helvetica, sans-serif;
  margin: 15px 0 0 2px;
  padding: 0;
  text-align: left;
}

/* dd */
dd {
  font-size: 13px;
  margin: 0;
}

/* div */
div.email_line {
  border: none;
  clear: left;
  float: left;
  margin: 0;
  padding: 4px 0 0 0;
  width: 4.5em;
}

div#pages {
  border: 2px solid black;
}

/* formblock, a visual separation for form elements */
div.formblock {
  border-bottom: 1px solid #aaa;
  padding: 0 5px 10px 0;
  white-space: nowrap;
}

div.navigation {
  clear: left;
  float: left;
}

div.notifier {
  border: 2px solid #007;
  position: fixed;
  top: 40%;
  left: 40%;
  background-color: #fff;
  color: #007;
  font-weight: bold;
  width: 10em;
  padding: 2ex;
  margin-left: 100px;
  z-index: 20;
}

div#assist {
  float: right;
  margin: .5em 3em .5em 1em;
}

div#breadcrumbs {
  float: left;
  font-size: .9em;
  font-weight: bold;
  margin: .5em 1em .5em 3em;
}

div#captcha {
  display: inline;
}

div#content {
  border-top: 2px solid #aaa;
  clear: both;
  margin: 0 3em;
  overflow: auto;
  padding: 0;
}

div#copyright {
  font-size: .8em;
  width: 100%;
}

div#footer {
  clear: both;
  margin: 2em 0 0 0;
  text-align: center;
  width: 100%;
}

div#login {
  float: right;
  font-size: .9em;
  margin: 0 0 1em 2em;
  width: 25em;
}

div#manage {
  float: right;
  margin-right: 3em;
  margin-top: -69px;
}

div#message_banner {
  margin: 0 15em 0 20em;
}

div#next_page {
  font-size: 1.1em;
  font-style: italic;
  font-weight: bold;
  padding: .5em 0;
}

div#terms {
  margin: 0 0 0 15em;
  height: 13.75em;
  overflow-Y: scroll;
  width: 60em;
}

div#top {
  background: url('/static/antespam.com/logo.gif') top left no-repeat #FF9B01;
  border-bottom: 1px solid #FF9B01;
  height: 69px;
  width: 100%;
}

div#topics {
  clear: left;
  float: left;
  font-size: 1.5em;
}

/* dl */
dl {
  margin: 0 1em 0 2em;
}

/* dt */
dt {
  font-weight: bold;
  margin: 1em 0 1em 0;
}

/* fieldset */
fieldset {
  border: none;
  clear: left;
  padding: 4px;
  margin: 1em 0;
}

fieldset.with_border, div#quote_page {
  border: 1px solid black;
  padding: 4px;
  margin: 1em 0;
}

fieldset.with_border table {
  padding: 0;
  margin: 0 0 1em 0;
}

div#login fieldset {
  border: 1px solid #FF9B01;
  padding: 0 1em 0 0;
  margin: 0;
}

/* form */
div#address_lists form {
  display: block;
  margin: 2px;
  padding: 0;
}

div#content form {
  display: inline;
}

div#pages form {
  display: block;
}

/* h1 */
h1#title {
  clear: left;
  float: left;
  font-family: Verdana, Ariel, sans-serif;
  font-size: 2em;
  font-style: italic;
  font-weight: normal;
  margin: 1em 0 .5em 1.5em;
  padding: 0;
}

/* h3 */
h3 {
  clear: left;
  font-family: Verdana, Ariel, sans-serif;
  font-style: italic;
  margin: 0 .5em 0 .5em;
  padding: 0;
}

/* h4 */
h4 {
  clear: left;
  margin-bottom: 0;
}

/* html */
html {
  margin: 0;
  padding: 0;
}

/* img */
img {
  margin: 0;
  padding: 0;
}

img#captcha {
  margin: 11px 0 0 4px;
  padding: 0;
}

/* input */
fieldset input {
  display: block;
  float: left;
}

table input {
  margin: 2px 4px;
}

ul.checklist input {
  display: inline;
  float: none;
}

table.list * td.action input {
  display: inline;
  float: none;
  margin: 0;
}

div#address_lists input {
  margin: 2px 8px -2px 0;
  padding: 0;
}

div#login input {
  clear: none;
  font-size: 1.1em;
  margin: 0;
}

table#corpus input {
  padding: 0 1px 0 1px;
}

table#sideline input {
  padding: 0 1px 0 1px;
}

table#corpus tbody input {
  margin: 0;
}

table#sideline tbody input {
  margin: 0;
}

input[type="checkbox"], input[type="radio"] {
  margin-top: 10px;
}

input[type="text"] {
  margin-top: 5px;
}

select {
  margin-top: 5px;
}

input[type="submit"] {
  clear: both;
  margin: 10px 6px 0 10px;
}

fieldset input[type="submit"] {
  margin-left: 20em;
}

div#login input {
  margin-top: 8px;
}

div#login input[type="submit"] {
  float: right;
  font-size: 1em;
}

fieldset input.error {
  background-color: #C56566;
}

fieldset input.inline {
  display: inline;
  float: none;
  margin: 8px 4px 0 4px;
}

/* label */
fieldset label {
  clear: left;
  display: block;
  float: left;
  overflow: auto;
  padding: .5em;
  text-align: right;
  width: 25em;
}

fieldset label.required:before {
  content: "* ";
  color: red;
}

div#login label {
  display: block;
  float: left;
  margin-right: 1em;
  font-size: 1.25em;
  text-align: right;
  width: 6em;
}

/* legend */
fieldset legend {
  font-family: Verdana, Ariel, sans-serif;
  font-size: 1.15em;
  font-style: italic;
  font-weight: bold;
  margin: 0 0 1em 0;
  padding: 0;
}

/* li */
fieldset ol li {
  clear: both;
  white-space: nowrap;
}

ul.checklist li {
  display: inline;
  font-size: .8em;
  padding-right: 2em;
}

/* no bullets ONLY for lists inside form fieldsets */
fieldset ul li {
  clear: both;
  list-style-type: none;
}

div.formblock ul li {
  display: inline;
  margin: 0 1em;
}

div.navigation ul li {
  border-left: 1px solid #FF9B01;
  border-right: 1px solid #FF9B01;
  border-top: 3px solid #FF9B01;
  -khtml-border-radius: .5em .5em 0 0;
  -moz-border-radius: .5em .5em 0 0;
  -webkit-border-top-left-radius:  .5em;
  -webkit-border-top-right-radius:  .5em;
  border-radius: .5em .5em 0 0;
  float: left;
  margin: 0 .5em .25em 0;
  padding: 0 .25em;
  white-space: nowrap;
}

div#assist ul li {
  display: inline;
  margin-left: 1em;
}

div#breadcrumbs ul li {
  display: inline;
  list-style-type: none;
}

div#login ul li {
  padding: .1em;
}

ul#tabs li {
  border: 1px solid;
  display: inline;
  list-style-type: none;
  padding: .25em;
  white-space: nowrap;
}

div#topics ul li {
  border-bottom: 1px #FF9B01 solid;
  padding: .25em;
}

li.view_only {
  color: #999;
}

/* Removed due to IE6 incompatibilities
div#breadcrumbs li:before {
    content: "\0020 \0020 \0020 \00BB \0020";
}

div#breadcrumbs li.first:before {
    content: "You are currently administering ";
}

div#breadcrumbs li.unlogged:before {
    content: "";
}
*/

/* special class to hide products that are not ready to sell */
.NotYetAvail {
  display: none;
}


/* ol */
ol {
  margin: 1.5em;
  padding: 0;
}

fieldset ol {
  list-style-type: none;
  margin: 0 1.5em;
  padding: 0;
  white-space: nowrap;
}

ol.error {
  color: red;
  font-weight: bold;
  list-style-type: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

/* p */
p.warning {
  color: #000066;
  border-color: #6699ff;
  background-color: #ffff99;
}
p#quote_header {
  font-weight: bold;
  font-size: 1.2em;
}

/* pre */
pre {
  border: none;
  float: left;
  margin: 0;
  padding: 6px 0 0 6px;
}

/* span */
span.bold_label {
  font-weight: bold;
  vertical-align: -8px;
}

span.checklist {
  font-size: .8em;
}

span.explanation {
  display: block;
  text-align: left;
  font: .7em Verdana, Arial, Helvetica, sans-serif;
}

label span.explanation {
  display: block;
  text-align: right;
  white-space: normal;
  font: .7em Verdana, Arial, Helvetica, sans-serif;
}

span.warning {
	color: #000066;
	border-color: #6699ff;
	background-color: #ffff99;
}

div#topics ul li a span {
  display: block;
  font-size: .5em;
  text-align: left;
}

/* strong */
strong {
  font-weight: bold;
}

/* table */
table {
  clear:left;
  margin: 8px 0 0 0;
  padding: 0;
}

div#captcha table {
  clear: none;
}

table.address {
  width: 85em;
}

table.domain {
  width: 101em;
}

table.list {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 50em;
}

div#pages table {
  border-collapse: collapse;
  font-size: 12px;
  margin: 0;
  width: 100%;
}

table#corpus {
  font-size: 13px;
  margin: 0 0 15px 0;
  table-layout: fixed;
}

table#domains {
  border: 1px solid gray;
  font: smaller Verdana, "Andale Mono", Courier, "Courier New", monospace;
}

table#invoice {
  font-size: 13px;
}

table#sideline {
  font-size: 13px;
  margin: 0 0 15px 0;
  table-layout: fixed;
}

table#stats {
  background-color: #FFFFFF;
  border: 1px solid #FF9B01;
  border-collapse: collapse;
  clear: right;
  float: right;
  font-size: .75em;
  font-weight: bold;
  margin: 0 4em 0 0;
  padding: 0;
  text-align: right;
}

/* td */
td {
  border: none;
  padding: 0 8px;
}

.column_right {
	text-align: left;
}

td.column_left {
  text-align: right;
}

td.column_center {
  text-align: center;
}

table.list td {
  margin: 0;
  padding: .1em .25em;
}

div#pages td {
  padding: 5px;
}

table#corpus td {
  overflow: hidden;
  white-space: nowrap;
  padding: 0 1px 0 0;
}

table#domains td {
  border-bottom: 1px solid #DDD;
  font: smaller Verdana, "Andale Mono", Courier, "Courier New", monospace;
  padding: 0 0.5em;
  text-align: right;
  white-space: nowrap;
}

table#domains tr.totals td {
  border-bottom: 1px solid gray;
  font-weight: bold;
}

table#sideline td {
  overflow: hidden;
  white-space: nowrap;
  padding: 0 1px 0 0;
}

table.list * td.action {
  text-align: center;
  width: 5em;
}

table.list * td.indent {
  padding-left: 2em;
}

table#corpus td.time {
  padding: 0 8px 0 0;
  text-align: right;
}

table#corpus td.buttons {
  padding: 0 0 0 4px;
  text-align: left;
}

table#domains td.now {
  background: #CEC;
  border-bottom-color: white;
  font-weight: bold;
  font-style: italic;
}

table#domains td.start {
  background: #EEE;
}

table#sideline td.size {
  padding: 0 8px 0 0;
  text-align: right;
}

table#sideline td.time {
  padding: 0 8px 0 0;
  text-align: right;
}

table#sideline td.buttons {
  padding: 0 0 0 4px;
  text-align: left;
}

table#stats td.left {
  text-align: left;
}

/* textarea */
textarea {
  border-top: 2px solid #ddd;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  border-left: 2px solid #ddd;
}

fieldset textarea {
  display: block;
  float: left;
  margin: 8px 4px 0 4px;
}

/* tfoot */
tfoot {
  background-color: #ddd;
}

/* th */
th.sort {
  cursor: pointer;
}

div#pages th {
  text-align: left;
}

table#corpus th {
  overflow: hidden;
  white-space: nowrap;
  padding: 0 1px 0 0;
}

table#domains th {
  border-bottom: 1px solid #DDD;
  border-right: 1px solid gray;
  padding: 0 0.5em;
  text-align: right;
  white-space: nowrap;
}

table#domains thead th {
  border: 1px solid gray;
  border-width: 0 1px 1px 0;
  vertical-align: bottom;
  white-space: normal;
}

table#sideline th {
  overflow: hidden;
  white-space: nowrap;
  padding: 0 1px 0 0;
}

table#stats th {
  text-align: center;
}

table#corpus th.ascending {
  background-image: url(/static/images/up.png);
  background-repeat: no-repeat;
}

table#corpus th.descending {
  background-image: url(/static/images/down.png);
  background-repeat: no-repeat;
}

table#corpus th.created {
  width: 6em;
}

table#corpus th.domain {
  width: 11em;
}

table#corpus th.form {
  padding: 0 8px 0 4px;
  text-align: left;
  width: 7.7em;
}

table#corpus th.recipient {
  width: 16em;
}

table#corpus th.sender {
  width: 11em;
}

table#corpus th.subject {
  width: 42em;
}

table#domains th.column_center {
  text-align: center;
}

table#sideline th.ascending {
  background-image: url(/static/images/up.png);
  background-repeat: no-repeat;
}

table#sideline th.descending {
  background-image: url(/static/images/down.png);
  background-repeat: no-repeat;
}

table#sideline th.created {
  width: 5em;
}

table#sideline th.domain {
  width: 10em;
}

table#sideline th.form {
  padding: 0 8px 0 4px;
  text-align: left;
  width: 7.7em;
}

table#sideline th.reason {
  width: 15em;
}

table#sideline th.recipient {
  width: 16em;
}

table#sideline th.sender {
  width: 10em;
}

table#sideline th.subject {
  width: 30em;
}

table#sideline th.size {
  width: 5em;
}

/* thead */
thead {
  background-color: #ddd;
}

table.list thead {
  background-color: #FFCD80;
}

table#stats thead {
  background-color: #FFCD80;
}

/* tr */
table#sideline * tr.seen {
  background-color: #FFCD80;
}

table.list tr.odd {
  background-color: #FFE6C0;
}

div#pages tbody {
  border: 2px solid black;
}

div#pages tbody.current {
  background-color: #ddd;
  border: 2px solid yellow;
}

div#pages tbody.ham {
  background-color: #afa;
}

div#pages tbody.spam {
  background-color: #faa;
}

div#pages tr.nowrap {
  white-space: nowrap;
}

div#pages tr.wrap {
  white-space: wrap;
}

table#sideline tbody tr:hover {
  background-color: #FFE6C0;
}

/* ul */
ul {
  margin: 1em;
  padding: 0;
}

ul.checklist {
  float: left;
}

ul#tabs {
  margin: 1em 0 .25em 0;
}

fieldset ul {
  margin: 0;
  padding: 0;
}

div.formblock ul {
  margin: 0.5em 0 0 0;
}

div.navigation ul {
  float: left;
  margin: 0;
  padding: 0 0 0 3em;
  list-style-type: none;
}

div#assist ul {
  float: right;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

div#breadcrumbs ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

div#login ul {
  clear: both;
  list-style-type: none;
  margin: 0;
  padding: 1em;
}

div#manage ul {
  float: right;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

div#topics ul {
  margin: 1em 3em;
  padding: 0;
  list-style-type: url(favicon.ico);
}

div#login form ul {
  float: left;
  margin: 0;
  padding: 0;
}

/* Modalbox bits */
#MB_overlay {
	position: absolute;
	margin: auto;
	top: 0;	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	border: 0;
	background-color: #000!important;
}
#MB_overlay[id] { position: fixed; }

#MB_window {
	position: absolute;
	top: 0;
	border: 0 solid;
	text-align: left;
	z-index: 10000;
}
#MB_window[id] { position: fixed !important; }

#MB_frame {
	position: relative;
	background-color: #EFEFEF;
	height: 100%;
}

#MB_header {
	margin: 0;
	padding: 0;
}

#MB_content {
	position: relative;
	padding: 6px .75em;
	overflow: auto;
}

#MB_caption {
	font: bold 100% "Lucida Grande", Arial, sans-serif;
	text-shadow: #FFF 0 1px 0;
	padding: .5em 2em .5em .75em;
	margin: 0;
	text-align: left;
}

#MB_close {
	display: block;
	position: absolute;
	right: 5px;
	top: 4px;
	padding: 2px 3px;
	font-weight: bold;
	text-decoration: none;
	font-size: 13px;
}
#MB_close:hover {
	background: transparent;
}

#MB_loading {
	padding: 1.5em;
	text-indent: -10000px;
	background: transparent url(spinner.gif) 50% 0 no-repeat;
}

/* Color scheme */
#MB_window {
	background-color: #EFEFEF;
	color: #000;

	-webkit-box-shadow: 0 0 64px #000;
	-moz-box-shadow: #000 0 0 64px;
	box-shadow: 0 0 64px #000;
}

#MB_frame {
	padding-bottom: 4px;

	-webkit-border-bottom-left-radius: 4px;
	-webkit-border-bottom-right-radius: 4px;

	-moz-border-radius-bottomleft: 4px;
	-moz-border-radius-bottomright: 4px;

	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

#MB_content { border-top: 1px solid #F9F9F9; }

#MB_header {
	background-color: #DDD;
	border-bottom: 1px solid #CCC;
}

#MB_caption { color: #000 }
#MB_close { color: #777 }
#MB_close:hover { color: #000 }


/* Alert message */
.MB_alert {
	margin: 10px 0;
	text-align: center;
}
