/*
	magstyle.css file by Adrian Patience.
	The "-_-AP" comment is poseted everwhere
	that a change has been made.
   
	The code for the overall CSS elements has
	been organised and cleaned up. Some code 
	has been added and some has been taken away.
	
	 .column.c2 removed -_-AP 
	 .column.c3 removed -_-AP
	 .column.c5 removed -_-AP 
*/

p, 
a {
	text-decoration: none;
	border-style: none;
	outline: none;
	outline-style: none;
}

#magazine-columns { 
	width: 960px;
	height:auto;
	margin-top: 25px;
	margin-right: -20px;
	margin-bottom: 1em;
	margin-left: -20px;
	overflow:hidden;
	}
		
.column { 
	float:left;
/* FireFox */
/* ------- */
	-moz-box-sizing:border-box;
/* Chrome/Safari */
/* ------------- */
	-webkit-box-sizing:border-box;
/* Other */
/* ----- */
	box-sizing:border-box;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	line-height: 20px;
	font-size: 14px;
	text-decoration: none;
	border-style: none;
	outline: none;
	outline-style: none;
	}
	
.column.c4 {
	width:33.33% /* was 25px -_-AP */
	}
	
.column p:first-child {
	margin-top: 0;
	}
	
.column p:last-child {
	margin-bottom: 0;
	}
	
.column img {
	max-width: 100%;
	height: auto;
	}	