/**************** 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 green;
    color: #3A3A32;
}

.formSubmit {
    background: #AABBCC;
    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: 500px;
    margin-top: 20px;
    float: left;	
}

#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: 420px;
    float: left;    
}

#header #searchForm {
	width: 350px;
	text-align: right;
	margin-top: 20px;
    margin-left: 135px;
    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 {
    height: 18px; 
    width: 300px;
}

#header #searchForm #keyword {
    width: 150px;	
}

#header #searchForm #submit {
    height: 24px;
}
/*************** 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: white;
}
.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 #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: 715px;
    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-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 #cc1919;
	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: #1434d9;
}
.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-top: 12px;
    text-align: center;
}

#google_ad_sidenav_top {
    margin: -28px 0px 6px 0px;
    text-align: center;
}
/************** 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: #f5f5f5 url(../images/background/menu.png);
    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 *****************/

body { 
    margin:0px 0; 
    padding:0;
    background: #333333; 
    font: 0.75em Trebuchet MS; 
    color:#*;  
    line-height: 1.4em; 
}


.content { 
    background: #FFFFFF;
    color:#505050; 
    margin: 0 auto; 
    padding: 0; 
    width: 990px;
    border-left:6px solid #000;
    border-right:6px solid #000;
}

#top {
    padding: 0;
    margin: 0;
}

#top .topright { 
    float: right;
    color: #999;
    padding: 20px 25px 0 0;
    font-size: 1em;
}

#top img { 
    border: none; 
}


#header { 
    margin: 0; 
    width: 990px; 
    background: url(../images/background/head.jpg) no-repeat center;  
    height: 200px; 
    color: #000000; 
}

#header h1 {
    font-family: Trebuchet MS;
    color:#556677;
    font-size: 29px; font-weight: bold;
    margin: 0;
    padding: 0 130px; 
}

#header h2 {
    font-family: Trebuchet MS;
    font-size: 16px; 
    background-image: none;
    color:#556677;
    margin: 0;
    padding: 2px 0 0 180px;
}


#menu {
    background: transparent;
    width: 990px;
    height: 38px;
    margin: 0 0; 
    padding: 0px 0px;
}

#menu ul { 
    margin: 0; 
    list-style:none; 
    padding: 5px 0 0 120px; /*CHANGE THIS TO CENTER MENU*/
}

#menu li a, #nav li strong, #nav li span { 
    float:left; 
    display:block; 
    background: #ffffff;
    border-bottom: 4px solid #1434d9;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    color:#000000; 
    padding: 4px 7px;
    font-weight:bold; 
    text-decoration:none;
}

#menu li a { 
    float:none; 
}

#menu li { 
    float:left; 
    background:inherit; 
    margin:0 0 0 4px; padding:0 0 0 0px; 
}

#menu li a:hover { 
    float:left; 
    display:block; 
    background: #ffffff;
    border-bottom: 4px solid #4fb6e5;
    border-left: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    color:#f50808; 
    padding: 4px 7px; 
    text-decoration:none;
}

.nav { 
    text-align: left; 
    color: #333333; 
    padding: 20px 0 0 0px; 
    width: 174px; 
}

.nav li { 
    margin: 5px 0 5px 0px; 
    padding: 0px 0 0 0px; 
    border-bottom: 1px solid #ffffff; 
    list-style: none;
}

.nav li a { 
    color:#000000;
    font-weight:bold;
    text-decoration: none;  
    padding: 5px 0 1px 5px; 
    background: #ffffff;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    border-left: 4px solid #1434d9;
    display: block; 
    margin-bottom: 2px;
}

.nav li a:hover { 
    color: #cc1919; 
    text-decoration: none; 
    background:#ffffff;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    border-left: 4px solid #4fb6e5;
    display: block; 
    margin-bottom: 2px;
}

#main { 
    background: inherit;  
    width: 990px; 
    margin: 0 ; 
    color: #505050; 
}  

#main .right { 
    float: right;
    margin:0;
    background:inherit;
    width: 260px; 
}

#main .right .nextDirectory {
    width: 175px;
    margin-top: -30px;
    margin-left: 45px;
    padding-bottom: 10px;
    float: left;    
}

#main .right .nextDirectory .link {
    text-align: center;
    margin-top: 0px;
    font-size: 14px;
    width: 95px;  
    float: left;
}

#main .right .nextDirectory .arrow {
    width: 80px;
    height: 80px;
    float: left;
}

#main .right .nextDirectory .arrow img {
    border: 0;
    padding: 1px;
}

#main .right .nextDirectory .arrow img:hover {
    border: 1px solid #a32d3b;
    padding: 0;  
}

#main .right .hitems { 
    margin: 0;  
    padding: 0; 
}

#main .right .hitems ul { 
    margin: 5px 0 5px 0; 
    padding : 0; 
    color: #333333;
}
    
#main .right .hitems li { 
    margin: 0 0 2px 20px;
    padding: 0 0 0 0px;
    color: #555;
}

#main .left { 
    float: left; 
    width: 730px; 
    padding-top: 15px; 
    margin: 0; 
}
#main h3 {  
    font-family: Trebuchet MS;
    padding: 0 20px; 
    color: #999; 
    font-size: 16px;
    font-weight: bold;
    background: url(../images/background/h3.png) no-repeat; 
}

#main .box  {   
    background: #efefef; 
    padding: 5px; 
    border: 1px solid #ccc;
}

#main .right ul { 
    margin: 5px 0 5px 0; 
    padding : 0; 
    list-style : none; 
    border-bottom: 0px solid #eee; 
    list-style-type: square;
    color: #a90000;
}
    
#main .right li { 
    margin: 0 0 2px 2px;
    padding: 0 0 0 0px;
    color: #555555;
    list-style : none; 
}

#main .right  .text {
    margin: 0 0 20px 2px;
    padding: 0 0 0 0px;
    color: #505050;
}

.img_left {
    padding: 0 12px 8px 0;
    float: left;
}

.img_right {
    padding: 0 0 3px 8px;
    float: right;
}

#footer { 
	width: 990px;
    clear:both;
    height: 70px;
    background: url(../images/background/footer.jpg) bottom center no-repeat;
    color: #ffffff; 
    font-size: 90%; 
    padding: 0px;
    margin: 10px 0px 0px 0px; 
    text-align:center; 
}

#footer .info { 
    padding: 20px 0px 0px 5px; 
    float: left;
    width: 580px;
    text-align: right;
}

#footer #likeSites {
    float: left;
    margin-top: 33px;
    width: 300px;
    text-align: right;
}

#footer a { 
    color: #000000; 
}

.comments { 
    background: url(../images/background/comments.png) bottom right no-repeat;
    text-align: right; 
    margin: 0px 20px 10px 0px; 
    padding: 0px 20px; 
}

ul { 
    margin:0px 0px 0px 135px;
    padding:0px 0px 3px 5px;
    list-style: circle;
}

li {    
    margin: 5px 0px 5px 15px; 
    padding: 0px 5px 0px 5px;   
    color: #505050;
}

p { 
    margin: 0 0 5px 0; 
    padding: 0; 
    color: #505050; 
}

a { 
    color: #1434d9;  
    text-decoration:none; 
}

a:hover { 
    color: #cc1919;
    text-decoration:underline; 
}

h1 { 
    padding:0; 
    margin:0; 
    color: #b8470b; 
    font: bold 23px Trebuchet MS; 
    letter-spacing: -1px;
}

h1 a { 
    color: #1434d9;
}

h2 { 
    color:#9e4c08;
    font-size:22px; 
    font-weight:bold; 
    margin: 5px 0 5px 0px; 
    padding:0 0 0 20px; 
    background: url(../images/background/h2.png) no-repeat; 
}

h2 a { 
    color: #9e4c08; 
}

h2 a:hover { 
    color: #9e4c08; 
    text-decoration: underline; 
 }
 
#bestDirectories {
	margin-top: -20px;
    text-align: center;
}

#bestDirectories a img {
    border: 0;
    padding: 1px;
}

#bestDirectories a img:hover {
    border: 1px solid #339e1e;
    padding: 0px;
}

#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;
    border: 0px;
}

#side_nav_sponsor img:hover {
    padding: 1px;
    border: 1px solid #339e1e;   
}

#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-top:-20px; margin-bottom:28px; padding-top:2px; background-color:#ededf5; } 

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

