@charset "utf-8";

/* @media Rule */
@viewport {
  width: device-width;
  zoom: 1;
  initial-scale:1;
  minimum-scale:1;
}
html {
width: device-width;
zoom: 1;
initial-scale:1;
minimum-scale:1;
position:relative;
margin: 0;
padding: 0;
}
body  {
	font: 100% Arial, Verdana, Helvetica, sans-serif;
	float:none;
	position:relative;
	display:block;
	background: none;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
img { border: 0; }
img:hover{
opacity: 0.60;
transition: opacity .55s ease-in-out;
-moz-transition: opacity .55s ease-in-out;
-webkit-transition: opacity .55s ease-in-out;
}
.img_lf{
position:relative;
float: left;
margin: 1px 3% 3px 1%;	
}
.img_rt{
position:relative;
float: right;
margin: 1px 1% 3px 3%;	
}
.img_cen{
position:relative;
float: none;
margin: 1px 5% 5px 5%;	
}
.flex_img{
position:relative;
float: none;
width: 85%;
height:50%;
margin: 1px 5% 5px 5%;	
}
.flex_img2{
position:relative;
float: none;
width: 50%;
height:40%;
margin: 1px 2% 5px 2%;	
}
#mobile1{
	display: none;
	visibility:hidden;
	overflow:hidden;
}
.twoColLiqRtHdr #container {
	position:relative;
	display:block;
	float:none;
	width: auto;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding-top:0;
}
.topNav{
		float:left;
		position:relative;
		width:58%;
		height:30px;
		padding:0;
		margin:0 auto 2px auto;
		background: url('http://planets.powerfortunes.com/images/topnavback.png') no-repeat left;
		background-position: 100% auto;
		}
.twoColLiqRtHdr #header {
	width: auto;
	background: url('http://planets.powerfortunes.com/images/header_bg.png') no-repeat top center;
	padding: 5px 0 0 1%;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0;
	background-size:100% 100%;
	/*border-top: red groove 7px; */
} 
.twoColLiqRtHdr #header h1 {
	margin-top: 9px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	clear:left;
}

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqRtHdr #sidebar p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/

.nav{
	position:relative;
	width:100%;
	height:30px;
	clear:both;
	display: inline-block;
	float:none;
	margin: 0 auto;
	padding: 5px auto 0 auto;
	text-align:center;
	background:url('http://planets.powerfortunes.com/images/nav_bg8.png') no-repeat center;
	background-size: 100% 100%;
	}
.logo{
	position:relative;
	float:left;
	width:19%;
	min-width:160px;
	height:100px;
	clear:left;
	margin: 0 auto;
	padding: 5px auto 5px 1%;
	text-align:center;
	}	
.search{
	position:relative;
	width:44%;
	float:left;
	height: auto;
	margin: 6px auto 0 auto;
	padding: 3px auto 4px auto;
	text-align:left;
	background-color:#120c3c; /*201568,10105e*/
	}
.banr{
	position:relative;
	width:33%;
	float:right;
	margin: 0 auto;
	padding: 0;
	height: 140px;
	overflow:hidden;
	}

.twoColLiqRtHdr #sidebar1 {
position:relative;
float:right;
width:29%;
padding:15px 2px 3px 2px;
margin:0 auto 5px auto;
overflow:hidden;
background: #e6e5f1;
}

#sidebarL {
width:17%;
float:none;
position:relative;
clear:left;
margin: 0 82% 0 1%; /* the left margin can be given in percentages or pixels. It creates the space down the left side of the page. */
min-height:50%;
padding-bottom:5%;
}
/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the right margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this right margin if you want the #mainContent div's text to fill the #sidebar space when the content in #sidebar ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
#Content {
	position:relative;
	width:auto;
	clear:both;
	float:left;
	margin: 0 auto; /* the left margin should mirror the margin on the header and footer for proper alignment. */
	text-align:center;
	padding:0 5px 0 10px;
} 

#mainContent {
	position:relative;
	width:67%;
	float:left;
	margin: 0 10px 0 14px; /* the left margin should mirror the margin on the header and footer for proper alignment. */
	text-align:justify;
}
#mainContentR {
position:relative;
float: right; /* since this element is floated, a width must be given */
width: 81%;
clear:right;
}

.twoColLiqRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.bread {
		position:relative;
		display:inline;
		clear:both;
		width:50%;
		float: left;
		text-align:left;
		list-style:none;
		font-family:Kozuka Gothic Pro B, Helvetica, sans-serif;
		font-size:14px;
		font-weight:600;
		color:#006990;
		border-bottom:4px solid red;
		padding-bottom: 3px;
/*		border-radius: 10px ;
		border-radius: 10px ;
		-moz-border-radius: 10px ;
		-moz-border-radius: 10px ;
		-webkit-border-radius: 10px ;
		-webkit-border-radius: 10px ; */
	}
		.bread a:link{
		text-decoration:none;
		color: #666;
		}

	.bread a:hover {
		background-color:rgb(12,12,123);
		color:#FFFFFF;
	}
	.bread li {
		width: auto;
		display:inline;
		float:left;
		text-align:left;
		padding:0 2% 0 2%;
	}
#Carousel {
	position:relative;
	display:block;
	float:right;
	margin-right:3px;
	width:99%;
	text-align:center;
	clear:both;
	overflow:hidden;
}
.feed{
position:relative;
width:auto;
height:auto;
margin: 0 auto;
padding:5px;
text-align:left;
background-color:#fff;
font: Arial, Helvetica, sans-serif;
font-size: 8pt;
clear:both;
}
.feed a:link{
text-decoration:none;
color:#ce4103;
text-align:center;
}
#pscroller1{
width:auto;
max-width: 200px;
height: 280px;
padding: 10px 2px 10px 5px;
background-color: #ffffff;
text-align: center;
margin: 0 auto;
font-family:"Arial", Times, serif;
color:#808080;
font-size: 10pt;
font-weight:600;
}
#pscroller2{
width: 90%;
height: 300px;
padding: 15px 1% 0px 5px;
background-color: #FFFFFF;
text-align: left;
margin-top: 5px;
font-family:"Arial", Times, serif;
color:#808080;
font-size: 10pt;
font-weight:600;
}
#pscroller3{
width: 225px;
height: 200px;
padding-top: 5px;
background-color: #fffff;
text-align:center;
text-align: left;
margin-top: 5px;
font-family:"Arial", Times, serif;
color:#808080;
font-size: 9pt;
font-weight:600;
}
div#pscroller3 font{font-size:15pt;}

.someclass{ padding: 5px;
}
div#mysagscroller{
width: 180px;  /*width of scroller*/
height:220px;
margin: 10px auto 0 auto;
}

div#mysagscroller ul li{
background:navy;
color:white;
text-align:left;
padding:5px;
margin-bottom:5px;
}

div#mysagscroller ul li:first-letter{
font-size:28px;
background:white;
color:blue;
padding:0 2px;
margin-right:2px;
}
div#mysagscroller ul li a{
color:#fff;
text-decoration:none;
}

div#mysagscroller2{
float:left;
position:relative;
width: 150px;
height:230px;
border:3px solid #C0C0C0;
}

div#mysagscroller3 ul li img{
border-width:0;
display:block;
}

div#mysagscroller3{
float:left;
position:relative;
width: 150px;
height:230px;
border:3px solid #C0C0C0;
margin-left:8px;
}

div#mysagscroller4{
float:left;position:relative;width:95%;height:230px;border:1px solid #C0C0C0;margin:0;
}
div#mysagscroller3 ul li img{
border-width:0;
display:block;
}

	hr.hr {
		color:rgb(200,185,220);
		size:3;
		width:400px;
	}
	hr.hr2 {
		text-align: center;
		margin: 0 auto;
		float:none;
		width:115px;
		size:4px;
		color:rgb(50,45,10);
	}
	dl.dl {
	text-align:justify;
	display: inline;
	margin:0;
	padding:0;
	}
	dt.dt {
	text-align:justify;
	display: inline;
	margin:0;
	padding:0;
	}
	dd.dd {
	text-align:justify;
	display: inline;
	margin:0;
	padding:0;
	}	

#social	{
	float:right;
	width:40%;
	padding: 5px;
	text-align:left;
	}
#social_bx	{
	float:left;
	width:28%;
	padding: 5px;
	margin-right: 5px;
	}
	#searchIE {
	 display:none;
	 visibility:hidden;
	 width:0;
	 margin:0;
	}
.twoColLiqRtHdr #footer {
	position:relative;
	clear:both;
	padding: 0 10px; 
	background-color:#01013e;
	margin: 7px auto 0 auto;
	font-family:Kozuka Gothic Pro B, Helvetica, sans-serif;
	font-size:13px;
	font-weight:600;
	color:#b6f3f7;
	border-top: outset 4px red;
}

	#footer ul li a:visited { color: #fff; text-decoration: none; }
	#footerBox {
		position:relative;
		background:url('http://planets.powerfortunes.com/images/footer_bg1.png') no-repeat center;
		background-size: 100% 100%;
		padding:4px 5px 4px 2px;
		text-align:center;
		float:left;
		width: 23%;
		height: 169px;
		margin: 3px 2px 2px 5px;
	}
		#footerBox li a:link{
		text-decoration:none;
		color: /* #b6f3f7 */ #d8e8ff;
		}
		#footerBox a:hover{
		background-color:#fe5705;
		padding: 0 8px 3px 8px;
		font-style:italic; color: #ffffff;
		text-transform:capitalize;
		border:1px solid #ffffff;
		}
		#footerBox li a:visited { color: #fff; text-decoration: none; }
		.footerhd {
		float:none;
		width: 95%;
		text-align:center;
		margin: 0px 5px 1px 5px;
		font-family:Arial;
		font-style:italic;
		font-size: 10pt;
		color: red /*#fe5705*/;
		padding-top:3px	;
		}
		.footlist {
		width:100%;
		float:left;
		text-align:left;
		padding:2px 10px 2px 0;
		list-style:none;
		}
.footXtr {
position:relative;
width:45%;
float:left;
background:none;
padding:5px auto 5px auto;
margin:0 auto 0 5%;
text-align:center;
}
#search-box{
width:100%;
display:inline-block;
background:none;
float:left;
}
	.search-box{
	width: auto;
	position:relative;
	size:auto;
	height:35px;
	display:inline;
	float:left;
	background:url('http://planets.powerfortunes.com/images/search_imgbk.png') no-repeat right;
	background-size: 100% 65%;
	padding: 1px 2px 1px 12px;
	margin:3px 1px 0 0;
/*	font-family:Kozuka Gothic Pro B, arial, sans-serif;
	font-size:12px;
	font-weight:normal;
	color:#ffffcc; */
	outline:none;
	border:none;
	}
	.search-box:focus {
	background:url('http://planets.powerfortunes.com/images/search_img.png') no-repeat center;
	outline: none;
	background-size: 100% auto;
	}
	#srcBtn{
	position: relative;
	float:left;
	display:inline;
	padding:0;
	width: 40px;
	}
.btn {
	position: relative;
	float:right;
	display:block;
	width: 40px;
	height: 30px;
	margin:8px 0 0 0;
	cursor: pointer;
	background:url('http://www.powerfortunes.com/powerfortunes3.0/images/search_btn.png') no-repeat top right;
	background-position:right;
	outline:none;
	border: none;
	}
	.btn:hover{
	opacity: 0.5;
    transition: opacity .55s ease-in-out;
    -moz-transition: opacity .55s ease-in-out;
    -webkit-transition: opacity .55s ease-in-out;
}
.copy {
float:none;
position:relative;
display:block;
margin: 17px 1% 0 1%;
width: auto;
height: auto;
clear:both;
text-align:center;
border-top: solid 5px #01012e;
padding: 7px 2% 5px 2%;
overflow:hidden;
}
#log {
width: 28%;
height: 22px;
position:relative;
float:left;
display:block;
padding: 2px auto 7px auto;
margin:5px auto;
}
#reg {
width: 49%;
list-style: none;
position: relative;
float:left;
text-align:center;
padding:0;
margin: 0 auto;
}
#reg a:link {
text-decoration:none;
font:Kozuka Gothic Pro B, Helvetica, sans-serif;
font-size:12px;
color:#006990;
font-weight:600;
}
#top_lnk {
width: 300px;
height: 32px;
background: url('http://planets.powerfortunes.com/images/nav_bg5.png') top no-repeat;
margin: 0 auto 0 7%;
padding: 0;
position: relative;
float:left;
}
	#top_lnk li {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	top: -1px;
	}
	#top_lnk li, #top_lnk a {
	height: 32px;
	display:block;
	cursor:pointer;
	}
	#panel1b {
	left: 3px;
	width: 47px;
	}
	#panel2b {
	left: 52px;
	width: 47px;
	}
	#panel3b {
	left: 100px;
	width: 45px;
	}
	#panel4b {
	left: 147px;
	width: 42px;
	}
	#panel5b {
	left: 193px;
	width: 47px;
	}
	#panel6b {
	left: 242px;
	width: 50px;
	}
#social_lnk {
display: inline-block;
width: 300px;
height: 45px;
background:url('http://planets.powerfortunes.com/images/social_btns.png') top no-repeat;
margin: 0 auto;
padding: 0;
position: relative;
float:left;
}
	#social_lnk li {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	top: 5px;
	}
	#social_lnk li, #social_lnk a {
	height: 38px;
	display:block;
	cursor:pointer;
	}
	#social_lnk a:hover {
	opacity:0.9;
	}
	#spanel1b {
	left: 6px;
	width: 40px;
	}
	#spanel2b {
	left: 54px;
	width: 42px;
	}
	#spanel3b {
	left: 107px;
	width: 39px;
	}
	#spanel4b {
	left: 154px;
	width: 41px;
	}
	#spanel5b {
	left: 255px;
	width: 41px;
	}
	#spanel6b {
	left: 203px;
	width: 43px;
	}
.gooTrn{
float:left;
width:20%;
display: inline-block;
overflow:hidden;
margin: 3px 5px 6px 5px;
}
#endbar{
float: none;
background-color: rgba(58,58,58,0.8) /*#e8f4ff*/;
position:fixed;
-moz-opacity:0.80;
bottom:0px;
width:100%;
height:auto;
padding:1px 0 0 8px;
margin:0 auto;
text-align:center;
clear: both;
visibility:visible;
z-index: 10;
opacity:.80;
filter: alpha(opacity=80);
border-top:outset 3px #808080;
}

#top_hd{
float:left;
height:17px;
background:url('http://planets.powerfortunes.com/images/top_hd1.png') no-repeat top left;
width:60%;
text-align:left;
margin:0 auto 0 35px;
}
/*
.topseg{
width:30%;
height:auto;
float:left;
background:#3a3518;
padding: 0 1px 2px 1%;
margin:2px 3px 4px 0;
font: status-bar;
font-size:12px;
text-align:left;
}
#topseg a:link {
color:#eee;
}
#topseg a:hover {
color:#FF0000;
background-color:rgb(58,58,58);
font-size:8pt;
font-style:italic;
font-weight: 600;
}
#topseg a:visited {
color:#FF0000;
}
*/
.topseg ul{
width:99%;
position:relative;
display:inline;
float:left;
background:#3a3518;
padding: 0 1% 2px 1%;
margin:3px 0 5px 0;
font: status-bar;
text-align:left;
list-style:none;
}
.topseg li{
float:left;
width:30%;
font-size:12px;
margin:0 9px 0 2px;
padding:2px 1px 2px 1%;
position:relative;
list-style:none;
background-color:#3a3518;
}
.topseg li a {
color:#eee;
text-decoration:none;
}
.topseg li:hover {
color: #00FFFF;
background-color:#000;
font-style:italic;
font-weight: 600;
}
.topseg li a:visited {
color:#FF0000;
}
/*Back to top */

#back-top {
	position: relative;
	display:block;
	width:auto;
	float:left;
	text-align:center;
	padding:0;
	margin:0;
}
#back-top a {
	text-align: center;
	font: 10px Kozuka Gothic Pro B, Helvetica, sans-serif #339900;
	font-style:italic;
	text-transform: uppercase;
	font-weight:600;
	text-decoration: none;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}

#back-top a:link {color: #e9eaf1;}
#back-top a:hover {
	color: #5a5643;
}
#back-top span {
	width: 21%;
	height: auto;
	display: block;
	/* rounded corners 
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	/* background color transition 
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
*/
}

.verBoxbg {
		float:none;
		text-align:center;
		width:  99%;
		height:auto;
		margin: 5px;
		padding : 2px;
		clear:both;
	}
#mob_men{
display:none;
visibility:hidden;
width:0;
height:0;
}

.responsive { width: 95%; height: 90px; }
.responsive2 { width: 99%; height: 300px; }
.responsive3 { width: 98%; height: 600px; }

#back-top {
	position: relative;
	display:inline;
	width:130px;
/*	bottom: 5px; */
	right: 20px;
	float:right;
	text-align:right;
	padding:2px;
	margin:auto;
}
#back-top a {
	text-align: center;
	font: 10px Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	font-weight:600;
	text-decoration: none;
	color: #bbb;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #000;
}
/* arrow icon (span tag) */
#back-top span {
	width: 100px;
	height: auto;
	display: block;
	margin-bottom: 7px;
/*	background: #ddd url(../images/up-arrow.png) no-repeat center center; */
	/* rounded corners */
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	/* background color transition */
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover span {
	background-color: #777;
}
#site_list ul {
width:99%;
position:relative;
display:inline;
float:left;
padding: 0 1% 2px 0;
margin:0 auto;
font: status-bar;
text-align:left;
list-style:none;
}
#site_list li{
float:left;
width:auto;
font-size:13px;
margin:2px 1% 3px 1%;
padding:2px 1% 2px 0;
list-style:none;
}
#site_list li:hover {
color: #000033;
background-color:#CCCCCC; /* CC9999*/
font-style:italic;
font-weight: 600;
}
#site_list li a{
color:#00009a;
text-decoration:none;
}
#flexibox{
position:relative;float:left;
width: 29%;
min-height:15%;
}
#flexibox2{ position:relative;
float:left;
width: 30%;
}
#flexibox4{ position:relative;
float:left;
width: 40%;
min-height:15%;
}
#flexibox4x{ position:relative;
float:left;
width: 40%;
}
#flexibox5{ position:relative;
float:left;
width: 50%;
min-height:15%;
}
#flexibox6 {position:relative;
float:left;
width: 55%;
}
#flexibox7 {position:relative;
float:left;
width: 75%;
}
#flexibox5_10{
position:relative;
float:left;
width: auto;
}
#box{ position:relative;float:left; width: auto;}
#box5{ position:relative;float:left; width: 5%;}
#box10{ position:relative;float:left; width: 10%;}
#box15{ position:relative;float:left; width: 15%;}
#box20{ position:relative;float:left; width: 20%;}
#box25{ position:relative;float:left; width: 25%;}
#box30{ position:relative;float:left; width: 30%;}
#box33{ position:relative;float:left; width: 33%;}
#box35{ position:relative;float:left; width: 35%;}
#box40{ position:relative;float:left; width: 40%;}
#box45{ position:relative;float:left; width: 45%;}
#box50{ position:relative;float:left; width: 50%;}
#box55{ position:relative;float:left; width: 55%;}
#box60{ position:relative;float:left; width: 60%;}
#box65{ position:relative;float:left; width: 65%;}
#box70{ position:relative;float:left; width: 69%;}
#box80{ position:relative;float:left; width: 80%;}
#box90{ position:relative;float:left; width: 90%;}
#box95{ position:relative;float:left; width: 95%;}
#box100{ position:relative;float:left; width: 98%;}
#box110{ position:relative;float:left; width: 100%;}

.height1x{min-height:60%;}
.height2{height:23px;}
.height3{height: 30px;}
.height60{height: 60px;}
.height7{height: 75px;}
.height10{height: 100px;}
.height15{height: 150px;}
.height20{height: 200px;}
.height25{height: 250px;}
.height30{min-height: 300px;}
.height35{height:350px;}

.center{text-align:center;}
.justify{text-align:justify;}
.left{text-align:left;}
.right{text-align:right;}
.spacer1{padding: 8px; margin: 5px;}
.spacer2{padding: 3px; margin: 1px;}
.spacer_vt{padding:4px 0 5px 0; margin: 1% 1% 0 0;}
.spacer_hz{padding: 0 1% 0 1%; margin: 0 1% 0 1%;}

.nav_clr{background-color:#10105e;}
.nav_clr1{background-color:#080769;}
.blue1{background-color:#00FFFF;}
.blue2{background-color:#c5ccff;}
.blue3{background-color:#0099FF;}
.blue4{background-color:#0000FF;}
.blue5{background-color:#0000CC;}
.blue7{background-color:#000066;}
.blue9{background-color:#000011;}
.blue3{background-color:#0099FF;}
.bgBlack{background-color:#000;}
.bgWhite{background-color:#fff;}
.bgBlueGrayL{background-color: rgb(180,190,220);}

.fnGrey {color: #CCCFDE;}
.blueDark {color: #000080;}
.black {color: #000000;}
.White {color:#ffffff;}
.red {color:rgb(252,2,2);}
.red_dr {color:#CC0000;}
.bgWhite {background-color:rgb(255,255,255);}
.bgliYellow {background-color:rgb(250,250,102);}
.bgRed {background-color:rgb(255,80,2);}
.bgblue_text{font-size: 9pt; 
font-family: BankGothic Md BT; 
color: #0033CC;
}
.dispBor {
		border:3px outset #9eFFFF;
		border-radius: 7px ;
		}
.border{	
		border:solid;
		border-width:1px;
		border-color:#808080;
		}	
	.borderR{	
		border-right:solid;
		border-width:2px;
		border-color:#808080;
		}
	.borderL{	
		border-left:solid;
		border-width:1px;
		border-color:#808080;
		}
	.borderT{	
		border-top:solid;
		border-width:1px;
		border-color:#808080;
		}	
	.borderB{	
		border-bottom:solid;
		border-width:1px;
		border-color:#808080;
		}
	.borderRnd{
	border: outset 1px #d1d0de;
	border-radius: 10px ;
	border-radius:10px ;
	-moz-border-radius: 10px ;
	-moz-border-radius: 10px ;
	-webkit-border-radius: 10px ;
	-webkit-border-radius: 10px ;
	}
	.borderRclr{
	border: outset 2px #000;
	border-radius: 10px ;
	border-radius:10px ;
	-moz-border-radius: 10px ;
	-moz-border-radius: 10px ;
	-webkit-border-radius: 10px ;
	-webkit-border-radius: 10px ;
	}
.RndBg {
	background-color:#e4e4f1;  /*#DADAF1,8c8cb2,e3e1e9,131460*/
	border: outset 1px #d1d0de;
	border-radius: 10px ;
	border-radius:10px ;
	-moz-border-radius: 10px ;
	-moz-border-radius: 10px ;
	-webkit-border-radius: 10px ;
	-webkit-border-radius: 10px ;
	}
.Kozuka{
font:Kozuka Gothic Pro B, Helvetica, sans-serif;
color:#006990;
font-weight:600;
text-decoration:none;
font-size:14px;
}
.pro_text a:link{
		color:#006990;
		text-decoration:none;
		}
.pro_text:hover{background-color:#99FFFF;
		padding: 0 8px 0 8px;
		font-style:normal;
		border:1px solid #808080;
		}
h1 {
font:Kozuka Gothic Pro B, Helvetica, sans-serif italic;
font-size:16pt;
color:#996600;text-shadow: #0000CC 0 0 2px;
}
h2 {
font-family:Kozuka Gothic Pro B, Helvetica, sans-serif;
font-size:16pt;
color: #996600;text-shadow: #0000CC 0 0 2px;
}
h3 {
font-family:Kozuka Gothic Pro B, Helvetica, sans-serif;
font-size:16pt;
color: #996600;text-shadow: #0000CC 0 0 2px;
}
h4 {
font-family:Kozuka Gothic Pro B, Helvetica, sans-serif;
font-size:16pt;
color: #996600;text-shadow: #0000CC 0 0 2px;
}
h5 {
font-family:Kozuka Gothic Pro B, Helvetica, sans-serif;
font-size:16pt;
color: #996600;text-shadow: #0000CC 0 0 2px;
}
h6 {
font-family:Kozuka Gothic Pro B, Helvetica, sans-serif;
font-size:16pt;
color: #996600;text-shadow: #0000CC 0 0 2px;
}
.f1 {
		font-family:Arial;
		color: #FF0000;
		font-size:9pt;
	}
	.f3 {
		font-family:Verdana;
		color:rgb(72,35,83);
		font-size:10pt;
		font-weight: 500;
	}

   .f4 {
		font-family:Arial;
		color:rgb(50,75,50);
		font-size:9pt;
	}
	.f5 {
		font-family:Arial;
		color:rgb(0,0,255);
		font-size:8pt;
		font-weight:bold;
	}
	.f6 {
		font-family:Arial;
		font-size: 10pt;
		color: rgb(8,51,204);
	}
	.f7 {
		font-family:Arial;
		color: rgb(254,253,252);
		font-size: 8pt;
		font-weight:bold;
	}
	.f8 {
		font-family:Verdana;
		color: rgb(0,69,130);
		font-weight:bold;
	}
	.f9 {
		font-family:Arial;
	color: #003366;
		font-size:11pt;
		font-weight:bold;
	}
.f10 {font-size:10px;}
.f11 {font-size:11px;}
.f12 {font-size:12px;}
.f13 {font-size:13px;}
.f14 {font-size:14px;}
.font10{font-size:80%}
.noBorderRt{border-right: none;}

	.fadein {
		position:relative;
		height:auto;
		width:280px;
	}
	.fadein img {
		position:absolute;
		left:0;
		top:0;
		cursor: pointer;
	}
	
	.borderRnd1{
border:solid;
border-width:1px;
border-color:#808080;
border-radius: 10px ;

border-radius:10px ;
-moz-border-radius: 10px ;
-moz-border-radius: 10px ;
-webkit-border-radius: 10px ;
-webkit-border-radius: 10px ;
}

/* -- text colors --*/
.menuTextDecor {color: #00CCFF;	}
.glass {color: #00CCFF;	}
.glassDark {color: #3300CC;}
.bgliGreen {background-color:rgb(200,240,203); }
.liGreen {color: rgb(200,250,150);}
.bgBiege {background-color: #fff5cd;}
.bgfnGrey {background-color: #CCCFDE;}
.bglgtGrey {background-color: rgb(230,235,235);	}
.bgsky{background-color:#9eFFFF;}
.sunset {color: #EE3310;}
.bcBlue {background-color:rgb(12,12,123);}
.noBorder {border: none;}
.noBorderOnLeft {border-left: none;}
.noBorderbot {border-bottom: none;}
.noBorderOnRight {border-right: none;}
.bgliBlue {background-color: rgb(210,230,245);}
.noList{list-style:none;}
.noLink{text-decoration:none;}
.center {text-align:center; float:none; margin: 0 auto;}
#forms{
position:relative;
float:none;
width:auto;
min-height:50%;
height:auto;
margin: 0;
padding:1%;
clear:left;
/*
border: outset #ce4103 3px;
border-radius: 10px ;
border-radius:10px ;
-moz-border-radius: 10px ;
-moz-border-radius: 10px ;
-webkit-border-radius: 10px ;
-webkit-border-radius: 10px ;*/
font:"Franklin Gothic Medium";
font-size: 12px;
color:#b6f3f7;
font-weight:500;
}

#forms a:link{text-decoration:none;
color:#ce4103;
}
.fld{
position:relative;
width:auto;
height: auto;
float:none;
margin:1%;
padding:6px;
}

.row{
width:98%;
display:block;
position:relative;
height: auto;
float:none;
margin:0 auto;
padding:6px;
clear:both;
}
.prodPg_feat {
		text-align: center;
		background:url('http://planets.powerfortunes.com/images/prodPgBg1.png') no-repeat center;
		background-size:100% 100%;
		float : left;
		padding: 3px;
		margin: 0;
		font: Tahoma bold 13px;
		color:#fff;text-shadow:#FFFF00 0 0 2px;
		border:none;
	}
.prodPg_feat:hover{
opacity: 0.5;
transition: opacity .55s ease-in-out;
-moz-transition: opacity .55s ease-in-out;
-webkit-transition: opacity .55s ease-in-out;
color: #fa6b0c;
}

.big_btn {
		text-align: center;
		background:url('http://planets.powerfortunes.com/images/big_btn.png') no-repeat center;
		background-size:100% 100%;
		float : left;
		padding: 5px 8px;
		margin: 0;
		font: Tahoma bold 13px;
		color:#fff;
		text-shadow:#FFFF00 0 0 2px;
		border:none;
	}
	.big_btn:hover{
opacity: 0.5;
transition: opacity .55s ease-in-out;
-moz-transition: opacity .55s ease-in-out;
-webkit-transition: opacity .55s ease-in-out;
color: #fa6b0c;
}
	.bgButton {
		width:120px;
		height:30px;
		float:left;
		background:url('http://planets.powerfortunes.com/images/prodPgBg1.png') no-repeat center;
		margin:0 auto;
		padding-top:5px 15px 3px 5px;
		font:Arial bold 12px;
		color: #fff;text-shadow:#FFF 0 0 2px;;
		border:none;
	}
.bgButton:hover{
opacity: 0.5;
transition: opacity .55s ease-in-out;
-moz-transition: opacity .55s ease-in-out;
-webkit-transition: opacity .55s ease-in-out;
color: #fa6b0c;
}
	.polic {
	position:relative;
		float: left;
		width:auto;
		text-align:left;
		display:block;
		margin: 5px;
		padding:5px;
		font:Arial, Helvetica, sans-serif;
		font-size:13px;
		font-weight:600;
		background-color:#FFFFFF;
	}

	.polic a:hover {
		background-color:#d8e8ff;
		font-family:Tahoma;
		color:#666;
	}
	.polic ol {
	width:100%;
	display:block;
	}
	.polic li {
	text-align:left;
	margin:4px;
	font-style:italic;
	color:#000066;
	padding-bottom: 3px;
	list-style:none;
	}
	.polic li a{
	text-decoration:none;
	color:#ce4103;
	}
	.imageProd_1 {
		border:2px solid #808080;
		padding:2px;
		text-align:center;
		float:none;
		width: auto;
		height: auto 182px;
		margin: 3px 5px 5px 10px;
	}
	.imageProd_2 {
		border:2px solid #808080;
		padding:2px;
		text-align:center;
		float:right;
		width: auto;
		height: auto 182px;
		margin: 3px 5px 2px 10px;
	}
	.imageProd_3 {
		border:1px solid #808080;
		padding:2px;
		text-align:center;
		float:left;
		width: auto;
		height: auto 182px;
		margin: 1px 1px 1px 1px;
	}
.fldW {
display:inline;
width:98%;
position:relative;
padding-left:4px;
}
.dir {
 padding: 7px;
 background-image:url('http://planets.powerfortunes.com/images/arrow_7.gif') no-repeat;
 background-position:95% 55%;
}
.hint {
   	display: none;
    position: absolute;
    right: -20%;
    width: 150px;
    margin-top: 1px;
    border: 1px solid #c93;
    padding: 10px 12px;
    background: #ffc url('http://planets.powerfortunes.com/images/pointer.gif') no-repeat -5px 5px;
	color:#000000;
	z-index: 1;
}

/* The pointer image is hadded by using another span */
.hint .hint-pointer {
    position: absolute;
    right: -20%;
    top: 5px;
    width: 150px;
    height: 19px;
    background: url('http://planets.powerfortunes.com/images/pointer.gif') left top no-repeat;
}
#psychic_banner{
background:url(http://liveperson-affiliates-marketing.s3.amazonaws.com/text_banners/live_astrology/300x250_text.png) no-repeat top right;
width:95%;
height:250px;
}

#question_text{
float:left;
overflow:auto;
resize:none;
margin-left:26px;
margin-top:101px;
width:248px;
height:53px;
border:0;
font-family:Arial, Helvetica, sans-serif;
font-size:11px;
color:#6d6d6d;
}
#link_out{
clear:left;
float:left;
margin-left:164px;
margin-top:25px;
}
#link_out img{
border:0;
}
.tableFreeFor {
	position:relative;
		float:none;
		width:100%;
		height:auto;
		background-color:rgb(12,12,123);
		text-align:center;
		font-family:Tahoma;
		font-size: 8pt;
		color: rgb(253,253,253);
		font-weight:600;
		margin-left:0;
		margin-right:0;
		margin-top:9;
		margin-bottom:10;
	}
	.tdFreeFor_1 {
		float:none;
		width:33%;
		height:100%;
		background: url('http://planets.powerfortunes.com/images/fireworks_1.gif') top center;
		text-align:center;
	}
@media screen and (min-width: 1100px) and (max-width: 2600px) {
	#container  {padding: 0 auto 0 1%;}
	#mainContent { 	width:70%; }
	#header {padding: 0 0 0 5%; float:none;}
	.twoColLiqRtHdr #sidebar1 { width:26%; }
	.responsive { width: 900px; height: 90px; }
	.responsive2{ width: 390px; height: 320px; }
	.responsive3 { width: 390px; height: 600px; }
	#5_10{width: 49%;}
	.flex_img{width:90%;}
}

@media screen and (min-width: 781px) and (max-width: 920px) {
	#mainContent {
	position:relative;
	float:left;
	clear:both;
	width:57%;
	margin: 5px; /* the left margin should mirror the margin on the header and footer for proper alignment. */
	text-align:justify;
	}
	.twoColLiqRtHdr #sidebar1 { width:39%; }
	.search{
	width: 33%;
	display:inline-block;
	padding: 0;
	margin: 6px 0;
	}

.banr{
	width:35%;
	margin:0;
	padding-right:10px;
	}
.nav{
	padding: 0 auto 0 1%;
	width:99%;
}
.height30{min-height:auto;}
#flexibox{width: 95%;}
#flexibox2{width: auto;}
#flexibox4{ width:auto;}
#flexibox4x{ width:auto;}
#flexibox5{width: auto;}
#flexibox7{ width:auto;}
#flexibox5_10{width: 48%;}
.responsive { width: 92%; height: 90px; }
.responsive2 { width: 92%; height: 90px; }
}

@media screen and (min-width: 500px) and (max-width: 780px) { 
ul#mob_men{
display:none;
visibility:hidden;
width:0;
height:0;
}
.twoColLiqRtHdr #header {
border:none;
background: none;
}
}

@media screen and (min-width: 300px) and (max-width: 780px) { 

#mobile1{
	position:relative;	
	display: inline;
	visibility: visible;
	overflow: visible;
	width:100%;
}
.twoColLiqRtHdr #header {
border:none;
background: none;
}
.topNav{
width: 99%;
float:none;
clear:both;
background: none;
}
#top_lnk {
background-position:center;
background-size: 100% auto;
margin: 0 auto;
float:none;
}
.gooTrn{
display:none;
width:0;
/*float:right;
width:30%;*/
margin: 0;
padding:0;
}
#log {
position:relative;
width: 30%;
height: 30px;
float:left;
padding:1px 0 12px 5px;
text-align:center;
margin:5px auto;
}
#reg {
clear: both;
}
.logo{
width: 40%;
float:left;
clear: left;
padding:1px;
}
.search{
		width: 98%;
		padding: 0;
		margin: 0 auto;
		height: auto;
		clear: both;
}
.banr{ display:none;
	width:0;
	visibility:hidden;
	overflow:hidden;
}
.bread { width: 85%; }
	
	#mainContent {
	position:relative;
	float:left;
	clear:both;
	width:97%;
	margin: 5px 0 5px 0; /* the left margin should mirror the margin on the header and footer for proper alignment. */
	text-align:justify;
	}
#mainContentR {
	float:left;
	clear:both;
	width:97%;
}
.twoColLiqRtHdr #sidebar1 {
float: none;
clear:both;	
width: 97%;
}
.twoColLiqRtHdr #sidebarL {
	float: none;
	clear:both;	
	width: 97%;
	margin:0 auto;
	}
.nav{
display:none;
visibility:hidden;
width:0;
}	
#social{
width:98%;
float:none;
clear:both;
}

#footerBox {
width: 97%;
clear:both;
height:auto;
}

.footXtr {width: 100%;
clear:both;
float:none;
text-align:center;
padding:0;
margin-left:2%;
}
	.search-box{
	width: auto;
	padding: 1px 2px 1px 12px;
	margin:3px 1px 0 5%;
	}
#social_lnk {
float:left;
margin: 0 auto;
padding:auto;
}
#endbar{float: left; width:99%;}
#top_hd{ width:47%; margin:0 auto;}
.topseg li{ width:29%; margin:0 2px 0 1px; font-size:10px;}
#back-top {
width:auto;
}
#flexibox{ width: 98%;clear:both;}
#flexibox2{ width:auto;clear:both;}
#flexibox4{width:auto;clear:both;}
#flexibox4x{width:auto; clear:both;}
#flexibox5{width: auto;clear:both;}
#flexibox6{width: 93%;}
#flexibox7{width: auto;clear:both;}
#flexibox5_10{width: 99%;}
.responsive { width: 300px; height: 50px; }
.responsive2 { width: 98%; height: 250px; }
.responsive3 { width: 98%; height: 600px; }
.RndBg {
	background-color:#e1e1f1;  /*#DADAF1,8c8cb2,e3e1e9,131460*/
	border: outset 1px #d1d0de;
	border-radius: 10px ;
	border-radius:10px ;
	-moz-border-radius: 10px ;
	-moz-border-radius: 10px ;
	-webkit-border-radius: 10px ;
	-webkit-border-radius: 10px ;
	}
.height1x{min-height:30%;}
.height30{min-height:auto;}
.spacer_hz{padding: 0 3px 0 3px; margin: 0 3px 0 3px;}
#forms{ width:auto;
padding:auto;
}
.flex_img{width:75%; height:65%;}
.flex_img2{width:95%; height:75%;}
.hide{visibility:hidden; display:none;}
.hint {
    left: 2%;
	margin-top: 25px;
	width: 230px;
}

/* The pointer image is hadded by using another span */
.hint .hint-pointer {
    left: 2%;
    top: 5px;
	width: 230px;
}
}

@media screen and (min-width: 240px) and (max-width: 299px) { 
.twoColLiqRtHdr #header {
border:none;
background: none;
}
.banr{
display:none;
width:0;
visibility:hidden;
overflow:hidden;
}
.nav{
display:none;
visibility:hidden;
width:0;
}	

.footXtr {
margin:0 auto;
}
}

//* -- Done -- *//
