/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
#image-container {
	min-width: 550px;
/* width of 5 images (625px) plus images' padding and border (60px) plus images' margin (50px) */
	height: 100px;
	padding: 10px 5px;
	margin: 0;
	list-style-type: none;
}

#image-container li {
	width: 20%;
	float: right;
}

#image-container img {
	display: block;
	width: 150px;
	height: 100px;
	padding: 5px;
	margin: auto;
}

#image-container a {
	font-size: 13px;
}	
}

@media screen and (max-width: 1050px) {
	#image-container {
		min-width: 400px;
	/* width of 5 images (625px) plus images' padding and border (60px) plus images' margin (50px) */
		height: 80px;
		padding: 8px 2px;
		margin: 0;
		list-style-type: none;
	}
	
	#image-container li {
		width: 20%;
		float: right;
	}
	
	#image-container img {
		display: block;
		width: 120px;
		height: 80px;
		padding: 4px;
		margin: auto;
	}
	
	#image-container a {
		font-size: 13px;
	}
}

@media screen and (max-width: 768px) {
	#image-container {
		min-width: 300px;
	/* width of 5 images (625px) plus images' padding and border (60px) plus images' margin (50px) */
		height: 60px;
		padding: 6px 2px;
		margin: 0;
		list-style-type: none;
	}
	
	#image-container li {
		width: 20%;
		float: right;
	}
	
	#image-container img {
		display: block;
		width: 90px;
		height: 60px;
		padding: 3px;
		margin: auto;
	}
	
	#image-container a {
		font-size: 13px;
	}
}

/* =Responsiveness: Handhelds
----------------------------------------------- */
@media screen and (max-width: 520px) {
	#image-container {
		min-width: 200px;
	/* width of 5 images (625px) plus images' padding and border (60px) plus images' margin (50px) */
		height: 40px;
		padding: 4px 2px;
		margin: 0;
		list-style-type: none;
	}
	
	#image-container li {
		width: 20%;
		float: right;
	}
	
	#image-container img {
		display: block;
		width: 60px;
		height: 40px;
		padding: 2px;
		margin: auto;
	}
	
	#image-container a {
		font-size: 9px;
	}
}