/*--------------------------------------------------------------

Name:  Amnesty International
Version 1.0.0
Author: Josh Johnson
http://www.jshjohnson.com/

--------------------------------------------------------------*/

@charset "UTF-8";

/* Reset */
header, nav, article, footer, address {
	display: block;
}
/* Main */
body {
	background-image:url(images/irongrip.png);
	background-repeat:repeat;
	background-color:#CCC;
	font-family:"Gill Sans Light", "Gill Sans", "Gill Sans MT", Arial, Helvetica, sans-serif;
}
#wrapper {
	width:960px;
	height: auto;
	margin: 20px auto 20px;
	position:relative;
	overflow: auto;
	background-color:#FFF;
	-moz-box-shadow: 0 0 30px 5px #282828;
	-webkit-box-shadow: 0 0 30px 5px #282828;
}
/* Text */
p {
	font-size:15px;
	font-family:"Gill Sans Light", "Gill Sans", "Gill Sans MT", Arial, sans-serif;
}
strong {
	font-family:"Gill Sans Light", "Gill Sans", "Gill Sans MT", Arial, sans-serif;
	font-weight: 500;
}
/* Lists */
ul {
	font-size:12.5px;
	list-style-position:outside;
}
ul.meetings {
	font-size:15px;
	list-style-position:outside;
}
/* Headings */
h1 {
	font-size:30px;
	padding-left:10px;
}
h2 {
	padding-left:10px;
	padding-top:5px;
	font-weight: 500;
}
h3 {
	font-weight: 300;
	font-size: 20px;
}
h4 {
	font-weight: 300;
	font-size: 17px;
}
h6 {
	font-size:12px;
}
/* Header */
header {
	float:left;
	width: 940px;
	height:208px;
	margin-top:10px;
	margin-left:10px;
	background-image:url(images/headerbackground.jpg);
}
header img {
	-webkit-animation:social 1s;
	-moz-animation:social 1s;
	-ms-animation:social 1s;
	-o-animation:social 1s;
	animation:social 1s;
}
img.facebook {
	position: relative;
	left: 400px;
	top:-93px;
	background: white;
	border: 5px solid white;
	padding-right: 2px;
	padding-left: 2px;
	padding-bottom: 2px;
	padding-top: 8px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
img.twitter {
	position: relative;
	left: 400px;
	top:-93px;
	background: white;
	border: 5px solid white;
	padding-right: 2px;
	padding-left: 2px;
	padding-bottom: 2px;
	padding-top: 8px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}
img:hover {
	top:-98px;
}
/* Links */

a:link {
	text-decoration:none;
	color:#000;
}
a:visited {
	text-decoration:none;
	color:#000;
}
/* Google Maps/YouTube */

iframe {
	border-radius:10px;
	border:none;
	margin:0;
}
iframe.video {
	border-radius:0px;
	margin-left: 13px;
	margin-right: 13px;
	margin-bottom: 20px;
	border: none;
	width: 560px;
	height: 315px;
}
/* Navigation */
nav {
	float:left;
	width:950px;
	height:50px;
	margin: 0 0 0 10px;
	text-align:center;
}
nav ul {
	font-family:"Gill Sans Light", "Gill Sans", "Gill Sans MT", Arial, sans-serif;
	font-size:22px;
	font-weight:300;
	list-style-type: none;
	white-space: nowrap;
}
nav li {
	list-style-type: none;
	display: inline;
}
nav a:hover {
	border: solid 4px #b08b79;
	border-left: none;
	border-right: none;
	border-bottom:none;
	-webkit-transition: border .3s ease-in;
	-moz-transition:  border .3s ease-in;
	-o-transition: border .3s ease-in;
	transition: border .3s ease-in;
}
/* Article */

article {
	float:left;
	width:620px;
	margin-left: 10px;
	margin-bottom:20px;
}
article section {
	float:left;
	margin: 0 0 30px 0;
	padding: 0 10px 0 10px;
	width:590px;
	background-color:#f2f2f2;
	-webkit-box-shadow: 0 8px 6px -6px black;
	-moz-box-shadow: 0 8px 6px -6px black;
	box-shadow: 0 8px 6px -6px black;
}
article section img {
	margin-left: 20px;
	margin-bottom: 10px;
	border: 1px black solid;
}

article section.contact {
	background-image: url(images/contactbg.png);
	background-repeat: no-repeat;
	background-position: right;
	
	
	}


/* Aside */
aside {
	float:left;
	margin-bottom:10px;
	padding: 70px 10px 0 10px;
	width:300px;
	background-color:#FFF;
}
img.aside {
	margin-left: 15px;
	margin-bottom: 3px;
	margin-top: 3px;
	border: 1px black solid;
}
.scroll {
	height: 420px;
	overflow: auto;
	white-space: normal;
	float:left;
	margin-bottom:10px;
	padding: 10px 10px 0 10px;
	width:290px;
	background-color:#FFF;
}
/* Footer */
footer {
	clear:both;
	margin: 0 10px 0;
	width:950px;
	margin-bottom: 10px;
	margin-left:auto;
	margin-right:auto;
	color:#FFF;
	font-weight:400;
	font-size: 14px;
	font-family:"Gill Sans Light", "Gill Sans", "Gill Sans MT", Arial, sans-serif;
}
footer a:link {
	color: white;
}
footer a:hover {
	color: white;
	text-decoration: underline;
}
footer a:visited {
	color: white;
	}

footer a.text {
	font-weight: 200;
}
			
/* Animation */

@-webkit-keyframes social {
 from {
-webkit-transform:translate(0px, -100px)
}
to {
	-webkit-transform:translate(0px, 0px)
}
}
@-moz-keyframes social {
 from {
-moz-transform:translate(0px, -100px)
}
to {
	-moz-transform:translate(0px, 0px)
}
}
@-ms-keyframes social {
 from {
-ms-transform:translate(0px, -100px)
}
to {
	-ms-transform:translate(0px, 0px)
}
}
 @keyframes social {
 from {
transform:translate(0px, -100px)
}
to {
	transform:translate(0px, 0px)
}
}
/* Contact Form */

label {
	display:block;
	margin-top:20px;
	font-size:14px;
}
label.name {
	margin-top: none;
}
form {
	margin-left:10px;
	width:407px;
	text-align:left;
	border:none;
	padding-bottom: 25px;
}
input:focus, textarea:focus {
	border:1px solid #FFF;
}
input, textarea {
	width:380px;
	height:15px;
	padding:10px;
	font-size:14px;
	color:#464343;
	border:1px solid #464343;
	border-radius:5px;
	background-color: #FFF;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	font-family:"Gill Sans Light", "Gill Sans", "Gill Sans MT", sans-serif;
}
textarea {
	width:380px;
	height:100px;
	color:#464343;
	background-color: #FFF;
	font-family:"Gill Sans Light", "Gill Sans", "Gill Sans MT", sans-serif;
	resize:none;
}
#submit {
	width:150px;
	height:40px;
	background-color:white;
	margin-top:20px;
	cursor:pointer;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}
#submit:hover {
	opacity:0.7;
}

#jsh {
    float: right;
    top: 3.5px;
    vertical-align: top;
    position:absolute;
    left:0px;
    text-align: right;
    width:100%;
    font-family: 'Raleway', cursive;
    color: white;
    font-size: 12px;
}