@charset "UTF-8";
/* Add your Exception and Custom Rules Here*/

/*Media Query for all devices at screen/browser widths of 700px or less*/
@media only screen and (min-width: 0px) and (max-width: 700px) {
/*Add rules here*/
}

/*Media Query for smartphones*/
@media only screen and (max-device-width: 480px) {
/*Add rules here*/
figure	{
	display: block;
	position:relative;
	top:-1em;
    margin: 0 1em 0 1em;
	padding: 0 1em 0 3em;
	z-index:1;
}
h4 {font-size: 0.7em;
	text-align: center;
	padding: 0.2em 0 0 0;
}
}

/*Media Query for smartphones in landscape mode*/
@media only screen and (max-device-width: 480px) and (orientation : landscape) {
/*Add rules here*/
figure	{
	display: block;
	position:relative;
	top:-2em;
    margin: 0 1em 0 2em;
	padding: 0 1em 0 7em;
	z-index:1;
}
h4 {font-size: 0.8em;
	text-align: center;
	padding: 0.2em 0 0 0;
}
}
