/* Changing color of Submit button in Gravity Form on Join MAS page and RSVP page from green to blue like links */

input#gform_submit_button_1.gform_button.button, input#gform_submit_button_2.gform_button.button 
{background-color: #15a8c2}

/* Making size of links smaller for text in collapse shortcode (the year links on the Past Speakers page) bigger using role="button" attribute 
 * https://stackoverflow.com/questions/12892726/how-to-style-css-role */

a[role=button] {font-size: 30px}

/* Making font-size of all caption smaller */

.wp-caption-text {font-size: 12px}

/* Adding border, padding and margin to all images in history class */

img.history {
	border: 2px solid lightgray;
	border-radius: 5px;
	padding: 8px;
	margin-left: 10px}

/* Changing site body font to Helvetica and making font-size bigger */

body, button, input, select, textarea {
font-family: Helvetica, Arial, sans-serif; 
	font-size: 16px;
}

/* Making widget text same size as body text */

div.widget-area p {font-size: 16px}

/* Making widget footer text smaller */

div.footer-widget-area p {font-size: 12px}

/* Removing Archives and Meta from aside sidebar on all pages */

aside#archives, aside#meta {display: none;}

/* Adding space after paragraphs, now need to remove extra br tags */

p {margin-bottom: 10px}

/* Changing all a links to blue (except widgets) */

a {
color: #15a8c2;
}

/* Making all links display red on hover (except widgets)*/

a:hover {
color: #ed193f;
}

/* Removing the border from all links in p tags and adding an underline, so the text and underine are the same color (throughout site and in widgets) */

p a, p a:link, p a:visited, p a:active, p a:hover {
	border:0!important;
	text-decoration: underline
}


/* Making links display blue in widgets */

div.widget-area a {
color: #15a8c2
}

/* Making links display red on hover in widgets */

div.widget-area a:hover {
color: #ed193f
}

/* Increasing size of all widget titles  */

div.widget-area .widget-title {
font-size: 22px;
	line-height: 1.0909090909; color: black
}

/* Making page titles larger than h1's  */

h1.page-title {font-size: 50px}

/* Making headers cascade in size more dramatically and adding bottom margin */

h1 {
	font-size: 48px;
	line-height: 1.2413793103;
}
h2 {
	font-size: 38px;
	line-height: 1.3333333333;
	margin-bottom: 16px;
}
h3 {
	font-size: 30px;
	line-height: 1.44;	
	margin-bottom: 16px
}
h4 {
	font-size: 24px;
	line-height: 1.0909090909;
	margin-bottom: 16px;
}
h5 {
	font-size: 20px;
	line-height: 1.2;
	margin-bottom: 16px;
}
h6 {
	font-size: 16px;
	line-height: 1.3333333333;
	margin-bottom: 16px;
}

/* Removing likes from all pages and posts */

.jetpack-likes-widget-wrapper  {
display: none !important;
}

/* Removing hyphenation from all articles  */

.site-content article {
	word-wrap: normal;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
}

.entry-content p {
	word-wrap: normal;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
}

/* Removing hyphenation from all widgets  */

.widget-area .widget {
	word-wrap: normal;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
}

/* I think removes featured photo from page, and it may also let it display on the grid page  */

.page-template-grid-page .attachment-forefront-page-thumbnail {
	display: none;
}

