
/* GLOBAL */

body, input.text, input.button, textarea {
  font-family: Arial, Tahoma, Helvetica, sans-serif;
}

input.text, input.button, select, textarea {
  font-size: 100%;
}

/* MISC RESET FIXES */

em, i {
  font-weight: inherit;
}

ul, ol {
  margin-right: 0;
}


/* LISTS */

div.list ul, div.list ol,
ul.nav, ol.nav {
  margin: 0;
  padding: 0;
}

div.list li, div.list li,
ul.nav li, ol.nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* HORIZONTAL RULE */

hr {
  height: 1px;
  color: #777;
}

div.hr {
  height: 1px;
  overflow: hidden;
  border-bottom: 1px solid #777;
  margin: 0.8em 0;
}


/* GENERAL-PURPOSE CLASSES */

.hidden {
  display: none !important;
}

.inline {
  display: inline !important;
  float: none !important;
}

.floatright {
  display: inline;
  float: right !important;
}

.floatleft {
  display: inline;
  float: left !important;
}

.clear {
  clear: both !important;
}

.clearleft {
  clear: left !important;
}

.clearright {
  clear: right !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

.center {
  text-align: center !important;
}

.nowrap {
  white-space: nowrap !important;
}

.no_content {
  font-style: italic !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.lowercase {
  text-transform: lowercase !important;
}

.nocase {
  text-transform: default !important;
}

.bold {
  font-weight: 700 !important;
}

.normal {
  font-weight: 400 !important;
}

.small {
  font-size: 86% !important;
}


/* HORIZONTAL + VERTICAL CENTERING */

.center1 {
  text-align: center;
}

.center2 {
  #left: 50%;
}

.center3 {
  margin: 0 auto;
  #left: -50%;
}

.center1, .vcenter1 {
  display: table;
  #display: block;
  #text-align: auto;
  #position: relative;
}

.center2, .vcenter2 {
  display: table-cell;
  vertical-align: middle;
  #position: absolute;
  #top: 50%;
}

.center3, .vcenter3 {
  display: block;
  #position: relative;
  #top: -50%;
}

/*
.center1, .vcenter1 { border: 1px solid #f00 !important; }
.center2, .vcenter2 { border: 1px solid #0f0 !important; }
.center3, .vcenter3 { border: 1px solid #00f !important; }
*/


/* CSS BG IMAGE REPLACEMENT */

.bgfx, .bgfx1, .bgfx2 {
	display: block;
	width: 300px;
	height: 50px;
	padding: 0 !important;
}

a.bgfx, a.bgfx1, a.bgfx2,
a.bgfx:hover, a.bgfx1:hover, a.bgfx2:hover {
  text-decoration: none;
	cursor: pointer;
  cursor: hand;
}

.bgfx {
	position: relative;
	overflow: hidden;
	background: no-repeat 0 0;
}

.bgfx1, .bgfx2 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: no-repeat 0 0;
}


/* "HIT" LINKS */

.hit, .hit .hit1 {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: hand;
  cursor: pointer;
}

.hit {
  z-index: 1000;
}

.hit .hit1 {
  #background: #fff;
  #filter: alpha(opacity=1);
}


/* BG ICONS */

/*
  All icon elements using this fix should have these CSS properties:
    padding-left: 20px;
    background: url(http://quazar.mgsrvr.com/shared/images/icons/fff/ICON.png) no-repeat 0 0.1em;
  
  Use margin if you need more indentation!
*/

.icon {
  background-repeat: no-repeat !important;
  background-position: 2px 50% !important;
  padding-left: 21px !important;
}

.icon-right {
  background-repeat: no-repeat !important;
  background-position: 100% 50% !important;
  padding-right: 21px !important;
}

.icon-ie6-pngfix-hide {
  padding-left: 0 !important;
  background-image: none !important;
}

.icon-ie6-pngfix-hide img.icon-ie6-pngfix-sub {
  display: inline !important;
  margin: -3px 3px -2px 1px;
  width: 16px;
  height: 16px;
}


