* {
	margin: 0;
	padding: 0;
	direction: rtl;
	font-family: Arial;
}
body {
	background: #077fbd;
	background: -webkit-linear-gradient(bottom, #0b325c, #077fbd);
	background: -moz-linear-gradient(bottom, #0b325c, #077fbd);
	background: linear-gradient(bottom, #0b325c, #077fbd);
	color: #0b325c;
	font-size: 14px;
}
#container {
	width: 100%;
	margin: 0 auto;
}
header {
	width: 100%;
}
header>img {
	width: 100%;
	height: auto;
	-webkit-box-shadow: 0px 20px 20px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 20px 20px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 20px 20px 0px rgba(0,0,0,0.75);
}
article {
	width: 95%;
	margin: 25px auto;
	background: white;
	border-radius: 15px;
	padding: 10px;
	box-sizing: border-box;
}
article>h1, article>section>h1, article {
	-webkit-box-shadow: -10px 10px 20px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: -10px 10px 20px 0px rgba(0,0,0,0.5);
	box-shadow: -10px 10px 20px 0px rgba(0,0,0,0.5);	
}
article>h1 {
	width: 80%;
	margin: 20px auto 20px auto;
	background: #ddd;
	background: -webkit-linear-gradient(right, #aaa, #ddd);
	background: -moz-linear-gradient(right, #aaa, #ddd);
	background: linear-gradient(right, #aaa, #ddd);
	padding: 25px;
	box-sizing: border-box;
	border: 5px white solid;
	border-radius: 20px;
	text-align: center;
	font-size: 200%;
}
article>a {
	text-decoration: none;
}
article>a>h3 {
	text-align: center;
	width: 42%;
	margin: 50px auto;
	border-radius: 10px;
	background: #077fbd;
	color: white;
	font-size: 150%;
	padding: 25px;
	box-sizing: border-box;
}
article>section {
	width: 95%;
	margin: 20px auto;
	border-top: 3px #ccc dotted;
	position: relative;
	clear: both;
	padding: 40px 0;
	box-sizing: border-box;
}
article>section>h1 {
	display: inline-block;
	border-radius: 10px;
	padding: 10px 42px;
	box-sizing: border-box;
	text-align: center;
	position: absolute;
	right: 0;
	top: -25px;
	background: white;
	font-size: 150%;
	color: #0b325c;
}
article>section>h2 {
	font-size: 120%;	
}
article>section:first-of-type>img {
	position: absolute;
	left: 0;
	top: -20px;
	width: 20%;
	max-width: 100px;
}
article>section>ul {
	margin: 0;
	padding: 0 20px;
}
article>section>ul>li {
	margin: 5px 0;
}
article>section:last-child>img {
	width: 100%;
	height: auto;
	margin: 0;
}
footer {
	color: white;
	font-size: 80%;
	text-align: center;
	width: 95%;
	margin: 0 auto;
}
footer>a {
	text-decoration: underline;
	color: white;
}
footer>img {
	width: 50%;
	height: auto;
}
article:last-of-type {
	box-sizing: border-box;
	font-size: 75%;
	padding: 10px 20px;
}