﻿/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }
/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html { overflow-y: scroll; }

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

small { font-size: 85%; }
strong, th { font-weight: bold; }

td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #f0dddd; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #AC83A5; color:#fff; text-shadow: none; }
::selection { background:#AC83A5; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #FF5E99; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from: j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX << j.mp/phayesclearfix */
.clearfix:after  { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }






 /* Primary Styles
    Author: David Magerl
 */

BODY,HTML {
font:small/1.2em Arial, Helvetica, sans-serif;
background:#d2d3d5 url(img/bgGrey.jpg);
background-repeat:repeat-x;
margin:0;
padding:0;
}

A:link,A:visited {
color:#369;
text-decoration:underline;
}

A:hover {
color:#999;
text-decoration:none;
}

A:active {
color:#369;
text-decoration:none;
}

ACRONYM {
font-weight:700;
border-bottom:#A06F3C 1px dotted;
}

#container {
	width: 770px;
	margin: 0 auto;
	padding:0 40px 0 40px;
	text-align: left;

	background-color:#FFFFFF;

}

#container_internal {
width:1024px;
text-align:left;
position:relative;
margin:0 auto;
}

#midContainer {
width:768px;
background-color:#FFF;
text-align:left;
position:relative;
border-top:1px solid #FFF;
}

#midHomeContainer {
width:768px;
background-color:#FFF;
text-align:left;
position:relative;
background-image:url(img/homebg_repeat.gif);
background-repeat:repeat-y;
border:1px solid #FFF;
}

#midHomeContainer h1 {
display:block;
font:20px Trebuchet MS, Arial, sans-serif;
text-align:left;
color:#FFF;
background-image:url(img/mainheading_repeat.gif);
background-repeat:repeat-x;
height:35px;
margin:0;
padding:5px 0 0 10px;
}

#leftNav {
width:200px;
float:left;
padding:0;
}

#mainContent {
float:right;
margin:0;
padding:0;
}

#mainContent1 {
float:right;
border-left:1px solid #a6acb0;
width:565px;
background-color:#FFF;
margin:0;
padding:0;
}

.ie6 #mainContent1 {
margin:-705px 0 0 0;
}

#mainContent1 #pageHeader {
margin:10px 0 0 20px;
}

#homeContent {
float:left;
background-color:#FFF;
background-image:url(img/rightshadow_repeat.gif);
background-repeat:repeat-x;
width:568px;
height:500px;
margin:0;
padding:0;
}

#homeContent2 {
float:right;
width:408px;
height:256px;
margin:0;
padding:0;
}

#homeContent2 img {
margin:0;
padding:0;
}

#bottomHomeContainer {
width:768px;
margin:0;
padding:0;
}

#hc1 {
float:left;
width:250px;
margin:0;
padding:0;
}

#hc2 {
float:left;
width:315px;
border-right:1px solid #999;
margin:10px 0;
padding:0;
}

#hc3 {
float:left;
width:200px;
margin:0 0 10px;
padding:0;
}

#mc1 {
float:left;
width:386px;
margin:0;
padding:0;
}

#mc2 {
border-left:1px dotted #CCC;
float:right;
width:180px;
margin:0 0 10px;
padding:0;
}

#columns {
float:right;
width:567px;
margin:0;
padding:0;
}

#column1 {
float:left;
width:283px;
margin:0;
padding:0;
}

#column2 {
border-left:1px dotted #CCC;
float:right;
width:283px;
margin:0 0 10px;
padding:0;
}

#footer {
width:770px;
position:relative;
clear:both;
background-color:transparent;
color:#666D70;
margin:0 auto;
padding:10px 0 0;
}

#footer a{
text-decoration:none;
}

.clear {
clear:both;
}

#header {
background:url(img/headerNew.jpg) no-repeat scroll 0 0 transparent;
height:98px;
width:770px;
}

#logo a {
color:#FFF;
text-decoration:none;
width:200px;
height:75px;
display:block;
overflow:hidden;
float:left;
}

#logo a span {
display:block;
}

#logo a span em {
display:block;
text-indent:-9999px;
color:#F4F4EB;
font-size:17px;
}

#logo a span strong {
display:block;
text-indent:-9999px;
padding-top:15px;
font-weight:400;
font-size:24px;
line-height:24px;
letter-spacing:10px;
text-transform:uppercase;
}

#logo a span,strong span {
font-size:13px;
display:inline;
border-bottom:1px solid #FFF;
border-top:1px solid #FFF;
letter-spacing:0;
vertical-align:middle;
padding:0;
}

.tablemain {
margin-left:20px;
}

#search td {
margin-bottom:10px;
font:11px Arial;
color:#000;
}

#searchForm {
float:right;
text-align:right;
color:#FFF;
width:220px;
display:block;
margin:16px 10px 0 0;
padding:0;
}

#searchForm div {
margin-bottom:10px;
font:12px Arial;
color:#FFF;
}

#searchForm div a {
font:12px Arial;
color:#FFF;
margin-right:6px;
margin-left:6px;
}

#searchForm form {
width:220px;
display:block;
margin:0;
padding:0;
}

#searchForm input.text {
width:130px;
margin-right:3px;
border:1px solid;
font:11px Arial;
border-color:#036 #769DC4 #769DC4 #036;
padding:1px;
}

.searchtextinput {
width:110px;
height:14px;
margin-right:3px;
border:1px solid;
font:11px Arial;
border-color:#036 #769DC4 #769DC4 #036;
padding:1px;
}

.searchinputbutton {
width:60px;
height:16px;
border:1px solid;
font:11px Arial;
vertical-align:middle;
padding:0;
}

.searchButton {
background-image:url(img/gosearch.gif);
background-repeat:no-repeat;
border:0 none;
color:#FFF;
cursor:pointer;
font:10px Arial;
height:13px!important;
overflow:hidden;
padding-top:0;
width:13px;
}

.navList {
background-color:#666D70;
font:11px Arial;
text-align:center;
width:770px;
margin:0;
padding:6px 0 8px;
}

#navList li {
display:inline;
color:#FAFAFA;
list-style-type:none;
margin:0;
padding:0;
}

#navList li a,#navList li a:visited {
text-decoration:none;
color:#FAFAFA;
padding:1px 5px 2px;
font-weight:bold;
font-family:Verdana;
}

#navList li a:hover {
color:#FFF;
text-decoration:none;
background-image:url(img/rollbg.gif);
background-repeat:repeat-x;
}

#headerImage {
margin:0 -65px 0 200px;
}

#headerImage_home {
margin:0 -65px 0 202px;
}

#pageHeader {
height:60px;
background-image:url(img/fad_header.png);
background-repeat:no-repeat;
background-position:left center;
background-color:#FFF;
}

#pageHeader h1 {
display:inline;
position:relative;
top:-10px;
height:40px;
font-weight:700;
font-size:25px;
font-family:Trebuchet MS, Arial, Sans-serif;
text-align:left;
color:#FFF;
}

.resultsTable1 {
width:550px;
position:relative;
left:18px;
float:left;
padding:0;
}

#mainContent .resultsTable1 td p {
font:100% Arial;
margin:0 0 10px;
padding:0;
}

.resultsTable1 th {
background-color:#b8def6;
color:#036;
padding:5px 0 5px 10px;
}

.resultsTable1 td {
font-size:85%;
padding:5px 0 5px 10px;
}

.mainRow {
background-color:#fafafa;
}

.altRow {
background-color:#EFEFEF;
}

.resultsTableSecondary {
float:right;
width:200px;
}

.sideBar {
background-color:#666D70;
color:#FFF;
width:216px;
}

.sideBar img {
border:2px solid #FFF;
display:block;
}

#secondaryContent {
background-color:#FFFFFF;
float:left;
padding:15px;
width:170px;
}

#secondaryContent1 {
width:170px;
float:left;
background-image:url(img/fad_gray_bg.png);
background-repeat:repeat;
border-top:3px solid #fff;
height:auto;
padding:15px;
}

#searchFormContainer {
width:565px;
float:right;
background-repeat:repeat-x;
background-color:#FFF;
border-left:1px solid #A6ACB0;
}

.ie6 #searchFormContainer, .ie6 #tertiaryContent {
margin:-705px 0 0 0;
}

#fadSearchForm {
width:535px;
float:right;
padding:0 15px;
}

.fadSearchButton {
background-image:url(img/fad_r14_c16.png);
border:none;
}

#tertiaryContent {
width:535px;
float:right;
background-color:#FFF;
padding:15px;
border-left:1px solid #A6ACB0;
}

.ie6 #tertiaryContent {
margin:-72px 3px 0 0;
}

#tertiaryContent a {
color:#4f91cd;
font-weight:700;
text-decoration:none;
}

#footer p {
color:#999;
font:10px Arial;
text-align:left;
margin:0;
padding:6px 6px 0 0;
}

#footer a,#footer a:visited {
color:#999;
font:10px Arial;
}

label {
color:#666D70;
}

h2 {
font-size:18px;
font-weight:700;
font-family:Trebuchet MS;
color:#771B61;
padding-top:5px;
padding-bottom:5px;
}

h3 {
color:#666D70;
font-weight:700;
padding:5px 5px 5px 0;
}

.rightAlign {
text-align:right;
}

.smallIndent {
margin-left:10px;
}

#searchByPreferences,#searchByDoctor {
background-color:#FFF;
width:490px;
border:2px solid #666D70;
border-width:0 0 2px 2px;
margin:-3px 0 0;
padding:0 20px;
}

.searchPrefernces_inside {
border-bottom:1px dotted #666D70;
padding:10px 10px 10px 0;
}

.searchByLabel {
display:block;
float:left;
width:200px;
}

#gender {
float:left;
margin:0 0 5px;
}

#gender input {
margin:0 5px 0 10px;
}

#gender label {
margin:0 0 5px;
}

#languageHospitalContainer select {
float:left;
position:relative;
left:10px;
}

#languageHospitalContainer label,#languageHospitalContainer select {
margin:0 0 10px;
}

#or {
position:relative;
z-index:2;
margin:-15px 0 -15px 230px;
}

#searchByDoctor_img {
position:relative;
z-index:1;
}

.searchByDoctorLabel {
display:block;
width:135px;
text-align:right;
margin:0 10px 0 0;
}

#searchByDoctor_inside select,#searchByDoctor_inside label,#searchByDoctor_inside input {
float:left;
}

#searchByDoctor_inside input {
margin:0 5px;
}

select {
margin-top:2px;
margin-bottom:3px;
}

#doctorOrPractice {
width:300px;
background-color:Aqua;
}

.doctorText {
margin:5px 0 0!important;
}

.submitReset {
text-align:right;
padding:20px;
}

#secondaryContent p {
color:#666D70;
font-weight:700;
margin-bottom:10px;
}

h4 {
color:#22436e;
}

tr td h2 {
color:#FFF;
font-size:18px;
font-weight:400;
font-family:Trebuchet MS;
margin-left:-150px;
padding:10px;
}

.litGrpOrg {
font-weight:700;
}

.resultsTable {
width:100%;
padding:0;
}

#mainContent .resultsTable td p {
font-family:Trebuchet MS, Arial, Sans-serif;
margin:0 0 10px;
padding:0;
}

.resultsTableHeader {
background-color:#771B61;
color:#FFF;
font-family:Verdana;
font-weight:700;
text-align:center;
font-size:13px;
padding:5px 0 5px 10px;
}

.resultsTable td {
font-family:verdana;
font-size:10px px;
padding:5px 0 5px 10px;
}

.resultsTable a {
text-decoration:none;
color:#3240A8;
}

.resultsHeader {
color:#666D70;
display:inline;
font-weight:700;
font-size:14px;
}

.resultsRow {
font-family:Trebuchet MS, Arial, Sans-serif;
padding:0 0 10px 20px;
}

.resultsCount {
padding-left:20px;
color:#666D70;
display:inline;
font-size:14px;
}

.newSearchButton {
float:right;
margin:10px 10px 0 0;
}

.bioCorner {
float:right;
width:240px;
height:48px;
}

.ie6 .bioCorner {
display:none;
}

.navLink {
color:#4F91CD!important;
text-decoration:none!important;
}

#navList #current a,#navList #current a:hover {
color:#B3CCE6;
}

#footer a:hover{
color:#000;
}

.resultsTableControl,.resultsTableControl a {
color:#FFF;
}

#social {
float:right;
background-color: #D7DBDB;
padding: 5px;
width: 55px;
height: 23px;
margin: -50px 20px 0 0;
}


#languageHospitalContainer,#searchByDoctor_inside {
margin:10px 0 0;
}

.pageResultsNav a,.pageResultsNav a:hover,a:visited {
text-decoration:none;
}

.pagerTopTable {
font-family:verdana;
font-size:12px;
height:60px;
color:#FFF;
text-decoration:none;
}

#tblName {
background-color:#771B61;
}

#goBtn{
background-color:#666D70;
}
/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {

}

/*
 * Media queries for responsive design
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}


/******************* UPMC 2.0 Footer ***********************/

#footerContainer{
	width:768px;
	margin:20px 0 0 0;
	background-image:url(http://www.upmc.com/Style%20Library/UPMC%20Styles/UPMC2Images/footer_tint.png);
	background-repeat:repeat-y;
}

#upperFooter{
	width:766px;
	height:195px;
	border-left-color:#A9B533;
	border-left-width:1px;
	border-left-style:solid;
	border-top-color:#A9B533;
	border-top-width:1px;
	border-top-style:solid;
	border-right-color:#A9B533;
	border-right-width:1px;
	border-right-style:solid;
}

#HCP #upperFooter {
	border-left-color:#40A6C0;
	border-top-color:#40A6C0;
	border-right-color:#40A6C0;	
}

#About #upperFooter {
	border-left-color:#F6BF1D;
	border-top-color:#F6BF1D;
	border-right-color:#F6BF1D;	
}


.ie7 #upperFooter{
    width:768px;
}
#lowerFooter{
	height:20px;
	background-color:#666D70;
	padding:9px 0 5px 0;
}

.ie7 #lowerFooter{
	width:770px;
}

#footerOne{
	float:left;
	width: 170px;
}

#footerTwo{
	float:left;
	width: 140px;
}

#footerThree{
	float:left;
	width: 95px;
}

.ie7 #footerThree{
	width: 100px;
}


#footerDiscover{
	float:left;
	background-image:url(http://www.upmc.com/PublishingImages/health_trak_lower_right.png);
	background-position:right;
	background-repeat:no-repeat;
	width:298px;
	height:190px;
}

.ie7 #footerDiscover{
	width: 295px;
}


/*
.ie7 #footerOne{
	width: 190px;
}

.ie7 #footerTwo{
	width: 150px;
}

.ie7 #footerThree{
	width: 125px;
}
*/
.footerSubHeads{
	font-family: museo-sans-n7,museo-sans,sans-serif;
	font-weight:700;
	font-size:10px;
	padding:5px 0 0 15px;
	line-height:25px;
	color:#666D70;
}

.ie7 .footerSubHeads {
	font-family:Arial, Helvetica, sans-serif;
}

.SComm .footerSubHeads {
	font-family:Arial, Helvetica, sans-serif;
}


#discoverHead{
	font-family: museo-sans-n3,museo-sans,sans-serif;
	width:155px;
	font-weight:300;
	font-size:18px;
	padding:0 0 0 0;
	line-height:20px;
	color:#771B61;
}

.ie7 #discoverHead{
	width:150px;
	font-family:Arial, Helvetica, sans-serif;
}

#discoverText{
	font-family: museo-sans-n3,museo-sans,sans-serif;
	width:150px;
	font-weight:300;
	font-size:12px;
	padding:7px 0 0 0;
	line-height:16px;
	color:#666D70;
}

.ie7 #discoverText{
	width:145px;
	font-family:Arial, Helvetica, sans-serif;
}

.learnMore{
	font-family: "museo-sans-n3","museo-sans",sans-serif;
	font-weight:300;
	font-size:10px;
}

.ie7 .learnMore {
	font-family:Arial, Helvetica, sans-serif;
}
.learnMore a:link, .learnMore a:visited, .learnMore a:active{
	text-decoration:none;
	color:#771B61;
}

.learnMore a:hover{
	text-decoration:underline;
}

li.footerLinks{
	font-family: Arial, Helvetica, sans-serif;
	font-weight:500;
	font-size:12px;
	list-style:none;
	line-height:23px;
}

#SComm li.footerLinks {
	line-height:23px;
}

.footerLinks a:link, .footerLinks a:active, .footerLinks a:visited{
	color:#771B61;
	text-decoration:none;
	padding:0 0 0 0;
}

.ie7 .footerLinks a:link,.ie7 .footerLinks a:active, .ie7 .footerLinks a:visited{
	margin-left:-15px;
}



.footerLinks a:hover{
	text-decoration: underline;
}

li.footerLinksStacked{
	font-family: Arial, Helvetica, sans-serif;
	font-weight:500;
	font-size:12px;
	list-style:none;
	line-height:15px;
	padding-bottom:4px;
	padding-top:2px;
}

.footerLinksStacked a:link, .footerLinksStacked a:active, .footerLinksStacked a:visited{
	color:#771B61;
	text-decoration:none;
	padding:0 10px 0 0;
}

.ie7 .footerLinksStacked a:link, .ie7 .footerLinksStacked a:active, .ie7 .footerLinksStacked a:visited{
	margin-left:-15px;
}

.footerLinksStacked a:hover{
	text-decoration: underline;
}

#icon{
	width:24px;
	height:20px;
	float:left;
}

#iconLink{
	width:auto;
	height:20px;
	float:left;
	padding-bottom:6px;
}

#footerDivider{
	background-image:url(http://www.upmc.com/Style%20Library/UPMC%20Styles/UPMC2Images/footer_divider_green_long.png);
	height:185px;
	width:1px;
	float:left;
}

#HCP #footerDivider{
	background-image:url(http://www.upmc.com/Style%20Library/UPMC%20Styles/UPMC2Images/footer_divider_blue_long.png);
}

#About #footerDivider{
	background-image:url(http://www.upmc.com/Style%20Library/UPMC%20Styles/UPMC2Images/footer_divider_yellow_long.png);
}


.bottomFooterLinks{
	font-family: Arial, Helvetica, sans-serif;
	font-weight:500;
	font-size:11px;
}

.bottomFooterLinks a:link, .bottomFooterLinks a:active, .bottomFooterLinks a:visited{
	text-decoration:none;	
	padding-left:15px;
	color:#FFFFFF;
}

.bottomFooterLinks a:hover{
	text-decoration:underline;	
}

.IndexNav li{
	padding:0px 3px 0px 3px;
}

.EBSCOLinks li{
	padding:0px 5px 0px 5px;
}


/* footer
----------------------------------------------- */


#UPMCfooter {
	width:770px; 
	margin:0 auto;
	clear:both;
	position:relative; 
	padding:5px 0 20px 0;
	
}
#UPMCfooter p {
	color:#666D70; 
	font:10px Arial; 
	text-align:left; 
	padding:3px 6px 0 0; 
	margin:0;
	
}
#UPMCfooter a:visited {
	color:#666D70; 
	font:10px Arial
}
#UPMCfooter a {
	color:#666D70; 
	font:10px Arial;
	text-decoration:none;
}
#UPMCfooter a:hover {
	color:#000
}

#social {
	width: 51px;
	margin-top: 5px;
	float:right;
}

#social img {
	border: none;
}

/* 
 * Social media share tool 
 */

.toggleShare {
	cursor:hand;
    cursor:pointer;
}

.toggleShare2 {
	color:#771B61;
	cursor:hand;
    cursor:pointer;
}

 
.ie7 .toggleShare2 {
	margin-left:-15px;
}
 
#socialMedia {
	height:40px;
	width: 220px;
	float: right;
	top: -30px;
	position: relative;
	z-index: 1000;
	padding: 0;
}
 
.shareTool {
}
 
.socialMediaTitle {
    height: 20px;
    background-color: #771b61;
    -moz-border-radius: 3px 3px 0 0;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.socialMediaTitleHeader {
    width: 125px;
    float: left;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    margin: 0 0 0 10px;
    line-height: 20px;
}

.socialMediaPopup {
    z-index: 1000;
    position: absolute;
    top:-265px;
    left:350px;
    display: none;
    border: 1px solid #666d70;
    width: 308px;
    height: 112px;
    background-color: #fff;
    -moz-border-radius: 5px; 
    -webkit-border-radius: 5px; 
    border-radius: 5px; 
    -moz-box-shadow: 0px 0px 6px #666d70; 
    -webkit-box-shadow: 0px 0px 6px #666d70; 
    box-shadow: 0px 0px 6px #666d70;
}

.showSocialMediaPopup {
    display: block;
}
 
.closeSocialMediaPopup{
    background-image: url("http://www.upmc.com/Style%20Library/UPMC%20Styles/lcm/home/close.png");
    height: 20px;
    width: 20px;
    background-repeat: no-repeat;
    float: right;
    cursor:hand;
    cursor:pointer;
}

.closeSocialMediaPopup:hover {
	background-image: url("http://www.upmc.com/Style%20Library/UPMC%20Styles/lcm/home/close_hover.png");
}
 
.socialIconList{
    list-style-type:none;
    margin: 5px 0 0 5px;
    width: 288px;
}



 
.socialIconList li {
    margin:0 5px 8px 0;
    padding: 0;
    float:left;
    cursor:hand;
    cursor:pointer;
    height: 20px;
    width:91px;
}

.socialIconList li a:hover {
    color: #771b61 !important;
}
    
.socialIconList a {
    text-decoration: none;
    color: #000 !important;
    font-size: 11px;
    display: block;
    margin: 0 5px 0 0;
    height: 18px;
    width: 18px;
    background-image:url(http://www.upmc.com/Style%20Library/UPMC%20Styles/lcm/home/icons.png);
}

.socialIconListText {
    padding: 0 0 0 23px;
    height:18px;
    line-height: 18px;
}

#shareMail {
    background-position:0px -2px;
}

#shareMail:hover {
    background-position:-18px -2px;
}

#shareTwitter {
    background-position:0px -86px;
}

#shareTwitter:hover{
    background-position:-18px -86px;
}

#shareDigg {
    background-position:0px -169px;
}

#shareDigg:hover {
    background-position:-18px -169px;
}

#sharePrint {
    background-position:0px -30px;
}

#sharePrint:hover {
    background-position:-18px -30px;
}

#shareMyspace {
    background-position:0px -114px;
}

#shareMyspace:hover {
    background-position:-18px -114px;
}

#shareStumbleUpon {
    background-position:0px -197px;
}

#shareStumbleUpon:hover {
    background-position:-18px -197px;
}

#shareFacebook {
    background-position:0px -58px;
}

#shareFacebook:hover {
    background-position:-18px -58px;
}

#shareReddit {
    background-position:0px -142px;
}

#shareReddit:hover {
    background-position:-18px -142px;
}

#shareDelicious {
    background-position:0px -225px;
}

#shareDelicious:hover {
    background-position:-18px -225px;
}




