/**************** 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 ****************/
#resultMessage {
    clear: both;
    width: 420px;
    padding: 20px 0px 20px 0px;
    overflow: hidden;
}

.errorResultList { 
    list-style-image: url("../images/icons/formError.png");
}

.successResultList { 
    list-style-image: url("../images/icons/formSuccess.png");
}
/**************** End form property ****************/

/******************* Breadcrumb *******************/
#breadcrumb {
    padding: 0px 0px 6px 12px;
}
/******************* End Breadcrumb *******************/

/***************** Header *****************/
#header #siteName {
    width: 300px;
    margin-top: -10px;
    float: left;
}

#header #siteName h1 {
    color: #0c0d0f;
    font-size: 20px; 
}

#header #siteName a, #header #siteName a:visited, #header #siteName a:link {
    color: #ffffff;
    text-decoration: none;	
}

#header #siteName a:hover {
    text-decoration: underline;	
}

#header #searchFormContainer {
    width: 420px;
    float: left;    
}

#header #searchForm {
	width: 350px;
	text-align: right;
    margin-top: 52px;
    margin-left: 10px;
    clear: both;
}
#header #searchForm #searchInWebDirectory {
    display: inline;
}

#header #searchForm a, #header #searchForm a:visited, #header #searchForm a:link {
    color: #FFFFFF;
    text-decoration: none;  
}

#header #searchForm a:hover {
    text-decoration: underline; 
}

#header #searchForm #label {
    margin: 0px 20px 6px 0px; 
    color: #1c2c45;
}

#header #searchForm #label h2 { 
    color: #1c2c45;
}

#header #searchForm #input {
    height: 18px; 
    width: 300px;
}

#header #searchForm #keyword {
    width: 200px;	
}

#header #searchForm #submit {
    height: 24px;
}

#header .nextDirectory {
    width: 185px;
    margin-left: 55px;
    margin-top: 10px;
    float: left;    
}

#header .nextDirectory .link {
    text-align: center;
    margin-top: 5px;
    font-size: 14px;
    width: 105px;  
    float: left;
}

#header .nextDirectory .link a {
    color: #FFFFFF;
    border: 0;
    text-decoration: none;
}

#header .nextDirectory .link a:hover {
	color: #7cd5eb;
	text-decoration: underline;	
}

#header .nextDirectory .arrow {
    width: 80px;
    margin-top: 6px;
    float: left;
}
/*************** 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 #556677;
    background-color: #DBD7D1;
}

.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; */
    color: white;
}
/************** Bottom Dropdown ***************/

/******************* Login ******************/
#login #loginBox {
}

#login #loginBox .group {
  padding-right: 12px;
  float: left;
}

#login #loginBox .label {
  width: 135px;
  font-size: 12px;
  font-weight: bold;
  margin-top: 4px;
  text-align: left;
  color: #223322;
}

#login #loginBox .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;
    padding-top: 13px;
    padding-right: 22px;
}

#login #loginStatus .success {
    color: #00FF00;
}

#login #loginStatus .error {
    color: #FF0000;
}

#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: 709px;
    border-bottom: 1px solid #CCDDEE;
    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: 535px;
    font-size: 14px;
    padding-bottom: 4px;
}

.site .siteRight .url {
    color: #888888;
    margin-left: 12px;
    font-size: 12px;
}

.site .siteRight .description {
    width: 535px;
    margin: 2px 0px 8px 24px;
    font-size: 12px;
}

.site .siteRight .keywords {
    width: 535px;
    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: 535px;
    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: 535px;
    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: #FFFFFF url(../images/background/menu.png);
    color: white;
    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 #70695A;
	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: #70695A;
}
.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 24px;
}
/************** End Google Ad in Side Nav **************/

.formElementError .errorResultListContainer {
    margin: 0px 0px 0px 6px;
}



/*************** Custom skin style.css *********************/
/* global */
html{height: 100%;}

body
{ font-family: verdana, arial, sans-serif;
  padding: 0px;
  margin: 0px;
  font-size: .68em;
}

p
{ margin: 0px;
  padding: 0px 0px 16px 0px;
  line-height: 1.7em;
}

h1
{ font-family: arial, sans-serif;
  letter-spacing: .1em;
}

h2
{ margin: 0px;
  padding: 0px 0px 4px 0px;
  font-size: 100%;
}

img{border: 0px;}

a{outline: none;}

/* image positioning - left, right and center */
.left
{ float: left; 
  padding: 0px 8px 0px 0px;
}

.right
{ float: right; 
  padding: 0px 0px 0px 8px;
}

.center
{ display: block;
  text-align: center;
  margin: 0 auto;
}

/* block quote */
blockquote
{ margin: 20px 0px 20px 0px; 
  padding: 10px 20px 0px 20px;
  border-left: 8px solid;
}

/* unordered list */
ul
{ margin: 8px 0px 0px 16px;
  padding: 0px;
}

ul li
{ list-style-type: square;
  margin: 0px 0px 11px 0px; 
  padding: 0px;
}

/* ordered list */
ol
{ margin: 8px 0px 0px 24px;
  padding: 0px;
}

ol li
{ margin: 0px 0px 11px 0px; 
  padding: 0px;
}

/* main container */
#main
{ width: 1010px;
  margin-left: auto; 
  margin-right: auto;
}

/* links above the header / footer */
#links, #footer
{ margin-left: auto; 
  margin-right: auto;
  padding: 10px 21px 0px 19px;
  width: 950px;
  height: 26px;
  font-size: 94%;
}

#links{text-align: right;}

#footer{text-align: center;}

#footer #footerLinks {
    float: left;
    width: 660px;
    text-align: right;
}

#footer #likeSites {
	float: left;
    width: 220px;
    text-align: left;
    margin-top: -4px;	
}

#footer #likeSites li {
    list-style: none;
}

#footer #likeSites .likeSitesLink {
    color: #70695A;
}

#links a, #footer a{text-decoration: none;}

#links a:hover, #footer a:hover{text-decoration: underline;}

/* logo */
#header
{ margin-left: auto; 
  margin-right: auto;
  width: 990px;
  height: 124px;
  text-align: left;
}

#header h1
{ margin: 0px;
  padding: 41px 0px 0px 19px;
  font-size: 150%;
  letter-spacing: .2em;
}

/* navigation menu */
#login
{ height: 42px;
  width: 990px;
  margin-left: auto; 
  margin-right: auto;
}

#login ul{margin: 0px auto;} 

#login li
{ float: left; 
  margin: 0px; 
  padding: 0px;
  list-style: none;
} 

#login li a 
{ display: block; 
  float: left; 
  height: 27px;
  text-decoration: none; 
  padding: 13px 19px 2px 19px;
  text-transform: uppercase;
} 

/* main content */
#content
{ margin-left: auto; 
  margin-right: auto;
  width: 990px;
  height: auto;
  padding: 0px;
  overflow: hidden;
} 

/* column 1 - contains sidebar items */
#column1
{ width: 260px;
  float: right;
  padding: 16px 0px 15px 0px;
}

.sidebaritem
{ text-align: left;
  width: 260px;
  float: left;
  margin: 0px 0px 5px 0px;
}

.sbihead
{ height: 14px;
  width: 260px;
  padding: 5px 0px 5px 19px;
  text-transform: uppercase;
}

.sbihead h1
{ padding: 0px; 
  margin: 0px; 
  font-weight: bold;
  font-size: 112%;
}

.sbicontent{padding: 14px 8px 8px 19px;}

.sbicontent p
{ line-height: 14px; 
  padding: 0px 0px 8px 0px;
}

.sbilinks{padding: 0px;}

.sbilinks ul{margin: 0px auto;} 

.sbilinks li 
{ margin: 0px; 
  float: left; 
  list-style: none; 
} 

.sbilinks li a , .sbilinks li a:hover
{ float: left; 
  height: 16px;
  text-decoration: none; 
  padding: 5px 0px 4px 19px;
  width: 260px;
  border: 0px;
} 

/* column 2 - page content */
#column2
{ width: 692px;
  float: left;
  padding: 12px 3px 15px 19px;
}

#column2 h1
{ padding: 6px 0px 4px 0px; 
  margin: 0px 0px 12px 0px; 
  border-bottom: 1px solid;
  font-size: 150%;
  text-transform: uppercase;
  font-weight: normal;
}

.sidebaritem a, #column2 a, .sidebaritem a:hover, #column2 a:hover
{ text-decoration: none;
  border-bottom: 1px dashed;
}

.sidebaritem a:hover, #column2 a:hover{border-bottom: 1px solid;}

/* contact page - form layout */
form{margin-top: 0px;}

div.row
{ clear: both;
  width: 448px;
}

div.row span.formlabel 
{ float: left;
  width: 150px;
  text-align: left;
}

div.row span.forminput
{ float: right;
  text-align: right;
} 

div.spacer
{ clear: both;
  width: 80px;
}

.formText, .formTextarea, .formSelect
{ font-family: verdana, arial, sans-serif;
  border: 1px solid;
  font-size: 100%;
  margin: 2px;
}

.formSubmit
{ font-family: verdana, arial, sans-serif;
  border: 1px solid;
  height: 22px;
  cursor: pointer;
  font-size: 100%;
}

/*************** End Custom skin style.css *********************/

/*************** Custom skin colour.css *********************/

body
{ background: #107828;
  color: #70695A;
}

blockquote
{ background: #FFFFFF;
  color: #70695A;
  border-color: #767676;
}

#main
{ background: #FFFFFF url(../images/background/longback.png) repeat-y;
  color: #70695A;
}

#links, #footer, #login, #login li a
{ background: #FFFFFF url(../images/background/menu.png);
  color: #DBD7D1;
  border-color: #D7D7D7;
}

#links a, #footer a, #links a:hover, #footer a:hover
{ background: transparent;
  color: #DBD7D1;
}

#header
{ background: #FFFFFF url(../images/background/logo.jpg) no-repeat;
  color: #70695A;
}

#header h1
{ background: transparent;
  color: #FFFFFF;
}

h1, #column2 h1
{ background: transparent;
  color: #1c2c45;
  border-color: #CAAE90;
}

#login li a:hover, #login li a#selected, #login li a#selected:hover
{ background: #FFFFFF url(../images/background/menu_hover.png);
  color: #70695A;
} 

#content, #column2 a, #column2 a:hover
{ color: #70695A;
}

.sidebaritem, .sidebaritem a, .sidebaritem a:hover
{ background: transparent;
  color: #DBD7D1;
}

.sbihead
{ background: #FFFFFF url(../images/background/sbi_header.png);
  color: #1c2c45;
}

.sbihead h1
{ background: transparent;
  color: #1c2c45;
}

.sbilinks li a
{ background: #FFFFFF url(../images/background/link.png);
  color: #DBD7D1;
} 

.sbilinks li a:hover
{ background: #B7B7B7;
  color: #CE7014;
} 

.formText, .formTextarea, .formSelect
{ background: #FFFFFF;
  color: #70695A;
  border-color: #CAAE90;
}

/*************** End Custom skin colour.css *********************/

/*************** 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: #FFFFFF url(../images/background/menu.png);
    color: white;
    border-color: #D7D7D7;
    width: 690px;
    height: 40px;
}

.paginatorBar .pageNumber {
  background-color: #FFFFFF;
  border: 1px solid #DEDEB8;
  margin-right: 1px;
  float: left;
  padding: 1px 4px;
  font-size: 14px;
  color: white;
}

.paginatorBar .pageNumber:hover {
  background-color: #F9F9F9;
  border: 1px solid #333333;
  text-decoration: none;
}

.paginatorBar .currentPage {
    background-color: #E2F2FE;
    color: #98AA6C;
    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 ********************/

#bestDirectories {text-align: center;} #google_ad_sidenav_top {
    margin:-10px 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: -12px;
	margin-bottom: 12px;
	overflow: hidden;
	clear: both;
}

#side_nav_sponsor img {
    padding: 2px;
}

#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;
}

