/* 
Project Name: Monthly Resolutions
Client: One Month
Author: Christopher Castig | @castig
*/


/*----------------------------------------------------------------------------- 
01=BASE   
-----------------------------------------------------------------------------*/

/* Box Model Hack */
* {
     -moz-box-sizing: border-box; /* Firexfox */
     -webkit-box-sizing: border-box; /* Safari/Chrome/iOS/Android */
     box-sizing: border-box; /* IE */
}

.clear {
	clear: both;
}


body{

	background: #d6d6d6;
	background: url('../images/notebook.png');
	font-family: 'Lato',sans-serif;
	line-height: 1.7;
	font-size: 100%;

}

/*----------------------------------------------------------------------------- 
02=LAYOUT  
-----------------------------------------------------------------------------*/

.alignleft{

	float: left;
	/* margin: top right bottom left;
	*/
	margin: 0 15px 15px 0;
}

.alignright{
	float: right;
	margin: 0 0 15px 15px;
}

#container{

	width: 1000px;
	margin: 0 auto 0 auto;

}

#header{
	
	

}


/*----------------------------------------------------------------------------- 
03=MAIN  
-----------------------------------------------------------------------------*/
#main{
	width: 613px;
	box-shadow: -5px 1px 5px grey;
	margin-top: 2%;
	padding: 30px;
	float: left;
	background-color: white;
	text-decoration: justify;
}

#sidebar{
	width: 360px;
	padding: 20px;
	margin-top: 2%;
	float: right;
	box-shadow: -5px 2px 5px grey;
	background-color: white;
	text-decoration: justify;
}
.description{
	color: grey;
	
}
.sub{
	width: 560px;
}
hr{
	box-sizing: content-box;
	height: 0;
	color: #dedede;
}

#image{

	width: 150px;
	max-height: 150px;
   display: inline-block;
   border-radius: 50%;
   
   background-position: center;
}

a{
	text-decoration: none;
	color: #C05C49;


}
#foot{
	width: 613px;

}

blockquote{
	background: #f9f9f9;
	border-left: 5px solid #ccc;
	margin: 1.5em 10px;
	padding: 15px;
	quotes: "\201C""\201D""\2018""\2019";

}
blockquote:before{

	color: black;
  content: open-quote;
  font-size: 5em;
  line-height: .1em;
  vertical-align: -40px;
  
}
