/*
Goldilocks Approach to Responsive Web Design Boilerplate

Author: Design by Front - @designbyfront
Version: 0.1
URL: http://www.goldilocksapproach.com
----------------------------------------------------------------------------------------

CONTENTS - GLOBAL.CSS
-----------------------------------------
1. RESET
2. ROOT
3. CORE TYPOGRAPHY
4. LINKS
5. GLOBAL LAYOUT & GLOBAL CUSTOM TYPOGRAPHY
6. CUSTOM LAYOUT & TYPOGRAPHY (Baby bear)
7. BROWSER AND NON-SEMANTIC STYLING

CONTENTS - LAYOUT.CSS
-----------------------------------------
8. CUSTOM LAYOUT & TYPOGRAPHY (Daddy bear)
9. CUSTOM LAYOUT & TYPOGRAPHY (Mummy bear)

*/


/* 1. RESET
----------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size:100%;
  font: inherit;
  vertical-align: baseline;
  }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  }
  
  
/* 2. ROOT
----------------------------------------------------------------------------------------*/
html { 
  overflow-y: scroll;
  background: #FFF;
  }

/* /ht Ethan Marcotte - http://front.ie/l8rJaA */
img, embed, object, video { max-width: 100%; h2 img:         border-color:white;       border-width: 1px; border-style:solid; border-color: white;}
.ie6 img.full, .ie6 object.full, .ie6 embed, .ie6 video { width: 100%; }


/* 3. CORE TYPOGRAPHY
----------------------------------------------------------------------------------------*/
body {
  font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif;
  font-size: 1em;
  line-height: 1.618em;
  color: #222;
  }

h1, h2, h3, h4, h5, h6 {
  padding: 0.809em;                    
}

p, ul, ol, dl, blockquote {
    font-size: 0.9em;
    line-height: 1.24em;
    margin-bottom: 1.618em; 
    font-weight: 200;   letter-spacing: 0.04em;
    max-width: 30em; /* Optimal width for long-form text */
  }
    
ul { list-style-type: none; margin-left: 1.618em; }
ol { list-style-type: decimal; margin-left: 1.618em; }
nav ul, nav ol { list-style: none; margin: 0; padding: 0;}

b, strong { font-weight: bold; }
i, em { font-style: italic; }
small { font-size: 80%; }


/* 4. LINKS
----------------------------------------------------------------------------------------*/
a, a:visited { outline: none; text-decoration: none; }  
a:hover { outline: none; text-decoration:none; }  
a:active, a:focus { outline: none; }


/* 5. GLOBAL LAYOUT & GLOBAL CUSTOM TYPOGRAPHY
----------------------------------------------------------------------------------------*/

html {
	background:#9DBAD4 no-repeat;
        /* IE10 Consumer Preview */ 
        background-image: -ms-linear-gradient(top, #24659F 0%, #9DBAD4 40%, #9DBAD4 100%);
        
        /* Mozilla Firefox */ 
        background-image: -moz-linear-gradient(top, #24659F 0%, #9DBAD4 40%, #9DBAD4 100%);
        
        /* Opera */ 
        background-image: -o-linear-gradient(top, #24659F 0%, #9DBAD4 40%, #9DBAD4 100%);
        
        /* Webkit (Safari/Chrome 10) */ 
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #24659F), color-stop(0.4, #9DBAD4), color-stop(1, #9DBAD4));
        
        /* Webkit (Chrome 11+) */ 
        background-image: -webkit-linear-gradient(top, #24659F 0%, #9DBAD4 40%, #9DBAD4 100%);
        
        /* W3C Markup, IE10 Release Preview */ 
        background-image: linear-gradient(to bottom, #24659F 0%, #9DBAD4 40%, #9DBAD4 100%);
        
        height:100%;
}

#container {
	background:#fff;
	padding:0.2em;
	}

header {
	text-align:center;
	background: #073763;
}
	
header p {
	font-size:0.5em;
	max-width:100%;
	font-family: Arial, Helvetica, sans-serif;    color: white;  font-weight: 500;  text-align: center;
	padding-bottom: 0.809em;
}

p.intro {
	font-weight:100;
  }

  
aside {
	margin: 0 auto;
	}
  
form {
	font-size:0.7em;
	border: 1px solid #eee;
	padding:0.8em;
	max-width:38em;
	line-height:1.1em;
}

footer {
	margin-top:2em;
	}

footer p {
	font-size:0.8em;
	max-width:100%;
	}
	
.archives_series {
	border: solid 1px;
	padding:1em;
}

.archives_series ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
}

.archives_series li {
	padding-bottom: 1em; /*bottom spacing between menu items*/
}

.archives_series a {
	background: #E9E9E9;
	color:#24659F;
	display: block;
	padding: 0.8em;
	font-size:1em;
	line-height:1.1em;
	text-decoration: none;
}

.archives_series a:hover {
	background: #24659F;
	color:#eee;
}

/* 6. CUSTOM LAYOUT & TYPOGRAPHY (Baby bear)
----------------------------------------------------------------------------------------*/
#container {
    padding: 0.5em;
    max-width: 30em;
    margin: auto;
  }

  header {
	padding: 0 0.2em;
  }
  
  header p {
	font-size:0.7em;
	}
  
aside { 
	}

aside li {
	font-size:1.2em;
	line-height:1.9em;
	padding:1em;
	font-family:Arial;
	text-align:center;
	}
	
aside a {
	border:1px solid #ccc;
    color:#fff; 
    padding:0.4em;
    background: #0B5394;
	}
	
aside a:hover {
	    background:#073763;
}


/* 7. BROWSER AND NON-SEMANTIC STYLING
----------------------------------------------------------------------------------------*/
.cf:before, .cf:after { content: ""; display: block; }
.cf:after { clear: both; }
.ie6 .cf { zoom: 1 }