@charset "utf-8";

/*
################################################################
#   1ANIMESITE.CSS                                             #
#   All styles for all pages in the Interpreting Anime site.   #
#   This part of the site does not use any other style sheets. #
################################################################
*/

/* 	
########################
#        COLORS        #
######################## 
*/

/* Grey body text */

html {
	color : #565656;
}

cite.nocolor {
	color : #565656;
}

/* Blue background with white text */

header, nav, footer {
	background : #5B72B6;
	color: #ffffff;
}

a {
	color : #ffffff;
	text-decoration : none;
}

/* Blue citations and links */

section a {
	color : #5B72B6;
	text-decoration : underline;
}

cite {
	color : #5B72B6;
	font-style: italic;
}	

/* Red headers and emphasis */
h2, h3 {
	color: #A61A32;
}

em {
	color: #A61A32;
	font-style: normal;
	font-weight: bold;
}

/*
#########################
#     FONTS & SIZES     #
######################### 
*/

html {
	/* font-size : 100%; */
	font-family: "trebuchet ms", Tahoma, Arial, sans-serif;
	line-height: 130%;
}

h1, h2 {
	font-family:  Bitter, Tahoma, Arial, sans-serif;
}

h1 { 
	font-size: 250%; 
	font-weight: normal;
	font-variant: small-caps;
}

h2 { 
	font-size: 150%; 
	font-weight: normal;
}

h3 { 
	font-size: 100%; 
	font-weight: bold
}

header p {
	font-size: 120%;
}

nav { 
	font-size: 120%;
}

section { 
	line-height: 160%;
}

footer {
	font-size: 85% 
}

/*
############################
#     LAYOUT & MARGINS     #
############################ 
*/

/*	
The basic idea is that text elements (p, headings) are padded at the top 
Sectional elements (header, nav, section, footer) are padded at left, right, bottom		
*/

/* img.left {float : left; margin : 1em 1em 0 0;} */

* {
	margin : 0;
	padding : 0;
}

#main {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	margin : auto;
	max-width : 65em;
	min-width : 40em;
}

img.right {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	float : right;
	clear: left;
	margin : 1em 1em 1em 1em;
}

iframe {
	display:block;
	margin: 2em auto 1em auto;
}

h1, h2, h3, p {padding-top : 1em;}

header, nav, section, footer {
	clear: both;
	padding-left : 1em;
}

section {
	padding-right: 1em;
	padding-bottom: 1em;
}

div.subsection {
	padding-top: 1em;
}

div.subsection h3 {
	display: inline;
	}
	
div.review {
	padding-top: 1.5em;
}
	

iframe {
	display: block;
	margin 10px auto;
	border: 0;
}


/* 
.videoWrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 80%;
}
 */

nav {
	border-top : 3px solid #ffffff;
}

nav ul {
	padding : .75em 0em;
	text-align: right;
}

nav li {
	display : inline;
	border-left: 2px solid #ffffff;
	padding: 0em 1em;
}

nav li.firstitem {
	border-left: 0;
	}

footer {
	padding-bottom: 1em;
	padding-right: 1em;
}

footer p.rhs {
	float: right;

}