/* Enter Your Custom CSS Here */
/*underline links in paragraphs and lists*/ 
p a {      
    color: #9d2235;  
    text-decoration: underline !important;  
}  
li a {      
    color: #9d2235;  
    text-decoration: underline !important;  
}  
.et_pb_posts a.more-link {
    text-decoration: underline;
}

/*no underline on hover for paragraphs and lists*/
p a:hover {  
    text-decoration: none !important;  
}  
li a:hover {  
    text-decoration: none !important; 
}    

/*underline headings on hover only*/ 
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{   
    text-decoration: none !important;  
}  
h1:hover a {  
    text-decoration: underline !important;  
}  
h2:hover a {  
    text-decoration: underline !important;  
}  
h3:hover a {  
    text-decoration: underline !important;  
}  
h4:hover a {  
    text-decoration: underline !important;  
}  
h5:hover a {  
    text-decoration: underline !important;  
}  
h6:hover a {  
    text-decoration: underline !important;  
} 

/*no underline for navigation*/ 
nav a {  
  text-decoration: none !important;  
}  

/*no underline for admin bar*/
#wpadminbar a {   
  text-decoration: none !important;   
} 

/*no underline in footer*/   
#footer-info a {    
  text-decoration: none !important;    
}    

/** Drop down menu hover color **/
.nav ul li a:hover{
	background-color: 			rgba(133,168,152,0.3);
}

/** Round Images for the person module **/
.et_pb_team_member_image img{
	border-radius: 50% !important;
}

/*** Take out the divider line between content and sidebar ***/
#main-content .container:before {background: none;}
 
/*** Hide Sidebar ***/
/*#sidebar {display:none;}*/
 
/*** Expand the content area to fullwidth ***/
/*@media (min-width: 981px){
#left-area {
    width: 100%;
    padding: 23px 0px 0px !important;
    float: none !important;
}
}*/

/** Remove Meta 
.post-meta{
Display: none; !important
}
**/
/** Change Font style of post title **/
.et_pb_post h2{
    font-size: 27px !important;
	font-weight: bold;
}

@media only screen and (min-width: 981px)
body.single .et_post_meta_wrapper h1 {
    font-size: 30px !important;
}

/* footer headings are white for legibility */ 
.footer-widget h4{ 
  color: #ffffff !important; 
} 

/* superscript */
sup {
    font-size: 70%;
}