@charset "utf-8";

/* ~~~~~~~~~~~~~~~~~ CSS BASE ~~~~~~~~~~~~~~~~~ */

body, h1, h2, h3, h4, p, table, tr, th, td, form {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
}
img { border: none; }

/* ~~~~~~~~~~~~~~~~ MAIN LAYOUT ~~~~~~~~~~~~~~~ */

/* ~~~~~~~~~ PAGE ~~~~~~~~~ */

body {
  background: #808080 url(../common/images/background.jpg);
  font-family: arial, helvetica, serif;
  font-size: 12px;
  color: #000;
}
#page {
  width: 950px;
  margin: 0 auto;
  background-color: #ccc;
  border: 1px solid #000;
}
#page-shadow {
  width: 1000px;
  margin: 0 auto;
}
#page-shadow #top { background: url(../common/images/page-shadow-top.png) no-repeat; }
#page-shadow #sides { background: url(../common/images/page-shadow-sides.png) repeat-y; }
#page-shadow #bottom { background: url(../common/images/page-shadow-bottom.png) no-repeat; }
#top, #bottom { height: 15px; }

#header {
  text-align: left;
  background-color: #fff;
}
#footer {
  padding: 5px 0;
  background: #616161 url(../common/images/check.gif);
  border-top: 1px solid #000;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  color:#ccc;  
}

/* ~~~~ COLUMN LAYOUT ~~~~~ */

#columns { width: 100%; }
#columns #main-column {
  width: 100%;
  vertical-align: top;
}
#columns #side-column { vertical-align: top; }

/* ~~~~~~ PAGE ITEMS ~~~~~~ */

.main-item, .side-item {
  margin: 8px;
  border: 1px solid #000;
  background-color: #fff;
}
.side-item {
  width: 160px;
  margin-left: 0;
}
.main-body { padding: 8px; }
.side-body { padding: 5px; }

.main-item br { line-height: 8px; }
.side-item br { line-height: 5px; }

/* ~~~~~~~~~~~~~~~~~~ MENUS ~~~~~~~~~~~~~~~~~~~ */

/* ~~~~~~~ MENU BAR ~~~~~~~ */

#menu {
  margin: 0;
  padding: 0;
  height: 30px;
  background: #003399 url(../common/images/menu.gif) repeat-x;
  border-top: solid 1px #003399;
  border-bottom: solid 1px #003399;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  list-style: none;
}
#menu li {
  float: left;
  border-right: solid 1px #336699;
}
#menu li:hover, #menu li.hover { background-color: #005cab; }

#menu li a {
  display: block;
  padding: 7px 12px 8px 12px;
  border-right: solid 1px #003399;
  color: #fff;
  text-decoration: none;
}
#menu li a:hover {
  background-color: #005cab;
  color: #f5821f;
}
#menu-shadow {
  height: 8px;
  background: url(../common/images/menu-shadow.gif) repeat-x;
}

/* ~~~~~~~ SUB MENU ~~~~~~~ */

#menu li ul {
  margin: 0;
  padding: 0;
  width: 130px;
  background-color: #005cab;
  border-top: solid 1px #003399;
  border-left: solid 1px #003399;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  list-style: none;
  position: absolute;
  left: -999em;                                       /* Hide Sub-Menu */
}
#menu li:hover ul, #menu li.hover ul { left: auto; }  /* Show Sub-Menu */

#menu li ul li {
  border-bottom: solid 1px #003399;
  border-right: none;
}
#menu li ul li a {
  width: 106px;
  padding: 3px 12px;
}

/* ~~~~~~~ TAB MENU ~~~~~~~ */

#tab-menu {
  margin: 0;
  padding: 0;
  height: 26px;
  border-bottom: 5px solid #990000;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  list-style: none;
}
#tab-menu li {
  float: left;
  border-top: 1px solid #000;
  border-right: 1px solid #7a8295;
}
#tab-menu li a {
  display: block;
  padding: 5px 12px 5px 12px;
  background: #000 url(../common/images/tab-black.gif) repeat-x;
  border-right: 1px solid #000;
  color: #ccc;
  text-decoration: none;
}
#tab-menu li a:hover { color: #fff; }
#tab-menu li a#current {
  background: #990000 url(../common/images/tab-red.gif) repeat-x;
  border-right: 1px solid #990000;
  color: #fff;
}
#tab-menu #right { border-right: none; }
#tab-menu-shadow { border-top: 1px solid #000; }

/* ~~~~~~~~~~~ COMMON PAGE ELEMENTS ~~~~~~~~~~~ */

/* ~~~~~~ TITLE BARS ~~~~~~ */

h2.main-title, h2.alt-title {
  padding: 4px 12px;
  border: 1px solid #000;
  border-bottom: none;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
h2.main-title  { /* To Be Modified */
  background: #a20000 url(../common/images/title-red.gif) repeat-x;
  color: #ffdddd;
}
h2.alt-title  { /* To Be Modified */
  background: #a20000 url(../common/images/title-red.gif) repeat-x;
  color: #ffdddd;
}

/* ~~~~~~ 2-COLUMNS ~~~~~~~ */

.two-columns { width: 100%; }
.two-columns td {
  width: 50%;
  vertical-align: top;
}
.two-columns td.left { padding-right: 4px; }
.two-columns td.right { padding-left: 4px; }

/* ~~~ SHADOW CONTAINER ~~~ */

.content {
  position: relative;
  top: -3px;
  left: -3px;
  padding: 10px;
  background-color: #eee;
  border: 1px solid #000; line-height: 1.5em;
}
.content-shadow {
  margin: 3px 0 0 3px;
  background-color: #808080;
  border: 1px solid #444;
}

/* ~~~~~~~ MESSAGES ~~~~~~~ */

.ok, .info, .help, .warn, .error {
  margin: 5px;
  padding: 5px; padding-left: 30px;
}
.ok { background: url(../common/images/icon-ok.gif)  no-repeat; }
.info { background: url(../common/images/icon-info.gif)  no-repeat; }
.help { background: url(../common/images/icon-help.gif) no-repeat; }
.warn { background: url(../common/images/icon-warn.gif) no-repeat; }
.error { background: url(../common/images/icon-error.gif) no-repeat; }

/* ~~~~~ CONSTRUCTION ~~~~~ */

.construction {
  width: 390px;
  margin: 8px auto;
  padding: 25px 0;
  background: url(../common/images/hammer.jpg) right no-repeat;
  font-size: 14px;
  font-style: italic;
  text-align: centre;
}

/* ******************************************** */
/*                 MAIN CONTENT                 */
/* ******************************************** */

/* ~~~~~~~~~~~~~~~~~~ SALES ~~~~~~~~~~~~~~~~~~~ */

/* ~~~~~~~~ HEADER ~~~~~~~~ */

#sales { }
#sale-header {
  padding: 5px;
  width: 100%;
}
#sale-header p {
  font-size: 18px;
  font-weight: bold;
  font-style: italic;
}
#note { 
  padding-bottom: 10px;
  font-size: 12px;
  font-weight: bold;
  font-style: italic;
  text-align: center;
  text-transform: uppercase;
}

/* ~~~~~~~ FEATURED ~~~~~~~ */

.summary-item { border: 2px solid #000; }
.summary-title {
  padding: 4px 10px;
  border-bottom: 1px solid #000;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.summary-body {
  padding: 8px;
  background: #aaa url(../common/images/gradient-grey.gif) top repeat-x;
}
.summary-body table { width: 100%; }
.summary-body th { 
  width: 80%;
  font-size: 12px;
  text-align: left;
}
.summary-body td { 
  width: 20%; 
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
  color: #a20000;
  text-align: right;
  vertical-align: middle;
}
.summary-body span {
  font-size: 11px;
  font-style: italic;
  color: #646464;
}

/* ~~~~~~~~~~ AD ~~~~~~~~~~ */

iframe { border: none; }

/* ~~~~~~~ LOCATIONS ~~~~~~ */

/* ~~~~~~~~~ TERMS ~~~~~~~~ */

#terms { padding: 10px 80px; }
#terms h2 {
  margin: 20px 0;
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
}
#terms li {
  padding: 3px 10px 3px 0;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */










/* ~~~~~~~~~~~~~~~~~~ LINKS ~~~~~~~~~~~~~~~~~~~ */

/* ~~~~~~~ STANDARD ~~~~~~~ */


/* ~~~~~~~ BUTTONS ~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~~ ADMIN ~~~~~~~~~~~~~~~~~~~ */


/* ~~~~~~~~~~~~~~~~~~~ MISC ~~~~~~~~~~~~~~~~~~~ */
