﻿/* powerbrakex-change.com */
/* stylesheet.css */

/* Block all default margins and padding */
* {
    margin: 0;
    padding: 0;
    outline-style:none;
}

/* Add dotted line to IE under acronyms and abbreviations */
acronym, abbr{
  border-bottom:dotted 1px #333;
  cursor:help;
}

body {
    /* Required to center wrapper in old browsers */
    text-align: center; 
    /* The rest is optional, style to taste */
   background-image:url(bluemetal.jpg);
/*  background-color:#CFC8C0; */
    font-family: Verdana, Geneva, Sans-Serif;
}

/* Wrapper sizes the layout */
#wrapper {
    /* Sets width of fixed or elastic layout */
    width: 46em; 
    /* Centers the layout (newer browsers) */
   /* Put 20 px margin above the wrapper and set r and l to auto for centering*/
    margin:20px auto 20px auto;
    /* The rest is optional, style to taste */
    background-color:#8E8A87;
}

/* ---------------------- Start layout division styles ---------------------- */
/* Branding division */
#branding{
    /* Style to taste */
    height: 7.75em; 
    background-color:#8E8A87;
    color:#000;
    text-align:center;
   /* make branding a positioned element but don't move it */
   position:relative;
   border:solid 1px #000;
}

/* Styles h1, h2, and h3 style rules in the branding division */
#branding h1, #branding h2, #branding h3{
  font-family: Charcoal, Impact, sans-serif;
  color:#000;
  font-weight:normal;
  font-style:normal;
/*  font-variant:small-caps; */
  letter-spacing:0.08em;
}

/* Size h1 headings in the branding division */
#branding h1{
  font-size:1.75em;
  font-style:italic;
}

/* Size h2 headings in the branding division */
#branding h2{
  font-size:1.25em;
  color:#B4030D;
}

/* Size h3 headings in the branding division */
#branding h3{
  font-size:1.25em;
  font-style:normal;
  color:#B4030D;
}

/* Size h4 headings in the branding division */
#branding h4{
  font-size:1em;
  font-style:italic;
  color:#fff;
}

/***********Branding division hyperlinks************/

#branding a{
/* Absolutely position links in the branding division */
  position:absolute;
  text-decoration:none;
  color:#000;
  font-size:0.8em;
}

#branding a:link, #branding a:visited;{
/* Unvisited and visited links in branding bar */
  color:#000;
}

#branding a:hover{
/* Hover links in branding bar */
  color:#0f0;
}

#branding a:active{
/* Active link in branding bar */
  color:#1bb498;
}

/* Fixes the mysterious image gap */
#branding img{
  display:block;
}


/************** Navbar division style rules *******************/

#navbar{
  background-color:#aaa;
  /* Left margin must match leftcolumn width */
  margin-left:9.75em;
  background:#aaa url(navbak.jpg) repeat-x center;
  height:1.6em;
  border-left: solid 1px #000;
}

/* Remove bullets from ul in the navbar */
#navbar ul{
  list-style-type:none;
}

/* List items in the navbar */
#navbar li{
  float:left;
/* Required for drop-down menus */
  position:relative;
}

/* Drop-down menu styles */
/* Applies to drop-down menus in navbar */
#navbar li ul{
  position:absolute;
  z-index:100;
  visibility:hidden;
  border:solid 1px #f00;
  border-right: solid 2px #999;
  border-bottom: solid 2px #999;
}

/* Make drop-down visible on navbar hover */
#navbar li:hover ul,
#navbar li a:hover ul{ /* IE6 hack */
  visibility:visible;
  top:1.6em;
  left:0;
}

/* Applies to links on the drop-down menu */
#navbar li:hover ul li a,
#navbar li a:hover ul li a{ /* IE6 hack */
  background:#ccc; /* Removes background image */
  color:#000;
  text-align:left;
  display:block;
  width:10em;
  padding:0 0 0 1em;
  height:auto;
}

/* Hover on drop-down menu links */
#navbar li:hover ul li a:hover,
#navbar li a:hover ul li a:hover{ /* IE6 hack */
  background: #aaa;
  color:#000;
}

/* Applies to navbar links, unvisited and visited */
#navbar a,
#navbar a:link,
#navbar a:visited{
  text-decoration:none;
 font-family:Verdana, Geneva, Arial, Sans-Serif;
  font-size:80%;
  color:#000;
  background:#aaa url(navbak.jpg) repeat-x center;
 /* background-color:#aaa;     use this only for plain styling*/
  display:block;
  height:2em;
  width:7em;
  border-right:solid 1px #ddd;
  text-align:center;
  line-height:2em;
  outline-style:none;
}

/* Navbar hover and active links */
#navbar a:hover,
#navbar a:active,
#navbar li.selected a:link,
#navbar li.selected a:visited{
  background:#ddd url(navhover.jpg) repeat-x center;
  color:red;
 /* background-color:#000;   use this only for plain styling */
}

/* IE6 hack applies to its table drop-down */
#navbar table {
  margin:-1px;
  border-collapse:collapse;
  position:absolute;
  top:0.5em;
  left:0;
  z-index:100;
}

/****************** Left column ******************/
#leftcolumn{
/* Remember, content left margin must match this width (12em) */
    float: left; 
    /* Style to taste */
      width:9.75em;
  /* Center images and text inside this div */
  text-align:center;
}

/* Applies to images in the leftcolumn div */
#leftcolumn img{
  width:80%;
  
}

/* Applies to paragraphs and lists in the leftcolumn division */
#leftcolumn p, #leftcolumn .leftcollist{
  font-family:Tahoma, Verdana, San-Serif;
  font-size:0.9em;
  border:solid 2px #000;
  padding:0.5em;
  width:80%;
  text-align:left;
  margin:1em auto; /* auto centers horizontal text in browsers other than IE */
}

/* Applies to unordered lists in the left column */
#leftcolumn ul{
  margin-left:1.5em;
}

/*********************** Content division *********************/
#content {
    /* Left margin must match leftcolumn width (12em) */
    margin-left:9.75em; 
    /* Optional, style to taste */
    text-align:left;
    padding-bottom: 0;
    padding:20px 40px;
    background-color: #fff;
    color: #000;
    border-left: solid 1px #000;
}

/************** Footer division ***********************/
#footer {
    /* Clear floated column */
    clear:left; 
    /* Optional, style to taste */
    background-color: #CFC8C0;
    color: #000;
    border-top: solid 1px #000;
    min-height: 1.5em;
}

#footer, #footer a{
color:#000;
font-size:small;
text-align:right;
padding:5px;
text-decoration:none;
}

#footer ul{
list-style-type:none;
}

#footer li{
display:inline;
float:left;
}

#footer a:hover, #footer a:active, #footer li.selected a:visited{
color:red;
font-size:small;
text-decoration:none;
}

#footer a:visited, #footer li.selected a:link
color:#000;
font-size:small;
text-decoration:none;
}


/* ---------------------- End layout division styles ---------------------- */

/* ---------------------- Start Content division styles ------------------- */
/* Heading 1 tags in content division */
#content h1 {
    margin-left: 10px;
    font-size: 1.5em;
}

/* Paragraphs in content division */
#content p {
    font-size: 0.85em;
    line-height: 1.5em;
    /*margin: 1em 12px;*/
}



/* Bulleted lists in content division */
#content ul{
    padding:0 0 0 20px;
    font-size: 0.85em;
    font-weight:bold;
    font-style:italic;
    font-variant:small-caps;
    margin: 1em 20px 1em 40px;
}

#content ul li {
   margin-bottom: 0.5em;
   font-size:0.85em;
/*    padding:10px 0 10px 20px;*/
}

#content ol{
    padding:10px 0 10px 40px;
    font-size:0.85em;
    margin:1em 20px 1em 40px;
}

#content p{
  line-height:1.5em;
}

/* Styles h1, h2, and h3 style rules in the content division */
#content h1, #content h2, #content h3{
  font-family: Charcoal, Impact, sans-serif;
  color:#000;
  font-weight:normal;
  font-style:italic;
  font-variant:small-caps;
  letter-spacing:0.08em;
}

/* Size h1 headings in the content division */
#content h1{
  font-size:1.25em;
}

/* Size h2 headings in the content division */
#content h2{
  font-size:1em;
}

/* Size h3 headings in the content division */
#content h3{
  font-size:.75em;
  font-style:normal;
}


/* ---------------------- End Content division styles ------------------- */



/***************Start printer-friendly styles ***************/
@media print{
/* Set wrapper to fill page width */
#wrapper{
  width:100%;
}

/* Hide leftcolumn, navbar, and footer */
#leftcolumn,
#navbar,
#footer{
  display:none;
}

/* Get rid of content div margins and padding. Use a different font for print */
#content{
  margin:0;
  padding:0;
  font-family:'Century Schoolbook', Times, Serif;
  font-size:1em;
}
/* End printer-friendly styles */
}