/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.ctoollive .ctooltabhide {
 display:none;
}

/*--------------------------------------------------
  .ctool = before the ctool interface is set up
  .ctoollive = after the ctool interface is set up
  --------------------------------------------------*/
.ctool {width:300px;
}
.ctoollive { width:300px;
 margin-top:1em;
}

/*--------------------------------------------------
  ul.ctoolnav = the tab navigation list
  li.ctoolactive = the active tab
  --------------------------------------------------*/
ul.ctoolnav
{
 margin:0;
 padding: 3px 0;
 border-bottom: 1px solid #c9c5a6;
 font-weight: bold;
}

ul.ctoolnav li
{
 list-style: none;
 margin: 0;
 display: inline;
 margin:3px;
}

ul.ctoolnav li a
{
 padding: 3px 3px;
 margin-left: 3px;
 border: 1px solid #c9c5a6;
 border-bottom: none;
 background: #ebe9dc;
 text-decoration: none;
}

ul.ctoolnav li a:link { color: #5b5953; }
ul.ctoolnav li a:visited { color: #667; }

ul.ctoolnav li a:hover
{
 color: #000;
 background-color: #bab590;
 border-color: #c9c5a6;
}

ul.ctoolnav li.ctoolactive a
{
 background-color: #dedbc6;
 border-bottom: 1px solid #dedbc6;
 color:#000;
}

ul.ctoolnav li.ctoolactive a:hover
{
 color: #fff;
 background-color: #dedbc6;
 border-bottom: 1px solid #dedbc6;
}

/*--------------------------------------------------
  .ctooltab = the tab content
  Add style only after the ctool interface is set up (.ctoollive)
  --------------------------------------------------*/
.ctoollive .ctooltab {
 background-color:#dedbc6;
 padding:5px;
 border:1px solid #c9c5a6;
 border-top:0;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 /* height:200px; */

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.ctoollive .ctooltab h2 {
 display:none;
}
.ctoollive .ctooltab h3 {
 display:none;
}

/* Example of using an ID to set different styles for the tabs on the page */
.ctoollive#tab1 {
}
.ctoollive#tab2 {
}
.ctoollive#tab2 .ctooltab {
 height:200px;
 overflow:auto;
}


.ctooltab div img {width:100px;float:right;margin-left:3px;border:1px solid #000;}
.ctooltab div img:hover {border:1px solid #c00;}
.ctooltab a.price {font-weight:bold;}
.ctooltab .morelink {margin-top:0px;margin-bottom:0px;font-size:10px;display:inline;}
.ctooltab #realestate {margin-bottom:10px;}
