/* Click open/close Dropdown in pure CSS */

/* Disclaimer: Not the most semantic thing in the universe. */
   
/* Forked from original idea http://jsfiddle.net/paullferguson/Sv54G/3/ */

/*RESET*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;} body {line-height: 1;}ol, ul{list-style:none;} blockquote, q{quotes:none;} blockquote:before, blockquote:after, q:before, q:after{content:'';content:none;} :focus{outline:0;} ins{text-decoration:none;} del{text-decoration:line-through;} table{border-collapse:collapse; border-spacing:0;}

body {
	font-size: 1.05em;
}
.tab {
    float: right;
    position: relative;
}
.tab label {
    background: url(../images/mobile-menu-icon.gif) no-repeat center;
    padding: 35px;
    display: block;
}

.tab [type=radio] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    margin: 0;
    z-index: 1;
}
.content {
    position: absolute;
    opacity: 0;
    right: 14;
    top:54;
    background: #fff;
    border: 4px solid #000;
    color: white;
    padding: 10px 20px 5px 20px;
    font-family: 'Montserrat';
    font-size:145%;
}
.content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
.content a {
    color: #000;
    display:inline-block;
    text-decoration: none;
    padding: 9px 0px;
}  
[type=radio]:checked ~ label {
    z-index: 2;
}
[type=radio]:checked ~ label ~ .content {
    z-index: 1;
    opacity: 1;
}

.close-tab {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

[type=radio]:checked ~ label ~ .close-tab {
    z-index: 3;
}

#full-width-underline {
  	width:100%;
  	height:74px;
  	background-image: url("../images/rubymac_240-UNDERLINE.gif");
  	}
	
#logo{

	float: left;
	width: 240px;
	height: 74px;
	background: url(../images/rubymac_240.gif) no-repeat center;
	display: block;

}

.body_content {
  	width:90%;
  	margin:0 auto;
  	font-family: 'Raleway', sans-serif;font-size:133%;
  	padding-top: 60px;
  	margin-top:5px;
  	position:relative;
  	}
  	
#bio_pic{

	float: left;
	width: 150px;
	height: 200px;
	background: url(../images/ruby_bio_pic_150.jpg) no-repeat center;
	display: block;
	margin:0px 20px 0px 0px;

}

.footer {
	font-family: 'Montserrat';
    font-size:145%;
    text-align:center;
    padding:10px;
    }
    
.footer.current {
	position:absolute;
	top:0;
	left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%)
	}
	
	.footer a {
    color: #000;
    display:inline-block;
    text-decoration: none;
}	

hr {
    border: 0;
    height: 5px;
    background: #000;
        margin:40px 0px 40px 0px;

}

.blogpic {
    padding:20px 0px 20px 0px;
    width:100%;
}

.title {
	font-family: 'Montserrat';
	text-align:center;
	padding:5px 0px 5px 0px;
    }
    
    .date {
    text-align:center;
    padding:5px 0px 5px 0px;
    }