/* **********************************************************************
   modules.css
   ********************************************************************** */

/* ======================================================================
   general-purpose classes
   ====================================================================== */

/* ----------------------------------------------------------------------
   text
   ---------------------------------------------------------------------- */

.bold {
  font-weight:bold;
}
.italic {
  font-style:italic;
}
.underline {
  text-decoration:underline;
}

.text-left {
  text-align:left;
}
.text-center {
  text-align:center;
}
.text-right {
  text-align:right;
}

.text-xlarge {
  font-size:22px;
}
.text-large {
  font-size:18px;
}
.text-small {
  font-size:11px;
}
.text-xsmall {
  font-size:10px;
}

/* ----------------------------------------------------------------------
   margins
   ---------------------------------------------------------------------- */

.no-margins {
  margin:0;
}

.margin-bottom-3 {
  margin-bottom:3px;
}
.margin-bottom-6 {
  margin-bottom:6px;
}
.margin-bottom-9 {
  margin-bottom:9px;
}
.margin-bottom-12 {
  margin-bottom:12px;
}

/* ----------------------------------------------------------------------
   padding
   ---------------------------------------------------------------------- */

.no-padding {
  padding:0;
}

/* ----------------------------------------------------------------------
   floating and centering
   ---------------------------------------------------------------------- */

.float-left {
  float:left;
}
.float-right {
  float:right;
}

.block-center {
  display:block;
  margin-left:auto;
  margin-right:auto;
}

/* ----------------------------------------------------------------------
   boxes
   ---------------------------------------------------------------------- */

.island {
  display:block;
  margin-bottom:24px;
}
.box-1 {
  background-color:#eee;
  border:1px solid #ddd;
  padding:10px;
}

/* ----------------------------------------------------------------------
   headings
   ---------------------------------------------------------------------- */

.alfa {
  background:url(/images/heading-bg-1.png) no-repeat left top;
  font-size:28px;
  line-height:1;
  padding:18px 20px 19px 20px;
}
.bravo {
  border-bottom:1px solid #ccc;
}
.charlie {
  background-color:#ddd;
  border:solid #ccc;
  border-width:1px 1px 0 1px;
  margin-bottom:0;
  padding:3px 10px;
}

/* ----------------------------------------------------------------------
   lists
   ---------------------------------------------------------------------- */

.no-bullet {
  list-style-type:none;
}
.no-indent {
  margin-left:0;
  padding-left:0;
}

.bullet-1 {
  list-style-image: url(/images/right-pointing-single-arrow-203759.gif);
}
.bullet-2 {
  list-style-image:url(/images/square-bullet-dddddd-5x5.gif);
}

.spaced-3 li {
  margin-bottom:3px;
}
.spaced-6 li {
  margin-bottom:6px;
}
.spaced-9 li {
  margin-bottom:9px;
}
.spaced-12 li {
  margin-bottom:12px;
}

/* ----------------------------------------------------------------------
   horizontal rules
   ---------------------------------------------------------------------- */

div.hr {
  clear:both;
  margin:9px 0;
  padding:9px 0;
  height:1px;
  background:transparent url(/images/gray-dot.gif) repeat-x center center;
}
div.hr hr {
  display:none;
}

/* ======================================================================
   widgets
   ====================================================================== */

/* ----------------------------------------------------------------------
   tabbed panels
   ---------------------------------------------------------------------- */

.js div.jqt-tabs .tabs {
  list-style:none;
  margin:0;
  padding:0;
  text-align:center;
}
.js div.jqt-tabs .tabs li {
  float:left;
  margin:0 5px 0 0;
  padding:0;
}
.js div.jqt-tabs .tabs a {
  background-color:#eee;
  color:#333;
  display:block;
  float:left;
  font-size:11px;
  font-weight:bold;
  padding:6px 10px 6px 10px;
}
.js div.jqt-tabs .tabs a:focus {
  outline:none;
}
.js div.jqt-tabs .tabs a.current {
  background-color:#fff;
  color:#ae0405;
  text-decoration:underline;
}
.js div.jqt-tabs > .pane,
.js div.jqt-tabs > .panes > .pane {
  background-color:#fff;
  padding:6px 10px;
}

/* ----------------------------------------------------------------------
   accordion menus
   ---------------------------------------------------------------------- */

/* skin 1 */

.js div.jqt-accordion {
  border:solid #ccc;
  border-width:0 1px 1px 1px;
  overflow:hidden;
  visibility:hidden;
}
.js div.jqt-accordion .key {
  background-color:#eee;
  background-image:url(/images/new-arrowright-dkblue.gif);
  background-position:7px 12px;
  background-repeat:no-repeat;
  border-top:1px solid #ccc;
  font-weight:normal;
  margin:0;
  padding:6px 5px 6px 20px;
}
.js div.jqt-accordion .key a {
  color:#333;
}
.js div.jqt-accordion .key a:hover {
  text-decoration:none;
}
.js div.jqt-accordion .current {
  background-color:#fff;
  background-image:url(/images/new-arrowdown-dkblue.gif);
  border-top:1px solid #fcc236;
  font-weight:bold;
}
.js div.jqt-accordion > .pane {
  display:none;
}

/* skin 2 */

.js div.jqt-accordion-2 {
  border:none;
}
.js div.jqt-accordion-2 .key,
.js div.accordion2 .current {
  border-top:1px solid #ddd;
}
.js div.jqt-accordion-2 .key {
  background-color:#fff;
  background-image:url(/images/expand-plus-aaaaaa-10x10.gif);
  background-position:0 10px;
  padding-left:16px;
}
.js div.jqt-accordion-2 .current {
  background-image:url(/images/collapse-minus-aaaaaa-10x10.gif);
}
.js div.jqt-accordion-2 .key:first-child,
.js div.jqt-accordion-2 .current:first-child {
  border-top:none;
}
