/*-- Enter your custom CSS below --*/

/*
  To adjust or remove the drop effect of the first letter on each page: 
    - on the left, Click Appearance/Editor 
    - on the right, select style.css
    - comment out the ".entry p:first-child:first-letter" section in style.css

  How to comment out something in a style sheet:
    - double forward slashes comment out the rest of the line
    - a pare of /* and */ command out anything in between across multiple lines

*/

body {
	font-size: 12px; // the default text font size
}

mystyle {
	//font-size: 40px; 
	font: 13px "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
	font-weight: bold;
	text-align: left;
	padding: 0 2px 6px;
	color: #C00; // bright red
}

pussystyle {
	//font-size: 40px; 
	font: 13px "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
	font-weight: bold;
	text-align: left;
	padding: 0 2px 6px;
        line-height: 250%;
	color: #0F0; // bright red
}

.myheading {padding-top: 50px;}