/*
Theme Name: Twentyeleven Child
Description: Child theme for the twentyeleven theme 
Author: janetka
Template: twentyeleven
*/

@import url("../twentyeleven/style.css");


/* site title for space above and site description for space below description */
#site-title {
margin-right: 270px;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
padding-top: 0.7em;
}

#site-description {
color: #7A7A7A;
font-size: 14px;
margin-bottom: 1.65625em;
margin-left: 0;
margin-right: 270px;
margin-top: 0;
}

/*for page title (ex. Contacts) padding... */
#main,
.singular.page .hentry {padding:0;}

#main {
	clear: both;
	padding: 0 0 0 0;
}

.page .entry-title { display: none; }

.singular.page .hentry {
    padding: 0px;
}

/*This is for font and style of site title 
#site-title a {
color: red;
font-family: times New Roman;
font-size: 30px;
font-weight: bold;
line-height: 36px;
text-decoration: none;
}

#site-title a:hover, #site-title a:focus, #site-title a:active {
color: #1982D1;
}
*/






/* no comments on blogs
#comments {
display: none;
}
*/

/*comments bubble image*/
.entry-header .comments-link a {
display: none;
}

/*no bullet points in lists! */
.widget ul li {
list-style-type: none;
}

/* border on right side of content blog 
#content {
border-right: 1px dotted;
margin: 0 34% 0 0.6%;
padding-right: 11px;
width: 61.4%;
}
*/


/* push down the sidebar content so it is not so jammed up against menu */
#secondary {
	float: right;
	margin-right: 7.6%;
	margin-top: 25px;
	width: 18.8%;
}

add_filter('protected_title_format', 'change_protected_title_format');
function change_protected_title_format() {
return 'Members Only: %s';
}