﻿/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * ==|== normalize ==========================================================
 */


/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */

html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }

html, button, input, select, textarea {
	font-family: â€˜Lucida Sans Unicodeâ€™, â€˜Lucida Grandeâ€™, sans-serif;
	color: #222;
}

body {
	background-color: #FFF;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */

::-moz-selection { background: #fe57a1; color: #fff; text-shadow: none; }
::selection { background: #fe57a1; color: #fff; text-shadow: none; }


/* =============================================================================
   Links
   ========================================================================== */

a {
	color: #0088CC;
}
a:visited {
	color: #0B66AC;
}
a:hover { color: #06e; }
a:focus { outline: thin dotted; }

/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover, a:active { outline: 0; }


/* =============================================================================
   Typography
   ========================================================================== */

abbr[title] { border-bottom: 1px dotted; }

b, strong { font-weight: bold; }

blockquote { margin: 1em 40px; }

dfn { font-style: italic; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

ins { background: #ff9; color: #000; text-decoration: none; }

mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }

/* Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }

/* Improve readability of pre-formatted text in all browsers */
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }

q { quotes: none; }
q:before, q:after { content: ""; content: none; }

small { font-size: 85%; }

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }


/* =============================================================================
   Lists
   ========================================================================== */

ul, ol {
	margin-top: 1em;
	margin-right: 0;
	margin-bottom: 1em;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0px;
}
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
 */

img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }

/*
 * Correct overflow not hidden in IE9
 */

svg:not(:root) { overflow: hidden; }


/* =============================================================================
   Figures
   ========================================================================== */

figure { margin: 0; }


/* =============================================================================
   Forms
   ========================================================================== */

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }

/* Indicate that 'label' will shift focus to the associated form element */
label { cursor: pointer; }

/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */

legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; }

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */

button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */

button, input { line-height: normal; }

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
 */

button, input[type=button], input[type=reset], input[type=submit] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }

/*
 * Re-set default cursor for disabled elements
 */

button[disabled], input[disabled] { cursor: default; }

/*
 * Consistent box sizing and appearance
 */

input[type=checkbox], input[type=radio] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
input[type=search] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button { -webkit-appearance: none; }

/*
 * Remove inner padding and border in FF3/4: h5bp.com/l
 */

button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */

textarea { overflow: auto; vertical-align: top; resize: vertical; }

/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }


/* =============================================================================
   Tables
   ========================================================================== */

table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }


/* =============================================================================
   Chrome Frame Prompt
   ========================================================================== */

.chromeframe { margin: 0.2em 0; background: #ccc; color: black; padding: 0.2em 0; }


/* ==|== primary styles =====================================================
   Author:
   ========================================================================== */
















/* ==|== media queries ======================================================
   EXAMPLE Media Query for Responsive Design.
   This example overrides the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}



/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */

/* For image replacement */
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; }
.ir br { display: none; }

/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden { display: none !important; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }



/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
  * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}

/* NAV HEADER START*/

/* GLOBALHEADER */
#globalheader {
	width: 980px;
	height: 38px;
	position: relative;
	z-index: 9998;
	margin-top: 16px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
}
#globalheader #globalnav { margin: 0; padding: 0; }
#globalheader #globalnav li { display: inline; }
#globalheader #globalnav li a { float: left; width: 122px; height: 0; padding-top: 38px; overflow: hidden; }
#globalheader #globalnav li a,
#globalheader #globalsearch {
	background-image: url(../img/globalnavbg.png);
	_background-image: url(../img/globalnavbg.gif);
	background-repeat: no-repeat; }

/* BUTTONS */
#globalheader #globalnav li#gn-home a { background-position: 0 0; }
#globalheader #globalnav li#gn-about a { background-position: -121px 0; }
#globalheader #globalnav li#gn-specials a { background-position: -242px 0; }
#globalheader #globalnav li#gn-frames a { background-position: -363px 0; }
#globalheader #globalnav li#gn-eyefacts a { background-position: -484px 0; }
#globalheader #globalnav li#gn-news a { background-position: -605px 0; }
#globalheader #globalnav li#gn-location a { background-position: -726px 0; }
#globalheader #globalnav li#gn-contact a { background-position: -847px 0; }

/* OVER STATES */
#globalheader #globalnav li#gn-home a:hover { background-position: 0 -38px; }
#globalheader #globalnav li#gn-about a:hover { background-position: -121px -38px; }
#globalheader #globalnav li#gn-specials a:hover { background-position: -242px -38px; }
#globalheader #globalnav li#gn-frames a:hover { background-position: -363px -38px; }
#globalheader #globalnav li#gn-eyefacts a:hover { background-position: -484px -38px; }
#globalheader #globalnav li#gn-news a:hover { background-position: -605px -38px; }
#globalheader #globalnav li#gn-location a:hover { background-position: -726px -38px; }
#globalheader #globalnav li#gn-contact a:hover { background-position: -847px -38px; }

/* PRESSED STATES */
#globalheader #globalnav li#gn-home a:active { background-position: 0 -76px; }
#globalheader #globalnav li#gn-about a:active { background-position: -121px -76px; }
#globalheader #globalnav li#gn-specials a:active { background-position: -242px -76px; }
#globalheader #globalnav li#gn-frames a:active { background-position: -363px -76px; }
#globalheader #globalnav li#gn-eyefacts a:active { background-position: -484px -76px; }
#globalheader #globalnav li#gn-news a:active { background-position: -605px -76px; }
#globalheader #globalnav li#gn-location a:active { background-position: -726px -76px; }
#globalheader #globalnav li#gn-contact a:active { background-position: -847px -76px; }

/* ON STATES */
#globalheader.home #globalnav li#gn-home a { background-position: 0 0; cursor: default; }
#globalheader.about #globalnav li#gn-about a { background-position: -121px -114px !important; }
#globalheader.specials #globalnav li#gn-specials a { background-position: -242px -114px !important; }
#globalheader.frames #globalnav li#gn-frames a { background-position: -363px -114px !important; }
#globalheader.eyefacts #globalnav li#gn-eyefacts a { background-position: -484px -114px !important; }
#globalheader.news #globalnav li#gn-news a { background-position: -605px -114px !important; }
#globalheader.location #globalnav li#gn-location a { background-position: -726px -114px !important; }
#globalheader.contact #globalnav li#gn-contact a { background-position: -847px -114px !important; }
/* NAV HEADER end*/


h1 { 
font-family: 'Open Sans', Arial, sans-serif;
 font-weight: 400; 
 }
h2 { 
font-family: 'Open Sans', Arial, sans-serif;
 font-weight: 400; 
 }
h3 { 
font-family: 'Open Sans', Arial, sans-serif;
 font-weight: 400; 
 }
h4 { 
font-family: 'Open Sans', Arial, sans-serif;
 font-weight: 400; 
 }
h5 { 
font-family: 'Open Sans', Arial, sans-serif;
 font-weight: 400; 
 }
h6 { 
font-family: 'Open Sans', Arial, sans-serif;
 font-weight: 400; 
 }
 
 p {
	font-family: â€˜Lucida Sans Unicodeâ€™, â€˜Lucida Grandeâ€™, sans-serif;
	font-weight: 400;
	font-size: 1em;
	line-height: 1.4;
}

#content-wrap {
	height: 320px;
	width: 970px;
	margin-right: auto;
	margin-left: auto;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	border-radius: 4px 4px 4px 4px;
	background-color: #FFF;
	margin-top: 5px;
	margin-bottom: 5px;
}
#content-wrap2 {
	height: auto;
	width: 940px;
	margin-right: auto;
	margin-left: auto;
	/* [disabled]box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); */
	/* [disabled]border-radius: 4px 4px 4px 4px; */
	background-color: #FFF;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
}

/*  slider  */

/* end - slider*/

.slider-wrapper {
	height: 254px;
	width: 923px;
	margin-right: auto;
	margin-left: auto;
}
#storefront {
	/* [disabled]padding-right: 25px; */
	padding-bottom: 25px;
	padding-top: 20px;
	margin-right: auto;
	margin-left: auto;
}

/*  boxes  */
/* promos */
.promos ul { clear:both; width:980px; *width:982px; margin:0; padding-bottom:35px; _position:relative; _z-index:1; zoom:1; }
.promos ul:after { content:'.'; display:block; height:0; clear:both; visibility:hidden; }
.promos ul li { display:inline; float:left; position:relative; z-index:1; width:237px; height:155px; margin-left:11px; _margin-left:9px; border-top:1px solid #f2f2f2;
	-webkit-box-shadow:rgba(0,0,0,.15) 0 1px 3px;
	   -moz-box-shadow:rgba(0,0,0,.15) 0 1px 3px;
	        box-shadow:rgba(0,0,0,.15) 0 1px 3px;
	        box-shadow:rgba(0,0,0,.15) 0 1px 6px \0/IE9;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
}
.promos ul li.first-child { margin-left:0; }
.promos ul li.last-child { margin-left:10px; _margin-left:8px; }

.promos ul li a { display:block; cursor:pointer;
	background:#f6f6f6;
	background:-webkit-gradient(linear,left top,left bottom,color-stop(50%,rgba(249,249,249,1)),color-stop(100%,rgba(240,240,240,1)));
	background:-webkit-linear-gradient(top,rgba(249,249,249,1) 50%,rgba(240,240,240,1) 100%);
	background:-moz-linear-gradient(top,rgba(249,249,249,1) 50%,rgba(240,240,240,1) 100%);
	background:-o-linear-gradient(top,rgba(249,249,249,1) 50%,rgba(240,240,240,1) 100%);
	background:-ms-linear-gradient(top,rgba(249,249,249,1) 50%,rgba(240,240,240,1) 100%);
	background:linear-gradient(top,rgba(249,249,249,1) 50%,rgba(240,240,240,1) 100%);
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
	-webkit-box-shadow:inset 0 2px 1px rgba(255,255,255,.97);
	   -moz-box-shadow:inset 0 2px 1px rgba(255,255,255,.97);
	        box-shadow:inset 0 2px 1px rgba(255,255,255,.97);
}
.promos ul li a:nth-child(1n) {
	border-color: #fff;
}
.promos ul li a:hover {
	background:#f0f0f0;
	background:-moz-linear-gradient(top,rgba(249,249,249,1)50%,rgba(224,224,224,1)100%);
	background:-webkit-gradient(linear,lefttop,leftbottom,color-stop(50%,rgba(249,249,249,1)),color-stop(100%,rgba(224,224,224,1)));
	background:-webkit-linear-gradient(top,rgba(249,249,249,1)50%,rgba(224,224,224,1)100%);
	background:-o-linear-gradient(top,rgba(249,249,249,1)50%,rgba(224,224,224,1)100%);
	background:-ms-linear-gradient(top,rgba(249,249,249,1)50%,rgba(224,224,224,1)100%);
	background:linear-gradient(top,rgba(249,249,249,1)50%,rgba(224,224,224,1)100%);
}
.promos ul li .curve-down { 
display:inline-block; 
height:155px; 
width:100%; 
_display:inline; 
_zoom:1; border:1px solid #e0e0e0; 
border-top-color:#efefef; 
border-bottom-color:#ccc; }
.promos ul li .curve-down:nth-child(1n) { 
	border:none;
	-webkit-border-radius:100% / 8px;
	   -moz-border-radius:100% / 8px;
	        border-radius:100% / 8px;
	-webkit-box-shadow:rgba(0,0,0,.30) 0 2px 3px;
	   -moz-box-shadow:rgba(0,0,0,.30) 0 2px 3px;
	        box-shadow:rgba(0,0,0,.30) 0 2px 3px;
}
.promos ul li a img { 
	display:block;
	-webkit-border-radius:5px;
	   -moz-border-radius:5px;
	        border-radius:5px;
}

.promos ul li a.promo-rotate { 
	position:absolute; z-index:1; top:0; }

.promos ul { margin:0 auto; }




	.promos ul {
	clear: both;
	padding-bottom: 35px;
	width: auto;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.promos ul:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}


.promos ul li {
	border-radius: 5px 5px 5px 5px;
	border-top: 1px solid #F2F2F2;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
	display: inline;
	float: left;
	height: 155px;
	margin-left: 8px;
	position: relative;
	width: 237px;
	z-index: 1;
}
.promos ul li.first-child {
    margin-left: 0;
}
.promos ul li.last-child {
    margin-left: 10px;
}
.promos ul li a {
	background: -moz-linear-gradient(center top , #F9F9F9 50%, #F0F0F0 100%) repeat scroll 0 0 transparent;
	border-radius: 5px 5px 5px 5px;
	box-shadow: 0 2px 1px rgba(255, 255, 255, 0.97) inset;
	cursor: pointer;
	display: block;
}
.promos ul li a {
    border-color: #FFFFFF;
}
.promos ul li a:hover {
    background: -moz-linear-gradient(center top , #F9F9F9 50%, #E0E0E0 100%) repeat scroll 0 0 transparent;
}
.promos ul li .curve-down {
  	  -moz-border-bottom-colors: none;
    -moz-border-image: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #EFEFEF #E0E0E0 #CCCCCC;
    border-left: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    border-style: solid;
    border-width: 1px;
    display: inline-block;
    height: 155px;
    width: 100%;
}
.promos ul li .curve-down {
    border: medium none;
    border-radius: 100% 100% 100% 100% / 8px 8px 8px 8px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
.promos ul li a img {
	border-radius: 5px 5px 5px 5px;
	display: block;
}
.promos ul li a.promo-rotate {
    position: absolute;
    top: 0;
    z-index: 1;
}



/* end - boxes*/
#lowerwrap {
	height: auto;
	width: 980px;
	margin-right: auto;
	margin-left: auto;
}
#sliderwrap {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

#links {
	-moz-border-bottom-colors: none;
	-moz-border-image: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	margin: 0 0 2em;
	padding: 0.5em 0;
	border-top-width: 1px;
	border-right-width: 0;
	border-bottom-width: 0px;
	border-left-width: 0;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #E5E5E5;
	border-right-color: #E5E5E5;
	border-bottom-color: #E5E5E5;
	border-left-color: #E5E5E5;
}

#links ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}

#links ul li { display: inline; }

#links ul li a
{
	text-decoration: none;
	font-family: "â€˜Lucida Sans Unicodeâ€™", "â€˜Lucida Grandeâ€™", sans-serif;
	font-weight: 400;
	padding: .2em 1em;
	font-size: 1em;
	font-variant: normal;
}

#links ul li a:hover
{

}

#homefooter {
	text-decoration: none;
	font-family: "â€˜Lucida Sans Unicodeâ€™", "â€˜Lucida Grandeâ€™", sans-serif;
	font-weight: 400;
	font-size: .8em;
	font-variant: small-caps;
	height: auto;
	width: 960px;
	margin-top: 35px;
	margin-right: auto;
	margin-left: auto;
	-moz-border-bottom-colors: none;
	-moz-border-image: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	border-top-width: 1px;
	border-right-width: 0;
	border-bottom-width: 0px;
	border-left-width: 0;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #E5E5E5;
	border-right-color: #E5E5E5;
	border-bottom-color: #E5E5E5;
	border-left-color: #E5E5E5;
}
#bottomlogo {
	height: 65px;
	width: 170px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}
.copyr {
	text-align: center;
	text-transform: none;
}
#map {
	height: auto;
	width: 900px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-top: 25px;
	margin-right: auto;
}
#contactform {
	padding: 60px;
	float: right;
	height: auto;
	width: 440px;
	border: thin solid #F5F5F5;
	margin-left:50px;
	margin-top: 5px;
}
.floatright {
	float: right;
	width: 450px;
	margin-top: 20px;
	margin-right: 10px;
	margin-bottom: 25px;
	margin-left: 20px;
}
#rxlogocontact {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 40px;
}
#whitewrap {
	width: 1024px;
	padding-right: 3px;
	padding-left: 3px;
	background-color: #FFF;
	height: 100%;
	top: -15px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 5px;
	/* [disabled]-webkit-box-shadow: 0px 1px 4px rgba(50, 50, 50, 0.5); */
	/* [disabled]-moz-box-shadow: 0px 1px 4px rgba(50, 50, 50, 0.5); */
	/* [disabled]box-shadow: 0px 1px 4px rgba(50, 50, 50, 0.5); */
	position: relative;
	margin-top: 15px;
	/* [disabled]padding-bottom: 50px; */
}
#right-images {
	float: right;
	width: auto;
	padding-bottom: 25px;
	padding-left: 20px;
}
#float-left {
	float: left;
	width: 400px;
	font-size: 1.1em;
}
#content-wrap2 .question {
	font-weight: bold;
	padding-top: 5px;
}
.news-item {
	clear: both;
	height: auto;
	width: 940px;
	padding-top: 5px;
	padding-bottom: 5px;
	/* [disabled]border-bottom-width: 1px; */
	/* [disabled]border-bottom-style: solid; */
	/* [disabled]border-bottom-color: #E5E5E5; */
}
.news-left {
	float: left;
	height: auto;
	width: 450px;
	padding-right: 20px;
}
.news-right {
	float: right;
	height: auto;
	width: 450px;
	padding-left: 10px;
}
.shadow-divider {
	clear: both;
	height: 108px;
	width: 920px;
	margin-right: auto;
	margin-left: auto;
}
.shadow-divider-H {
	clear: both;
	height: 84px;
	width: 920px;
	margin-right: auto;
	margin-left: auto;
}
.news-text {
}
