/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
background-image:url(pngs/beigebg.png);
  background-color: #666;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #333;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
  color: #333;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #666;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #666;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #666;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #666;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 70em;
  border:#8b0d0e inset thick;
    border-right:#8b0d0e solid thick;
    border-bottom:#8b0d0e solid thick;
}
#outerWrapper #header {
/*background-image:url(pngs/header_bg.png);
background-repeat:repeat-x;*/
background-image:url(pngs/3booklogo.jpg);
background-repeat:no-repeat;
  background-color: #8b0d0e;
  border-bottom: solid 1px #666; /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  padding: 10px 10px 0px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  height:150px;
}
/*housekeeper menu styles begin here*/
#housekeeper{
text-align:right;
border-bottom:#666 solid 1px;
background:#8b0d0e;

}
#housekeeper ul{
background-color:#8b0d0e;
height:20px;
margin-top:-15px;
margin-bottom:0px;
padding:0;
padding-top:4px;
padding-right:10px;
}
#housekeeper li{
display:inline;

}

#housekeeper a:link{
padding-left:20px;
color:#e5e1c8;
}
#housekeeper a:visited,#housekeeper a:focus{
color:#c9bb8e;
padding-left:20px;

}
#housekeeper a:hover{
padding-left:20px;

color:#D8CFBE;
}
 
/*housekeeper menu styles end here*/
#outerWrapper #contentWrapper #leftColumn1 {
  background-image:url(pngs/beige_bg.png);
  background-repeat:repeat-x;
  float: left;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 14em;
min-height:350px;  
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
background-color:#fff;
background-image:url(pngs/eggshell_bg.png);
background-repeat:repeat-x;
  margin: 0 0 0 15em; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  
}

#outerWrapper #contentWrapper #content table{
border-collapse:collapse;
margin-top:10px;
}

 #outerWrapper #contentWrapper #content table td, #outerWrapper #contentWrapper #content table th{
border:solid thin #000;

}
.rowhead td{
background:url(pngs/footer_bg.png);padding:3px;
}
td.booktitle, td.author, td.description{
padding:3px;
}
td.booktitle{
font-weight:600;
}
.rowhead{
 color:#8b0d0e; font-weight:600;
}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
div#content.tech li{
line-height:1.3em;
margin-top:1.3em;
}
#outerWrapper #footer {
  background-color: #ddd;
  background-image:url(pngs/footer_bg.png);
  background-repeat:repeat-x;
  border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
  padding: 5px 10px 5px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  font-size:.9em;
  text-align:center;
}
/*vertical menu styles begin here*/

.menu1{
background-image:url(images/menudiv1bg.gif);
margin-left:5px;
padding-left:0px;
padding-top:2px;
padding-bottom: 2px;
display:block;
text-decoration: none;
color: #333;
height: 20px;
}
.submenu{
background-image: url(images/submenu.gif);
display: block;
height: 19px;
margin-left: 8px;
padding-top: 2px;
padding-left: 7px;
color: #666;
}

.hide{
display: none;
}

/*I'll also create the style that will show the hidden div tags (submenus):*/

.show{
display: block;
}
/*menu styles end*/

div.shorthr {
  height: 15px;
  background: url(pngs/short_hr.gif) no-repeat scroll center;
}
div.shorthr hr {
  display: none;
}
div.longhr {
  height: 15px;
  background:  url(pngs/long_hr.gif) no-repeat scroll center;
}
div.longhr hr {
  display: none;
}
.center{
text-align:center;
}

.linkedin img{
border:none;
}
#outerWrapper #contentWrapper #content table
table#books_main{
width:450px;
border:none;
margin-left:auto;
margin-right:auto;
}
#outerWrapper #contentWrapper #content table
table#books_main td{
border:none;
}
td.booktitle a:link,td.booktitle a:visited{
text-decoration:underline;
}