@charset "utf-8";
/* CSS Document */

body {
	font: 100%/1.4 Verdana, Apage_title_rowrial, Helvetica, sans-serif;
	background-color: #666;
	margin: 0;
	padding: 0;
	color: #000;
	background-image: url(../images/pebble_bg1.png);
	background-repeat: no-repeat;
	background-attachment:fixed;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #03C;
}
a:visited {
	color: #03C;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
.content_full a:hover, .content_full a:active, .content_full a:focus { /* adding underline to links in body while hovering. */
	text-decoration: underline;
}
/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 960px;
	background: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
#header{
		background-color:#fff;
		height:138px;
		width:960px;
		margin:0;
		padding:0;
		z-index:1001;
		position:absolute;
		float:left;
}
@media print {
	#header{
	position:static;
}
.blue {
	background-color: #0079B8;	
}

}

#headerbg{
		height:138px;
		width:960px;
}
#home #header,
#home #headerbg {
	height:82px;
}
#header .logo {
	float:left;
}
#header .middle {
	width:350px;
	float:left;
	text-align:center;
}
#header .contact {
	width:200px;
	float:right;
}
#header .contact_main {
	width:200px;
	float:right;
}
#header .contact_main_phone {
	width:200px;
	float:right;
}
#header .contact_main_phone {
	width:200px;
	float:right;
}
#header .contact_main_search {
	width:200px;
	float:right;
}
#header .contact h4{
	font-size:17px;
	font-style:italic;
	font-weight:bold;
	margin:0;
}
#header .contact p {
	font-size:10px;
	margin:2px;
}
/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.middle_container {
	clear:both;
	margin:0;
	padding: 0;
}
.sidebar1 {
	float: left;
	width: 160px;
	background: #FFF;
	clear:both;
	padding: 0;
	margin:0;
}
.content {
	padding: 0;
	width: 800px;
	float: left;
}
.content_full{
	padding: 0;
	margin:0;
}
/* nav bar */
.prestige_nav{
	padding: 0 0 0 0px;
	background-color:#33F; 
	height:40px;
}
.prestige_nav .center_nav {
	width:750px; /* adjust the width as necessary for the number of "buttons" */
	margin:0 auto;
}
.prestige_nav ul{
	list-style-type:none;
	margin:0;
	padding:0;
}
.prestige_nav  li{
	display:inline;
}
.prestige_nav a{
	float: left;
	width: 125px;
	height:30px;
    display: block;
	color:#FFFFFF;
	text-decoration:none;
	text-align:center;
	font-weight: bold;
	font-size: 16px;
	padding-top:10px;
	/*background-image:url(../images/tab.png);*/
}
.prestige_nav a:hover{
	text-decoration:underline;
	background-color:#0099FF;
}
/* ~~ This is the jquery lightbox plugin ~~ */
<link rel="stylesheet" type="text/css" href="css/jquery.lightbox-0.4.css" media="screen" />

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	/*border-top: 1px solid #666;  this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #C6D580;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #ADB96E;
	color: #FFF;
}

/* ~~ The footer ~~ */
.footer {
	text-align:center;
	padding: 10px 0;
	background: #7EB543;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

/* ~~ miscellaneous float/clear classes ~~ */
.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 can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.container .middle_container .content_full #accordion div table tr th div h2 {
	color: #0080C0;
}
.container .middle_container .content_full #accordion div table tr td div h2 {
	color: #0080C0;
}
.container .middle_container .content_full #accordion div table tr th div h3 {
	color: #0080C0;
}
.container .middle_container .content_full #accordion div table tr td div h3 {
	color: #0080C0;
}
.container .middle_container .content_full #accordion div table tr td div h3 {
	color: #0080C0;
}
.container .middle_container .content_full #accordion div table tr th table tr th div {
	color: #00F;
}
.container .middle_container .content_full #accordion div table tr th table tr td {
	font-family: Arial Black, Gadget, sans-serif;
}
.container .middle_container .content_full #accordion div table tr th table tr td {
	font-family: Verdana, Geneva, sans-serif;
}
.container .header .contact table tr th table tr th h4 em {
	color: #000;
}
.container .header .contact table tr td table tr th div p a {
	color: #00F;
}
.container .middle_container .content_full #accordion div table tr th div table tr th div table tr td div h5 {
	color: #000;
}
.container .middle_container .content_full #accordion div table tr th div table tr th div table tr td div h5 {
	color: #000;
}
.container .middle_container .content_full #accordion div table tr th div table tr th table tr th form div table tr td {
	color: #000;
}
.container .middle_container .content_full #accordion div table tr th div table tr th div a {
	color: #00F;
}
.container .middle_container .content_full #accordion div table tr th div table tr th div a {
	color: #00F;
}
.pf_images {
	float: left;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 15px;
}
.product {
	clear: both;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.product_pins {
	float:right;
}
.signal_pics {
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.signal_desc {
	float:left;
	height:150;
	width: 150px;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 15px;
}
.signal_row {
	clear:both;
}
.signal_row2 {
	clear:both;
	width: 900px;
	margin-left: auto; 
	margin-right: auto;
}	
.product_pics {
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	
}
.product_desc {
	float:left;
	height:150;
	width: 150px;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}
.product_desc p,
.product_desc h1,
.product_desc h2,
.product_desc h3,
.product_desc h4,
.product_desc h5,
.product_desc h6,
.product_desc a
{
	text-align:center;
}
.product_row {
	clear:both;
	width: 800px;
	margin-left: auto; 
	margin-right: auto;
	
}	
.product_row2 {
	clear:both;
	position:relative;
	orphans: 10;
}
.contacts_row {
	clear:both;
	width: 700px;
	margin-left: auto; 
	margin-right: auto;
	
}	
.product_pin_flags {
	clear:both;
	position:relative;
	orphans: 10;
}
.floating_ad {
	position:absolute;
	top:20px;
	right:30px;
	background-color:# FFF;
	width:350px;
	height:700px;
	border:5px solid green;
}
.product_pic_button{
	width:133px;
	float:left;	
}
.product_pics2 {
	float:left;
	margin-top: 15px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 15px;
}	
.product_button {
	float:left;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 40px;
}	
.product_desc2 {
	float:left;
	width: 400px;
	margin: 15px 5px;
}
.product_desc3 {
	float:left;
	width: 490px;
	margin: 20px 5px;
}
.product_desc4 {
	float:left;
	width: 380px;
	margin: 15px 5px;
}
.product_desc5 {
	float:left;
	width: 335px;
	margin: 15px 5px;
}
.warranty {
	float:left;
	width: 900px;
	margin: 45px 10px;
}
.product_officer_pg {
	float:left;
	width: 490px;
	margin: 15px 5px 5px 5px;
}
.product_officer_pg_text {
	float:left;
	width: 225px;
	margin: 0px 5px 5px 0px;
}
.product_officer_pg_right {
	float:right;
	width: 250px;
	margin: 0px 5px;
}
.product_officer_pflag {
	float:right;
	width: 135px;
	margin: 15px 5px;
}
.product_officer_pflag_img {
	float: none;
	width: 105px;
	margin: 5px 5px 5px 5px;
}
.product_officer_pin {
	float:right;
	width: 135px;
	margin: 15px 5px;
}
.product_desc_pin_flags {
	float:left;
	width: 455px;
	margin: 15px 0px 0px 50px;
}
.product_desc_pin_flags_rt {
	float:right;
	width: 455px;
	margin: 15px 0px 0px 0px;
}
.product_desc_pin_inside {
	float:left;
	width: 280px;
	margin: 10px 0px;
}
.product_price_tbl {
	float:left;
	width: 380px;
	margin: 15px 5px;
}
.product_price_tbl2 {
	float:left;
	width: 420px;
	margin: 15px 5px;
}
.patent_tbl {
	float:left;
	width: 940px;
	margin: 15px 5px 5px 10px;
}
.product_button_space {
	float: right;
	width: 120px;
    padding: 0px;
	margin: -20px 25px 15px 390px;
}
.contact_button_space {
	float: Left;
	width: 120px;
    padding: 0px;
	margin: -30px 20px 0px 375px;
}
.contact_button_email {
	float: none
	width: 200px;
    padding: 0px;
	margin: 2px 2px 2px 2px;
}
.contact_button_main_email {
	float: none
	width: 120px;
    padding: 0px;
	margin: 0px 10px 0px 2px;
}
.product_row3 {
	clear:both;
	
}	
.contact_info_main {
	float:left;
	width: 340px;
	margin: 15px 5px;
}
.contact_info {
	float:left;
	width: 220px;
	margin: 2px 5px 5px 0px;
}
.product_pics3 {
	margin: 10px;
	float:left;
}		
.product_desc3 {
	float:left;
	width: 187px;
	margin: 15px 0px 0px 0px;
}
.product_desc3a {
	float:left;
	width: 425px;
	margin: 15px 5px;
}.container .middle_container .content_full .product_desc2 h3 a {
	color: #000;
}
.hidden {
	display:none;
}.container .middle_container .content #accordion div p a strong {
	color: #00F;
}
.prestige_pics {
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
.prestige_desc {
	float:left;
	height:150;
	width: 180px;
	margin-top: 15px;
	margin-right: 2px;
	margin-bottom: 5px;
	margin-left: 45px;
}
.prestige_row {
	clear:both;
	
}.container .middle_container .content_full .product_row2 .product_desc2 h3 a {
	color: #00F;
}
.container .middle_container .content_full .product_desc2 h3 a {
	color: #00F;
}

/*page title styles */
.page_title_row {
	clear:both;
}	
.page_title_row2 {
	clear:both;
}
.page_title_left {
	float: left;
	width: 200px;
	margin: 15px 0px 0px 15px;
}
.page_title_left2 {
	float: left;
	width: 250px;
	margin: 10px 0px 0px 0px;
}
.page_title_left img {
	float: left;
}
.page_title_left_desc {
	float: right;
}
.page_title_left_desc2 {
	float: right;
	margin: 5px 25px 0px 10px;
	text-align:center;
}
.page_title_left_desc3 {
	float: right;
	margin: 5px 45px 0px 10px;
	text-align:center;
}
.page_title_left_desc4 {
	float: right;
	margin: 15px 45px 0px 10px;
	text-align:center;
}
.page_title_center_desc {
	float: left;
	width: 530px;
}	
.page_title_center_desc2 {
	float: left;
	width: 460px;
}	
.page_title_center_desc3 {
	float: left;
	width: 460px;
    margin: 5px 15px 0px 160px;
}
.page_title_right {
	float: left;
	width: 200px;
}
.page_title_right2 {
	float: left;
	width: 250px;
    margin: 10px 0px 0px 0px;
}
.page_title_right3 {
	float: left;
	width: 250px;
    margin: 0px 0px 0px 0px;
}
.page_title_right img {
	float: right;
	margin: 15px 0px 0px 0px;
}
.page_title_right_desc {
	float: left;
	margin: 15px 0px 0px 0px;
}
.page_title_right_desc2 {
	float: right;
	margin: 5px 15px 0px 10px;
	text-align:center;
}

.container .middle_container .content_full .page_title_row .page_title_desc .page_title_right_desc div h5 strong a {
	color: #00F;
}
.container .middle_container .content_full .product_row2 .product_desc2 table tr td h5 a {
	color: #00F;
}

.product_landing {
	float:left;
	height:150;
	width: 180px;
	margin-top: 15px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 10px;
	text-align:center;
}
.product_landing_row {
	clear:both;
	width: 800px;
	margin-left: auto; 
	margin-right: auto;	
}	
a.iframe:hover {
	color:#00F;
}
a.iframe {
	border-bottom:1px dashed;
}
.yc_officer_table {
	width:930px;
	margin:0px auto;
}
.link_row {
	clear:both;
	height:72px;
	orphans: 10;
}	
.link_pic {
	float:left;
	margin-top: 15px;
	margin-right: 10px;
	margin-bottom: 5px;
	margin-left: 15px;
}	
.link_desc {
	float:left;
	width: 425px;
	margin: 15px 5px;
}
.product_detail_row {
	clear:both;
	width: 850px;
	margin-left: auto; 
	margin-right: auto;
}
.product_detail_frames {
	clear:both;
	width: 950px;
	margin-left: auto; 
	margin-right: auto;
}
.product_detail_shadowbox {
	float:left;
	height:150;
	width: 255px;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 15px;
}
.product_detail {
	float:left;
	height:150;
	width: 200px;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 60px;
}
.product_desc p,
.product_desc h1,
.product_desc h2,
.product_desc h3,
.product_desc h4,
.product_desc h5,
.product_desc h6,
.product_desc a
{
	text-align:center;
}
.product_detail_desc {
	float:left;
	height:150;
	width: 195px;
	margin-top: 15px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
}
.plant_pics_row {
	clear:both;
	width: 820px;
	margin-left: auto; 
	margin-right: auto;
}
.plant_pics_desc {
	float:left;
	height:150;
	width: 199px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 5px;
}
plant_pics_text {
	float:left;
	height:150;
	width: 199px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.clearfix {
    display: inline-block;
}
 
html[xmlns] .clearfix {
    display: block;
}
 
* html .clearfix {
    height: 1%;
}
.prestige_patent {
	float: right;
	margin-top: 5px;
	margin-right: 22px;
}
.hr_line{
	float: left;
	margin-left: 70px;
}
.page_title_text {
  text-shadow: 0 1px 0 #ccc,
               0 2px 0 #c9c9c9,
               0 3px 0 #bbb,
               0 4px 0 #b9b9b9,
               0 5px 0 #aaa,
               0 6px 1px rgba(0,0,0,.1),
               0 0 5px rgba(0,0,0,.1),
               0 1px 3px rgba(0,0,0,.3),
               0 3px 5px rgba(0,0,0,.2),
               0 5px 10px rgba(0,0,0,.25),
               0 10px 10px rgba(0,0,0,.2),
               0 20px 20px rgba(0,0,0,.15);
}


{
    box-sizing: border-box;
}

/* Create three columns of equal width */
.columns {
    float: left;
    width: 120px;
    padding: 3px;
}
.columns2 {
    float: left;
    width: 80px;
    padding: 3px;
}
.columns3 {
    float: left;
    width: 88px;
    padding: 3px;
}
.columns4 {
    float: left;
    width: 75px;
    padding: 2px;
}
.columns5 {
    float: left;
    width: 160px;
    padding: 2px;
}
.columns6 {
    float: left;
    width: 80px;
    padding: 2px;
}
.columns6a {
    float: left;
    width: 84px;
    padding: 2px;
}
.columns7 {
    float: left;
    width: 94px;
    padding: 2px;
}
.columns8 {
    float: left;
    width: 118px;
    padding: 2px;
}
.columns9 {
    float: left;
    width: 114px;
    padding: 2px;
}
.columns10 {
    float: left;
    width: 200px;
    padding: 2px;
}
.columns_divider {
    float: left;
    width: 25px;
    padding: 2px;
}
.columns_patent {
    float: left;
    width: 164px;
    padding: 2px;
}
.columns_patent_desc {
    float: left;
    width: 600px;
    padding: 2px;
}
.columns_email {
    float: left;
    width: 120px;
    padding: 2px 2px 5px 50px;
}
.columns_main_email {
    float: left;
    width: 120px;
    padding: 0px 2px 0px 35px;
}
.buy_now_row {
    float: right;
    width: 35px;
    padding: 3px;
}

/* Style the list */
.price {
    list-style-type: none;
    border: 1px solid #eee;
    margin: 0;
    padding: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

/* Add shadows on hover */
.price:hover {
    box-shadow: 0 8px 12px 0 rgba(0,0,0,0.2)
}

/* Pricing header */
.price .header {
    background-color: #0079b8;
    color: white;
    font-size: 12px;
}
.price .header2 {
    background-color: #0079b8;
    color: #0079b8;
    font-size: 12px;
}
.price .header_pink {
    background-color: #F238A6;
    color: #FFF;
    font-size: 12px;
}
.price .header_pink2 {
    background-color: #F238A6;
    color: #F238A6;
    font-size: 12px;
}

/* List items */
.price li {
    border-bottom: 1px solid #eee;
    padding: 3px;
    text-align: center;
}

/* Grey list item */
.price .grey {
    background-color: #CCC;
    font-size: 10px;
}
.price .grey2 {
    background-color: #CCC;
    font-size: 10px;
	margin: 10px 0px 10px 0px;  
}
/* white list item */
.price .white {
    background-color: # FFF;
    font-size: 10px;
}
.price .white2 {
    background-color: # FFF;
    font-size: 10px;
	margin: 10px 0px 10px 0px;  
}
/* The "Sign Up" button */
.button {
    background-color: #0079b8;
    border: none;
    color: white;
    padding: 3px 3px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
}

/* Change the width of the three columns to 100%
(to stack horizontally on small screens) */
@media only screen and (max-width: 300px) {
    .columns {
        width: 100%;
    }
}

.btn {
  background: #3498db;
  background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  background-image: -o-linear-gradient(top, #3498db, #2980b9);
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  text-shadow: 1px 1px 3px #3b3b3b;
  font-family: Georgia;
  color: #f4f6f7;
  font-size: 14px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.btn:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}
.btn_blank { /* 10px tall div applied anywhere space needed between elements */
  background: #3498db;
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;

  font-family: Georgia;
  color: #3498db;
  font-size: 14px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.btn_blank:hover {
  background: #3498db;
  text-decoration: none;
}
.btn_pink {
  background: #f238a4;
  background-image: -webkit-linear-gradient(top, #f238a4, #d62b92);
  background-image: -moz-linear-gradient(top, #f238a4, #d62b92);
  background-image: -ms-linear-gradient(top, #f238a4, #d62b92);
  background-image: -o-linear-gradient(top, #f238a4, #d62b92);
  background-image: linear-gradient(to bottom, #f238a4, #d62b92);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: Arial;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

.btn_pink:hover {
  background: #f57dbd;
  background-image: -webkit-linear-gradient(top, #f57dbd, #ac035d);
  background-image: -moz-linear-gradient(top, #f57dbd, #ac035d);
  background-image: -ms-linear-gradient(top, #f57dbd, #ac035d);
  background-image: -o-linear-gradient(top, #f57dbd, #ac035d);
  background-image: linear-gradient(to bottom, #f57dbd, #ac035d);
  text-decoration: none;
}
.P{
    font-family: "Georgia", serif;
}
.spacer5 { /* 5px tall div applied anywhere space needed between elements */
	clear: both;
	display: block;
	line-height:5px
}
.spacer10 { /* 10px tall div applied anywhere space needed between elements */
	clear: both;
	display: block;
	line-height:10px
}
.spacer20 { /* 20px tall div applied anywhere space needed between elements */
	clear: both;
	display: block;
	height: 20px;
}
.spacer30 { /* 30px tall div applied anywhere space needed between elements */
	clear: both;
	display: block;
	height: 20px;
}
.spacer40 { /* 40px tall div applied anywhere space needed between elements */
	clear: both;
	display: block;
	height: 40px;
}
.spacer50 { /* 50px tall div applied anywhere space needed between elements */
	clear: both;
	display: block;
	height: 50px;
}
.spacer60 { /* 60px tall div applied anywhere space needed between elements */
	clear: both;
	display: block;
	height: 60px;
}
.spacer70 { /* 70px tall div applied anywhere space needed between elements */
	clear: both;
	display: block;
	height: 70px;
}
.spacer80 { /* 80px tall div applied anywhere space needed between elements */
	clear: both;
	display: block;
	height: 80px;
}
.div_shadow
{
box-shadow: inset 0px 0px 100px 0px #ABABAB,11px 105px 10px 3px #242424;
-webkit-box-shadow: inset 0px 0px 100px 0px #ABABAB,11px 105px 10px 3px #242424;
-moz-box-shadow: inset 0px 0px 100px 0px #ABABAB,11px 105px 10px 3px #242424;
-o-box-shadow: inset 0px 0px 100px 0px #ABABAB,11px 105px 10px 3px #242424;
}
/* Prestige News Styles*/
.news_row1l h2,.row2 h2 {
font-family:Georgia, "Times New Roman", Times, serif;
font-size:30px;
line-height:36px;
margin:0;
}
.news_topl {
width:49%;
float:left;
}
.news_row2r {
width:470px;
float:right;
border-top:10px #333 solid;
}

.news_row3l {
width:460px;
float:left;
margin: 0px 20px 0px 20px; 
}
.news_row1,.row2,.row3 {
width:100%;
margin-top:20px;
margin: 0px 0px 0px 0px; 
}
.news_row3 {
width:100%;
margin-top:20px;
margin: 0px 0px 0px 5px; 
}

.news_row1l,.row2l {
width:440px;
float:left;
border-top:10px #3498db solid;
margin: 0px 0px 0px 15px; 
}

.news_row1r,.row3r {
width:470px;
float:right;
}

.news_row1rl,.row3rl,.row3ll {
width:300px;
float:left;
border-top:10px solid #F30;
margin: 0px 0px 0px 0px;
}

.news_row1rr,.row3rr,.row3lr {
width:225px;
float:left;
border-top:10px solid #09F;
margin: 0px 10px 0px 10px; 
}
.news_footer {
width:100%;
float:left;
border-top:10px #333 solid;
text-align:center;
margin-top:20px;
font-weight:700;
}
.news_topr ul {
margin-top:18px;
text-align:center;
}

.news_topr li {
display:inline;
}

.news_topr li a {
text-decoration:none;
font-size:14px;
font-weight:700;
margin-right:20px;
border-right:1px #333 solid;
padding-right:20px;
}
.news_row1rl,.row3rl,.row3ll {
width:225px;
float:left;
border-top:10px solid #F30;
margin: 0px 0px 0px 0px; 
}

.news_row1rr,.row3rr,.row3lr {
width:225px;
float:right;
border-top:10px solid #09F;
}
