/**************** Tags property ****************/
div { 
    margin: 0 auto;
    padding:0px 0px 0px 0px;
}

.clearBoth {
    clear: both;
}

.inline {
    display: inline;    
}
/**************** End tags property ****************/

/**************** Color property ****************/

.red {
    color: red; 
}

.orange {
    color: orange;
}

.green {
    color: green;
}

.lighterGreen {
    color: #36c740; 
}

.yellow {
    color: #b6c737;
}

.grey {
    color: #556677;
}

/**************** End Color property ****************/

/**************** Form property ****************/
.formText, .formTextarea, .formSelect {
    background: #FFFFFF;
    border: 1px dotted #6E2B32;
    color: #3A3A32;
}

.formSubmit {
    background: #6E2B32;
    font-weight: bold;
    color: #F1F3FE;
    font-family: "Book Antiqua";
    cursor: pointer;
}

#resultMessage {
    clear: both;
    width: 420px;
    padding: 20px 0px 20px 0px;
    overflow: hidden;
}

.errorResultList { 
    list-style-image: url("../images/icons/formError.png");
    font-size: 12px;
    color: #113399;
}

.successResultList { 
    list-style-image: url("../images/icons/formSuccess.png");
    font-size: 12px;
    color: #113399;
}
/**************** End form property ****************/

/******************* Breadcrumb *******************/
#breadcrumb {
    padding: 0px 0px 6px 12px;
}
/******************* End Breadcrumb *******************/

/***************** Header *****************/
#header #siteName {
    width: 250px;
    float: left;        
    margin-top: 28px;
    margin-left: 80px; } #header #siteName h1 { font-size: 24px; } #header #siteName h2 { font-size: 16px; } #header {
}

#header #siteName a, #header #siteName a:visited, #header #siteName a:link {
    /* color: white; */
    text-decoration: none;  
}

#header #siteName a:hover {
    text-decoration: underline; 
}

#header #searchFormContainer {
    width: 320px;
    float: left;
    margin-top: 68px;    
}

#header #searchForm {
    width: 300px;
    text-align: right;
    clear: both;
}
#header #searchForm #searchInWebDirectory {
    display: inline;
}

#header #searchForm a, #header #searchForm a:visited, #header #searchForm a:link {
    /* color: white; */
    text-decoration: none;  
}

#header #searchForm a:hover {
    text-decoration: underline; 
}

#header #searchForm #label {
    margin: 12px 30px 0px 0px; 
    /* color: #928563; */
}

#header #searchForm #label h2 { 
    /* color: white; */
}

#header #searchForm #input {
    /* width: 350px; */
}

#header #searchForm #keyword {
    width: 200px;   
    height: 20px; 
}

#header #searchForm #submit {
    height: 24px;
}

#header .nextDirectory {
    width: 185px;
    margin-top: 35px;
    margin-left: 90px;
    float: left;    
}

#header .nextDirectory .link {
    text-align: center;
    margin-top: 0px;
    font-size: 14px;
    width: 105px;  
    float: left;
}

#header .nextDirectory .arrow {
    width: 80px;
    height: 80px;
    float: left;
}

#header .nextDirectory .arrow img {
    border: 0;
    padding: 1px;
}

#header .nextDirectory .arrow img:hover {
    border: 1px solid #9A6;
    padding: 0;  
}
/*************** End Header ***************/

/************** Bottom Dropdown ***************/
/* remove all list stylings */
.menu5, .menu5 ul {
    margin: 0;
    padding: 0;
    border: 0;
    list-style-type: none;
    display: block;
    width: 160px;
}

.menu5 li {
    margin: 0;
    padding: 0;
    border: 0;
    display: block;
    float: left;    /* move all main list items into one row, by floating them */
    position: relative; /* position each LI, thus creating potential IE.win overlap problem */
    z-index: 5;     /* thus we need to apply explicit z-index here... */
    width: 160px;
    text-align: left;
}

.menu5 li:hover {
    z-index: 10000; /* ...and here. this makes sure active item is always above anything else in the menu */
    white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
                            see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu5 li li {
    float: none;/* items of the nested menus are kept on separate lines */
}

.menu5 ul {
    visibility: hidden; /* initially hide all submenus. */
    position: absolute;
    z-index: 10;
    left: 0;    /* while hidden, always keep them at the bottom left corner, */
    bottom: 0;      /*      to avoid scrollbars as much as possible */
}

.menu5 li:hover>ul {
    visibility: visible;    /* display submenu them on hover */
    bottom: 100%;   /* 1st level go above their parent item */
}

.menu5 li li:hover>ul { /* 2nd+ levels go on the right side of the parent item */
    bottom: 0;
    left: 100%;
}

/* -- float.clear --
    force containment of floated LIs inside of UL */
.menu5:after, .menu5 ul:after {
    content: ".";
    height: 0;
    display: block;
    visibility: hidden;
    overflow: hidden;
    clear: both;
}
.menu5, .menu5 ul { /* IE7 float clear: */
    min-height: 0;
}
/* -- float.clear.END --  */

/* sticky submenu: it should not disappear when your mouse moves a bit outside the submenu
    YOU SHOULD NOT STYLE the background of the ".menu5 UL" or this feature may not work properly!
    if you do it, make sure you 110% know what you do */
.menu5 ul {
    padding: 30px 30px 10px 30px;
    margin: 0 0 -10px -30px;
    /*background: #f00;*/   /* uncomment this if you want to see the "safe" area.
                                you can also use to adjust the safe area to your requirement */
}
.menu5 ul ul {
    padding: 30px 30px 30px 10px;
    margin: 0 0 -30px -10px;
}

/* Design */
.menu5, .menu5 ul li {
    /* color: #eee; */
    /* background: #234; */
}

.menu5 ul {
    width: 11em;
}

.menu5 a {
    text-decoration: none;
    /* color: #eee; */
    padding: .4em 1em;
    display: block;
    position: relative;
}

.menu5 a:hover, .menu5 li:hover>a {
    /* color: #fc3; */
}

.menu5 li li {  /* create borders around each item */
    border: 1px solid #ccc;
    background-color: #333;
}
.menu5 ul>li + li { /* and remove the top border on all but first item in the list */
    border-top: 0;
}

.menu5 li li:hover>ul { /* inset 2nd+ submenus, to show off overlapping */
    bottom: 5px;
    left: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
    placed here to clarify the terminology I use when referencing submenus in posts */
.menu5>li:first-child>a, .menu5 li + li + li li:first-child>a {
    /* color: #567; */
}
/************** Bottom Dropdown ***************/

/******************* Login ******************/
#login {
    width: 920px;
    padding-top: 0px;
    clear: both;    
}

#login #loginBoxContainer {
    float: left;
    width: 500px;
    text-align: right;  
}

#login #loginBoxContainer li {
    display: inline;
}

#login #loginBoxContainer .group {
  padding-right: 12px;
  float: left;
}

#login #loginBoxContainer .label {
  width: 135px;
  font-size: 12px;
  font-weight: bold;
  margin-top: 4px;
  text-align: left;
  /* color: #223322; */
}

#login #loginBoxContainer .input {
  width: 135px;
  text-align: left;
  margin: 4px 0px 0px 2px;
  /* color: #223322; */
}

#loginForm #email {
    width: 138px;
    height: 16px;
}

#loginForm #password {
    width: 138px;
    height: 16px;
}

#loginForm #submit {
    width: 65px;
    height: 25px;
    margin-top: 19px;
}

#login #loginStatus {
    float: right;
    width: 370px;
    font-weight: bold;   
    text-align: right;
    margin-top: 0px;
    padding-right: 22px;
}

#login #loginStatus .success {
    color: green;
}

#login #loginStatus .error {
    color: red;
}

#login #loginStatus #signedIn {
    /* color: white; */   
}
    
#login #forgotPasswordLink a , #login #forgotPasswordLink a:visited {
    /* color: white; */
    text-decoration: none;
}

#login #forgotPasswordLink a:hover {
    text-decoration: underline; 
}

#signOut {
    font-size: 10px;
}

#signOut a, #signOut a:link, #signOut a:visited {
    text-decoration: none;
    /* color: white; */
}

#signOut a:hover {
    text-decoration: underline;
}
/************** End Login *****************/

/******************** Sites Display ********************/
.site {
    margin-bottom: 12px;
    padding-bottom: 12px;
    width: 715px;
    border-bottom: 1px dashed #6E2B32;
    overflow: hidden;
}

.site .regular {
    width: 710px;
    padding-top: 6px;
    padding-bottom: 6px;
    overflow: hidden;
}

.site .sponsor {
    width: 710px;
    padding-top: 6px;
    padding-bottom: 6px;
    overflow: hidden;
    background-color: #F8F79F;
}

.site .siteTop {
    width: 700px;
    padding-right: 12px;
    /* color: #7f7e21; */
    text-align: right;
    overflow: hidden;
}

.site .siteLeft {
    width: 140px;
    margin-right: 10px;
    float: left;
    text-align: center;
}

.site .siteLeft .thumbnail {
    width: 128px;
    height: 100px;
    margin-bottom: 6px;
}

.site .siteLeft .pageRank {
    width: 128px;
    height: 20px;
}

.site .siteLeft .details {
    width: 128px;
    height: 20px;   
}

.site .siteRight {
    width: 560px;
    margin-top: 5px;
    float: left;
}

.site .siteRight .siteName {
    width: 485px;
    font-size: 14px;
    padding-bottom: 4px;
}

.site .siteRight .url {
    /* color: #888888; */
    margin-left: 12px;
    font-size: 12px;
}

.site .siteRight .description {
    width: 485px;
    margin: 2px 0px 8px 24px;
    font-size: 12px;
}

.site .siteRight .keywords {
    width: 485px;
    padding-right: 12px;
    font-size: 12px;
}

.site .siteRight .keywords a:link, .site .siteRight .keywords a:visited {
    /* color: #5A667A; */
}

.site .siteRight .keywords a:hover {
    /* color: #160B4A; */
}

.site .siteRight .comments {
    width: 485px;
    text-align: left;
    margin-top: 8px;
    overflow: hidden;
}

.site .siteRight .comments .review {
    float: left;
    width: 105px;
    border-right: 1px solid black;
}

.site .siteRight .comments .writeReview {
    float: left;
    width: 100px;
    padding-left: 8px;
    border-right: 1px solid black;
}

.site .siteRight .comments .vote {
    float: left;
    width: 35px;
    padding-left: 8px;
    border-right: 1px solid black;
}

.site .siteRight .comments .rating {
    float: left;
    padding-left: 8px;
    width: 100px;
}

.site .siteRight .comments a:link, .site .siteRight .comments a:visited {
    /* color: #33046C; */
}

.site .siteRight .comments a:hover {
    /* color: #EB4343; */
}

.site .siteBottom {
    width: 485px;
    /* color: #7f7e21; */
    overflow: hidden;
}

.site .siteBottom .close {
    clear: both;
    float: right;
    margin: 0px 4px 0px 0px;
}

.site .siteBottom .reviewContainer {
    width: 397px;
    font-size: 12px;
    /* color: #334455; */
    padding: 10px 6px 10px 6px;
    margin-left: 0px;
    border: 1px solid black;
    position: absolute;
    border-top: none;
    background-color: #f0ecd9;    
    overflow: hidden;
    display: none;
    z-index: 100;
}

.site .siteBottom .noReview {
    text-align: center;
    width: 350px;
    padding: 2px 0px 5px 0px;
}

.site .siteBottom .reviewContainer .header {
    width: 395px;
    background-color: #4098bd;
    /* color: white; */
    color: #EEEEFF;
    font-weight: bold;
    text-align: center;
    overflow: hidden;
    border: 1px solid black;
}

.site .siteBottom .reviewContainer .header .reviewName {
    width: 99px;
    float: left;
    padding: 2px;    
}

.site .siteBottom .reviewContainer .header .reviewContent {
    width: 267px;
    float: left;
    border-left: 1px solid black;
    padding: 2px;
}

.site .siteBottom .reviewContainer .review {
    width: 395px;
    overflow: hidden;    
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
}

.site .siteBottom .reviewContainer .review .reviewName {
    width: 99px;
    float: left;
    padding: 2px;
    overflow: hidden;
    word-wrap: break-word;
}

.site .siteBottom .reviewContainer .review .reviewContent {
    width: 267px;
    float: left;
    border-left: 1px solid black;
    padding: 2px 2px 2px 8px;
    overflow: hidden;
    word-wrap: break-word;
}


.site .siteBottom .reviewContainer .review .reviewContent .date {
    width: 260px;
    padding-bottom: 6px;
}

.site .siteBottom .reviewContainer #allReviews {
    width: 400px;
    text-align: center; 
}

.site .siteBottom .writeReviewContainer {
    width: 293px;
    font-size: 12px;
    /* color: #334455; */
    padding: 4px 0px 4px 12px;
    margin-left: 105px;
    border: 1px solid black;
    border-top: none;
    background-color: #f0ecd9;
    position: absolute;
    overflow: hidden;
    display: none;
    z-index: 100;
}

.site .siteBottom .formTextarea {
    width: 281px;
    height: 80px;
}

.site .siteBottom .input {
    padding-bottom: 6px;
}

.site .siteBottom .formText {
    width: 205px;
    height: 20px;
}

.site .siteBottom .submit {
    margin: 6px 0px 4px 72px;
}

.site .siteBottom .writeReviewContainer .formSubmit {
    width: 100px; 
    height: 26px;
}

.site .siteBottom .writeReviewContainer .errors {
    width: 180px;   
}

.site .siteBottom .yourComment {
    width: 323px;
    padding: 4px 0px 6px 0px;
}

.site .siteBottom .voteContainer {
    width: 184px;
    font-size: 12px;
    /* color: #334455; */
    padding: 4px 0px 4px 12px;
    margin-left: 214px;
    border: 1px solid black;
    border-top: none;
    background-color: #f0ecd9;
    position: absolute;
    overflow: hidden;
    display: none;
    z-index: 100;
}

.site .siteBottom .voteContainer .voteDescription  {
    width: 170px;
    text-align: center;
    padding: 2px 0px 5px 0px;
}

.site .siteBottom .voteContainer .buttons {
    width: 170px;
    text-align: center;
    padding-bottom: 5px;
}

.site .siteBottom .voteContainer .formSubmit {
    width: 50px;
}
.site .socialPage {
	overflow: hidden;
	padding: 1px;
	height: 20px;
}
.site .socialPage:hover { 
	border: 1px solid #9a6;
	padding: 0px;
}
.site .socialPage:hover,
.site .socialPage a,
.site .socialPage a:hover,
.site .socialPage .socialStats:hover,
.site .socialPage .socialLogo:hover,
.site .socialPage .socialLogo img:hover {
	color: #194d87;
}
.site .socialPage .socialLogo {
	float: left;
	height: 17px;
	margin-top: -3px;
}
.site .socialPage .socialStats {
	float: left;
	height: 19px;
	margin-top: 1px;
}
.site .socialPage .socialLogo img {
	border: 0;
	padding: 5px;
}
.site .socialPage .socialLogo img:hover {
	border: 0;
	padding: 5px;
}
/******************** End Sites Display ********************/

/************** Google Ad in Side Nav **************/
#googleSideBarTextAd {
    margin: 12px 0px 0px 0px;
}
/************** End Google Ad in Side Nav **************/

.formElementError .errorResultListContainer {
    margin: 0px 0px 0px 6px;
}

/*************** Grey box *****************/

#GB_overlay {
  background-image: url(../images/icons/overlay.png); 
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  z-index: 100;
  width:  100%;
  height: 100%;
}

* html #GB_overlay {
  background-color: #000;
  background-color: transparent;
  background-image: url(../images/icons/blank.gif);
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src="../images/icons/overlay.png", sizingMethod="scale");
}

#GB_window {
  top: 150px;
  left: 0px;
  position: absolute;
  background: #fff;
  border: 5px solid #aaa;
  overflow: auto;
  width: 400px;
  height: 400px;
  z-index: 150;
}

#GB_frame {
  border: 0;
  overflow: auto;
  width: 100%;
  height: 378px;
}

#GB_caption {
  font: 12px bold helvetica, verdana, sans-serif;
  color: #fff;
  background: #888;
  padding: 2px 0 2px 5px;
  margin: 0;
  text-align: left;
}

#GB_window img {
  position: absolute;
  top: 2px;
  right: 5px;
  cursor: pointer;
  cursor: hand;
}

/******************** End Grey box ********************/

/**************** Pagination property ****************/

.paginatorBar {
    background: #6E2B32 url(../images/background/bgfooter.gif);
    color: white;
    border-color: #D7D7D7;
    width: 740px;
    height: 40px;
}

.paginatorBar .pageNumber {
  background-color: #FFFFFF;
  border: 1px solid #8ea88d;
  margin-right: 1px;
  float: left;
  padding: 1px 4px;
  font-size: 14px;
}

.paginatorBar .pageNumber:hover {
  background-color: #F9F9F9;
  border: 1px solid #333333;
  text-decoration: none;
}

.paginatorBar .currentPage {
    background-color: #4098bd;
    color: #EEEEFF;
    border: 1px ridge #DEDEB8;
    margin-right: 1px;
    float: left;
    padding: 1px 4px;
    font-size: 14px;
}

.paginatorBar .pageContainer {
    margin: 0px 15px 2px;
    float: left;
    text-align: right;
    clear: both;
}

.totalPaginatorItems {
    width: 680px;
    margin-top: 5px;
    text-align: right;
    color: #928563;
}
/******************** End page navigation ********************/

/******************* Login ******************/
#menu #loginStatus {
    float: left;
    width: 320px;
    font-weight: bold;   
    text-align: left;
    padding-top: 10px;
    padding-left: 22px;
}

#menu #loginStatus .success {
    color: green;
}

#menu #loginStatus .error {
    color: red;
}

#menu #forgotPasswordLink a , #menu #forgotPasswordLink a:visited {
    /* color: white; */
    text-decoration: none;
}

#menu #forgotPasswordLink a:hover {
    text-decoration: underline; 
}
/************** End Login *****************/

/*************** Footer ******************/
#footer .info { 
    padding: 0px 0px 0px 5px; 
    float: left;
    width: 530px;
    text-align: right;
}

#footer #likeSites {
    float: left;
    margin-top: -5px;
    margin-left: -6px;
    width: 150px;
    text-align: left;
}
/*************** End Footer ******************/

/************** Start site skin *****************/
#tipOfTheDay {
    width: 730px;
    padding-top: 12px;
    padding-bottom: 12px;
    /* color: #556677; */
    clear: both;
}

#tipOfTheDay #siteName {
    width: 340px;
    text-align: left;
    font-size: 14px;
    float: left;
}

#tipOfTheDay #tipDate {
    width: 150px;
    text-align: right;
    float: left;
}

#tipOfTheDay #tip {
    width: 430px;
    margin-top: 2px;
    border-top: 2px solid #556677;
    float: left;
    padding: 5px 30px 12px 30px;
}

/*#############################################################
Name: Dark Ritual
Date: 2006-11-06
Description: Tribal-style three column layout.
Author: Viktor Persson
URL: http://templates.arcsin.se

Feel free to use and modify but please provide credits.
#############################################################*/

/* standard elements */
* {
    margin: 0;
    padding: 0;
}

a {color: #194d87;}

a:hover {color: #9a6;}

body {
    background: #333 url(../images/background/bg.gif);
    color: #333;
    font: normal 62.5% "Lucida Sans Unicode",sans-serif;
    margin: 3% 0;
}

p,ul {
    padding-bottom: 1em;
}

ul {margin-left: 1.2em;}

li {list-style: none;}
#main li {list-style-image: url(../images/background/li.gif);}

blockquote {
    background: #FFF;
    border-bottom: 1px solid #EEE;
    border-top: 1px solid #EEE;
    color: #333;
    display: block;
    font-size: 0.9em;
    margin-bottom: 1.2em;
    padding: 6px 12px;
}
blockquote p {padding: 3px 0;}

h1,h2,h3 {color: #fa7a12;}

/* misc */
.clearer {clear: both;}
#main_right .padded {padding: 6px 2px 6px 16px;}
#main .padded {padding: 18px 24px;}
.meta {font-size: 0.8em; color: #666;}
.left {float: left;}
.right {float: right;}

/* structure */
#container {
    font-size: 1.2em;
    background: url(../images/background/bgcontainer.gif) repeat-y;
    margin: 0 auto;
    width: 990px;
    border: 8px solid #090b29;
}

/* header */
#header {
    width: 988px;
    background: url(../images/background/header.jpg) no-repeat;
    font-family: Verdana,sans-serif;
    height: 150px;
    text-align: center;
    overflow: hidden;
}

/* structure */
.top {
    background: #222;
    color: #DDD;
    float: left;
    font: normal 1.4em Verdana;
    height: 50px;
    text-align: center;
    width: 639px;
}
#subnav {
    float: left;
    width: 260px;
}
#main {
    float: left;
    width: 730px;
}
#main_right {
    float: right;
    width: 200px;
    color: #CCC;
}

/* sub-navigation */
#subnav h1 {
    background: #141740;
    color: #FFE;
    font: bold 1.1em Verdana,sans-serif;
    line-height: 24px;
    padding-left: 8px;
}
#subnav ul {margin: 0 0 12px 0; padding: 0;}
#subnav li {
    border-bottom: 1px solid #696755;
    list-style: none;
}
#subnav li a {
    background: #29b3a3;    
    color: #111;
    display: block;
    padding: 4px 0 4px 32px;
    width: 228px;
    text-decoration: none;
}
#subnav li a:hover {
    background: #9C997C;
    color: #000;
}

/* footer */
#footer {
    background: url(../images/background/bgfooter.gif) repeat-x;
    color: #CCC;
    font-size: 0.9em;
    line-height: 30px;
    padding-top: 5px;
    width: 100%;
    text-align: center;
    width: 990px;
}
#footer .left,#footer .right {padding: 0 16px;}
#footer a {color: #EEE;}
#footer a:hover {color: #FAFCB0;}

#bestDirectories {
    text-align: center;
    margin-left: 0px;
}

#bestDirectories a img {
    border: 0;
    padding: 1px;
}

#bestDirectories a img:hover {
    border: 1px solid #FAFCB0;
    padding: 0px;
}

#google_ad_sidenav_top {
    margin: 0px 0px 6px 0px;
    text-align: center;
}

#amazon_ad_sidenav {
    text-align: center;
    width: 260px;
    overflow: hidden;
    clear: both;
    margin-top: 5px;
}

#side_nav_sponsor {
	width: 260px;
	margin-top: 6px;
	overflow: hidden;
	clear: both;
}

#side_nav_sponsor img {
    padding: 2px;
    border: none;
}

#side_nav_sponsor img:hover {
	padding: 1px;
	border: 1px solid #DBD7D1;
}

#side_nav_sponsor .ad_125x125_left {
	float: left;
	width: 125px;
	height: 125px;
	margin-right: 5px;
	margin-bottom: 5px;
}

#side_nav_sponsor .ad_125x125_right {
	float: left;
	width: 125px;
	height: 125px;
	margin-bottom: 5px;	
}

#side_nav_sponsor .ad_125x125_center {
	text-align: center;
	width: 250px;
	height: 125px;
	clear: both;
	margin-bottom: 5px;	
}

#side_nav_sponsor .ad_250x250 {
    text-align: center;
	width: 250px;
	height: 250px;
	clear: both;
	margin-bottom: 5px;
}

#side_nav_sponsor .ad_250x125 {
    text-align: center;
	width: 250px;
	height: 125px;
	clear: both;
	margin-bottom: 5px;
}

#amazon_ad_sidenav #amazon_ad_sidenav_left {
    float: left;
    margin-left: 10px;  
}

#facebook_like_box { text-align: center; margin-bottom:18px; padding-top:2px; background-color:#ededf5; } 

#amazon_ad_sidenav #amazon_ad_sidenav_right {
    float: left;
    margin-left: 0px;
}

