
/* easy-columns.css */

/* 1   */ /*
/* 2   *| 
/* 3   *| ** Easy Columns CSS: css to define column layouts for the WP-Colum plugin
/* 4   *| 
/* 5   *| ** for more info visit: http://www.patrickfriedl.com.com/
/* 6   *| 
/* 7   *| **
/* 8   *| 
/* 9   *| ** use percentage widths and margins for fluid
/* 10  *| 
/* 11  *| ** or unknown content widths and fixed
/* 12  *| 
/* 13  *| ** widths and margins for known content widths
/* 14  *| 
/* 15  *| **
/* 16  *| 
/* 17  *| ** for pixel widths:
/* 18  *| 
/* 19  *| ** div width = ((content width - padding - margin)/number of divs)
/* 20  *| 
/* 21  *| ** - margin - padding - border
/* 22  *| 
/* 23  *| **
/* 24  *| 
/* 25  *| ** for more information on calcluating your widths, check
/* 26  *| 
/* 27  *| ** out http://www.w3schools.com/css/css_boxmodel.asp
/* 28  *| 
/* 29  *| ** for info on the CSS box model
/* 30  *| 
/* 31  *| */
/* 32  */ 
/* 33  */ .ezcol>* {
/* 34  */ 
/* 35  */ 	max-width: 100%;
/* 36  */ 
/* 37  */ }
/* 38  */ 
/* 39  */ .ezcol-one-quarter,
/* 40  */ 
/* 41  */ .ezcol-one-half,
/* 42  */ 
/* 43  */ .ezcol-three-quarter,
/* 44  */ 
/* 45  */ .ezcol-one-third,
/* 46  */ 
/* 47  */ .ezcol-two-third,
/* 48  */ 
/* 49  */ .ezcol-one-fifth,
/* 50  */ 

/* easy-columns.css */

/* 51  */ .ezcol-two-fifth,
/* 52  */ 
/* 53  */ .ezcol-three-fifth,
/* 54  */ 
/* 55  */ .ezcol-four-fifth {
/* 56  */ 
/* 57  */ 	float: left;
/* 58  */ 
/* 59  */ 	margin-right: 4%;
/* 60  */ 
/* 61  */ 	position: relative;
/* 62  */ 
/* 63  */ 	word-wrap: break-word;
/* 64  */ 
/* 65  */ 	hyphens: auto;
/* 66  */ 
/* 67  */ 	-moz-box-sizing: border-box !important;
/* 68  */ 
/* 69  */ 	-webkit-box-sizing: border-box !important;
/* 70  */ 
/* 71  */ 	box-sizing: border-box !important;
/* 72  */ 
/* 73  */ 	text-rendering: optimizedLegibility;
/* 74  */ 
/* 75  */ }
/* 76  */ 
/* 77  */ .ezcol-one-quarter {
/* 78  */ 
/* 79  */ 	width: 22%;
/* 80  */ 
/* 81  */ }
/* 82  */ 
/* 83  */ .ezcol-one-half {
/* 84  */ 
/* 85  */ 	width: 48%;
/* 86  */ 
/* 87  */ }
/* 88  */ 
/* 89  */ .ezcol-three-quarter {
/* 90  */ 
/* 91  */ 	width: 74%;
/* 92  */ 
/* 93  */ }
/* 94  */ 
/* 95  */ .ezcol-one-third {
/* 96  */ 
/* 97  */ 	width: 30.666%;
/* 98  */ 
/* 99  */ }
/* 100 */ 

/* easy-columns.css */

/* 101 */ .ezcol-two-third {
/* 102 */ 
/* 103 */ 	width: 65.334%;
/* 104 */ 
/* 105 */ }
/* 106 */ 
/* 107 */ .ezcol-one-fifth {
/* 108 */ 
/* 109 */ 	width: 16.8%;
/* 110 */ 
/* 111 */ }
/* 112 */ 
/* 113 */ .ezcol-two-fifth{
/* 114 */ 
/* 115 */ 	width: 37.6%;
/* 116 */ 
/* 117 */ }
/* 118 */ 
/* 119 */ .ezcol-three-fifth {
/* 120 */ 
/* 121 */ 	width: 58.4%;
/* 122 */ 
/* 123 */ }
/* 124 */ 
/* 125 */ .ezcol-four-fifth {
/* 126 */ 
/* 127 */ 	width: 79.2%;
/* 128 */ 
/* 129 */ }
/* 130 */ 
/* 131 */ .ezcol-last {
/* 132 */ 
/* 133 */ 	float: right;
/* 134 */ 
/* 135 */ 	clear: right;
/* 136 */ 
/* 137 */ 	margin-right: 0;
/* 138 */ 
/* 139 */ }
/* 140 */ 
/* 141 */ .ezcol-last:after {
/* 142 */ 
/* 143 */    content: ".";
/* 144 */ 
/* 145 */    opacity: 0;
/* 146 */ 
/* 147 */    display: block;
/* 148 */ 
/* 149 */    height: 0;
/* 150 */ 

/* easy-columns.css */

/* 151 */    clear: both;
/* 152 */ 
/* 153 */ }
/* 154 */ 
/* 155 */ .ezcol-both,
/* 156 */ 
/* 157 */ .ezcol-left,
/* 158 */ 
/* 159 */ .ezcol-right {
/* 160 */ 
/* 161 */ 	margin: 0;
/* 162 */ 
/* 163 */ 	padding: 0;
/* 164 */ 
/* 165 */ 	background: none;
/* 166 */ 
/* 167 */ }
/* 168 */ 
/* 169 */ .ezcol-divider {
/* 170 */ 
/* 171 */ 	clear: both !important;
/* 172 */ 
/* 173 */ 	display: block !important;
/* 174 */ 
/* 175 */ 	margin-bottom: 0px !important;
/* 176 */ 
/* 177 */ 	padding-top: 0px !important;
/* 178 */ 
/* 179 */ 	width: 100% !important;
/* 180 */ 
/* 181 */ 	background: none !important;
/* 182 */ 
/* 183 */ }
/* 184 */ 
/* 185 */ .ezcol-both {
/* 186 */ 
/* 187 */ 	clear: both !important;
/* 188 */ 
/* 189 */ }
/* 190 */ 
/* 191 */ .ezcol-left {
/* 192 */ 
/* 193 */ 	clear: left !important;
/* 194 */ 
/* 195 */ }
/* 196 */ 
/* 197 */ .ezcol-right {
/* 198 */ 
/* 199 */ 	clear: right !important;
/* 200 */ 

/* easy-columns.css */

/* 201 */ }
/* 202 */ 
/* 203 */ @media all and (max-width: 768px) {
/* 204 */ 
/* 205 */ 	.ezcol-one-quarter,
/* 206 */ 
/* 207 */ 	.ezcol-one-half,
/* 208 */ 
/* 209 */ 	.ezcol-three-quarter,
/* 210 */ 
/* 211 */ 	.ezcol-one-third,
/* 212 */ 
/* 213 */ 	.ezcol-two-third,
/* 214 */ 
/* 215 */ 	.ezcol-one-fifth,
/* 216 */ 
/* 217 */ 	.ezcol-two-fifth,
/* 218 */ 
/* 219 */ 	.ezcol-three-fifth,
/* 220 */ 
/* 221 */ 	.ezcol-four-fifth {
/* 222 */ 
/* 223 */ 		width: 48% !important;
/* 224 */ 
/* 225 */ 		margin-right: 2%;
/* 226 */ 
/* 227 */ 	}
/* 228 */ 
/* 229 */ 	.ezcol-last {
/* 230 */ 
/* 231 */ 		float: left;
/* 232 */ 
/* 233 */ 		clear: none;
/* 234 */ 
/* 235 */ 		display: block;
/* 236 */ 
/* 237 */ 	}
/* 238 */ 
/* 239 */ 	.ezcol-last:after {
/* 240 */ 
/* 241 */ 		content: "";
/* 242 */ 
/* 243 */ 		display: block;
/* 244 */ 
/* 245 */ 		clear: none;
/* 246 */ 
/* 247 */ 	}
/* 248 */ 
/* 249 */ 	.ezcol-last + .ezcol-divider {
/* 250 */ 

/* easy-columns.css */

/* 251 */ 		clear: none !important;
/* 252 */ 
/* 253 */ 		display: none !important;
/* 254 */ 
/* 255 */ 		margin: 0 !important;
/* 256 */ 
/* 257 */ 		padding: 0 !important;
/* 258 */ 
/* 259 */ 	}
/* 260 */ 
/* 261 */ }
/* 262 */ 
/* 263 */ @media all and (max-width: 480px) {
/* 264 */ 
/* 265 */ 	.ezcol-one-quarter,
/* 266 */ 
/* 267 */ 	.ezcol-one-half,
/* 268 */ 
/* 269 */ 	.ezcol-three-quarter,
/* 270 */ 
/* 271 */ 	.ezcol-one-third,
/* 272 */ 
/* 273 */ 	.ezcol-two-third,
/* 274 */ 
/* 275 */ 	.ezcol-one-fifth,
/* 276 */ 
/* 277 */ 	.ezcol-two-fifth,
/* 278 */ 
/* 279 */ 	.ezcol-three-fifth,
/* 280 */ 
/* 281 */ 	.ezcol-four-fifth {
/* 282 */ 
/* 283 */ 		width: 100% !important;
/* 284 */ 
/* 285 */ 		margin-right: 0;
/* 286 */ 
/* 287 */ 	}
/* 288 */ 
/* 289 */ }
