/*!
 * monica.js v1.2.0
 *
 * Copyright © 2012 yuqq.
 * MIT License
 * 
 * Date: 2012-08-14
 */

/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

/*
 * Corrects block display not defined in IE6/7/8/9 & FF3
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
    display: block;
}

/*
 * Corrects inline-block display not defined in IE6/7/8/9 & FF3
 */

audio,
canvas,
video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/*
 * Prevents modern browsers from displaying 'audio' without controls
 */

audio:not([controls]) {
    display: none;
}

/*
 * Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4
 * Known issue: no IE6 support
 */

[hidden] {
    display: none;
}


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Corrects text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Prevents iOS text size adjust after orientation change, without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/
 */

html {
    font-size: 62.5%; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
    -ms-text-size-adjust: 100%; /* 2 */
}

/*
 * Addresses font-family inconsistency between 'textarea' and other form elements.
 */

html,
button,
input,
select,
textarea {
    font-family: sans-serif;
}

/*
 * Addresses margins handled incorrectly in IE6/7
 */

body {
    margin: 0;
    color: #333;
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
}


/* =============================================================================
   Links
   ========================================================================== */

/*
 * Addresses outline displayed oddly in Chrome
 */

a:focus {
    outline: thin dotted;
}

/*
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test
 */

a:hover,
a:active {
    outline: 0;
}


/* =============================================================================
   Typography
   ========================================================================== */

/*
 * Addresses font sizes and margins set differently in IE6/7
 * Addresses font sizes within 'section' and 'article' in FF4+, Chrome, S5
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

h2 {
    font-size: 1.5em;
    margin: 0.83em 0;
}

h3 {
    font-size: 1.17em;
    margin: 1em 0;
}

h4 {
    font-size: 1em;
    margin: 1.33em 0;
}

h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}

h6 {
    font-size: 0.75em;
    margin: 2.33em 0;
}

/*
 * Addresses styling not present in IE7/8/9, S5, Chrome
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/*
 * Addresses style set to 'bolder' in FF3+, S4/5, Chrome
*/

b,
strong {
    font-weight: bold;
}

blockquote {
    margin: 1em 40px;
}

/*
 * Addresses styling not present in S5, Chrome
 */

dfn {
    font-style: italic;
}

/*
 * Addresses styling not present in IE6/7/8/9
 */

mark {
    background: #ff0;
    color: #000;
}

/*
 * Addresses margins set differently in IE6/7
 */

p,
pre {
    margin: 1em 0;
}

/*
 * Corrects font family set oddly in IE6, S4/5, Chrome
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 */

pre,
code,
kbd,
samp {
    font-family: Ricty, Inconsolata, Consolas, monospace, serif;
    _font-family: Ricty, Inconsolata, Consolas, 'courier new', monospace;
    font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers
 */

pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/*
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4
 */

/* 1 */

q {
    quotes: none;
}

/* 2 */

q:before,
q:after {
    content: '';
    content: none;
}

small {
    font-size: 75%;
}

/*
 * Prevents sub and sup affecting line-height in all browsers
 * gist.github.com/413930
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}


/* =============================================================================
   Lists
   ========================================================================== */

/*
 * Addresses margins set differently in IE6/7
 */

dl,
menu,
ol,
ul {
    margin: 1em 0;
}

dd {
    margin: 0 0 0 40px;
}

/*
 * Addresses paddings set differently in IE6/7
 */

menu,
ol,
ul {
    padding: 0 0 0 40px;
}

/*
 * Corrects list images handled incorrectly in IE7
 */

nav ul,
nav ol {
    list-style: none;
    list-style-image: none;
}


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * 1. Removes border when inside 'a' element in IE6/7/8/9, FF3
 * 2. Improves image quality when scaled in IE7
 *    code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/
 */

img {
    border: 0; /* 1 */
    -ms-interpolation-mode: bicubic; /* 2 */
}

/*
 * Corrects overflow displayed oddly in IE9
 */

svg:not(:root) {
    overflow: hidden;
}


/* =============================================================================
   Figures
   ========================================================================== */

/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */

figure {
    margin: 0;
}


/* =============================================================================
   Forms
   ========================================================================== */

/*
 * Corrects margin displayed oddly in IE6/7
 */

form {
    margin: 0;
}

/*
 * Define consistent border, margin, and padding
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3 
 * 3. Corrects alignment displayed oddly in IE6/7
 */

legend {
    border: 0; /* 1 */
    padding: 0;
    white-space: normal; /* 2 */
    *margin-left: -7px; /* 3 */
}

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 */

button,
input,
select,
textarea {
    font-size: 100%; /* 1 */
    margin: 0; /* 2 */
    vertical-align: baseline; /* 3 */
    *vertical-align: middle; /* 3 */
}

/*
 * Addresses FF3/4 setting line-height on 'input' using !important in the UA stylesheet
 */

button,
input {
    line-height: normal; /* 1 */
}

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 * 3. Removes inner spacing in IE7 without affecting normal text inputs
 *    Known issue: inner spacing remains in IE6
 */

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer; /* 1 */
    -webkit-appearance: button; /* 2 */
    *overflow: visible;  /* 3 */
}

/*
 * Re-set default cursor for disabled elements
 */

button[disabled],
input[disabled] {
    cursor: default;
}

/*
 * 1. Addresses box sizing set to content-box in IE8/9
 * 2. Removes excess padding in IE8/9
 * 3. Removes excess padding in IE7
      Known issue: excess padding remains in IE6
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
    *height: 13px; /* 3 */
    *width: 13px; /* 3 */
}

/*
 * 1. Addresses appearance set to searchfield in S5, Chrome
 * 2. Addresses box-sizing set to border-box in S5, Chrome (include -moz to future-proof)
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/*
 * Removes inner padding and search cancel button in S5, Chrome on OS X
 */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

/*
 * Removes inner padding and border in FF3+
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*
 * 1. Removes default vertical scrollbar in IE6/7/8/9
 * 2. Improves readability and alignment in all browsers
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}


/* =============================================================================
   Tables
   ========================================================================== */

/*
 * Remove most spacing between table cells
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* =============================================================================
   Selection
   ========================================================================== */

::selection,
::-moz-selection {
	background-color: #ffcae5;
	color: black; 
}


/* =============================================================================
   Link
   ========================================================================== */

#footer a,
#main .entry-body a {
	text-decoration: none;
}

#footer a:link,
#main .entry-body a:link {
	border-bottom: 1px dotted #ff3188;
	color: #ff3188;
}

#footer a:visited,
#main .entry-body a:visited {
	color: #ccc;
	border-bottom: 1px dotted #ccc;
}

#footer a:hover,
#main .entry-body a:hover,
#footer a:active,
#main .entry-body a:active,
#footer a:focus,
#main .entry-body a:focus {
	color: white;
	background-color: black; 
	border-bottom: none;
}


/* =============================================================================
   Layout
   ========================================================================== */

body {
	text-align: center;
}

#header {

}

#header hgroup {
	margin: 0 auto;
	text-align: left;
	width: 940px;
}

#content {
	margin: 0 auto;
	overflow: hidden;
	text-align: left;
	width: 940px;
}

#main {
	float: right;
	width: 720px;
}

#sidebar {
	float: left;
	width: 220px;
	margin: 0;
	padding: 0;
}


/* =============================================================================
   #header
   ========================================================================== */

#header {
	background: url(http://blog-imgs-12-origin.fc2.com/y/u/q/yuqqn/monica-dashed-h.gif) repeat-x left bottom;
	overflow: hidden;
	padding: 30px 0;
	vertical-align: top;
}

#header hgroup {
	position: relative;
}

#header h1,
#header h1 a,
#header h2 {
	display: inline-block;
	/display: inline;
	/zoom: 1;
	line-height: 32px;
	margin: 0;
}

#header h1 a {
	color: black;
	text-decoration: none;
	font-family: 'Oswald', "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 32px;
}

#header h2 {
	color: #707070;
	font-size: 11px;
	font-size: 1.1rem;
	font-weight: normal;
	margin-left: 20px;
	position: absolute;
	top: 0;
}


/* =============================================================================
   #footer
   ========================================================================== */

#footer {
	background: url(http://blog-imgs-12-origin.fc2.com/y/u/q/yuqqn/monica-dashed-h.gif) repeat-x left top;
	overflow: hidden;
	font-size: 11px;
	font-size: 1.1rem;
	color: #999;
	padding: 30px 0;
}

#footer p {
	display: inline-block;
	/display: inline;
	/zoom: 1;
	padding: 0;
	margin: 0 10px;
}

#copyright {
	font-family: Arial, sans-serif;
}

/* =============================================================================
   #content
   ========================================================================== */

#content {
	background: url(http://blog-imgs-12-origin.fc2.com/y/u/q/yuqqn/monica-dashed-v.gif) repeat-y left top;
}


/* =============================================================================
   #main
   ========================================================================== */

#main {
}

#main > h1 {
	margin: 60px 1px 50px 0;
	color: white;
	padding: 30px;
	background-color: black;
}

/*
 * .post
 */
#main article.post {
	background: url(http://blog-imgs-12-origin.fc2.com/y/u/q/yuqqn/monica-post-footer.png) no-repeat left bottom;
	margin: 50px 0;
	padding: 0 30px 60px;
	position: relative;
	min-height: 320px;
	_height: 320px;
}

#main article.post .entry-header {
	
}

#main article.post .entry-header h1,
#main article.post .entry-header h2 {
	margin: 0 0 30px;
	width: 420px;
	font-size: 18px;
	font-size: 1.8rem;
}

#main article.post .entry-header h2 a {
	color: black;
	text-decoration: none;
}

#main article.post .entry-header h2 a:hover {
	color: white;
	background-color: #fc3090;
}

#main article.post .entry-header ul.entry-meta {
	font-size: 11px;
	font-size: 1.1rem;
	position: absolute;
	top: 0;
	right: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 190px;
}

#main article.post .entry-header ul.entry-meta li {
	background: url(http://blog-imgs-12-origin.fc2.com/y/u/q/yuqqn/monica-icon16.png) no-repeat 0 0;
	margin: 8px 0;
	padding: 0 0 0 20px;
}

#main article.post .entry-header ul.entry-meta li ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#main article.post .entry-header ul.entry-meta li li {
	background: none;
	display: inline;
	margin: 0;
	padding: 0;
}

#main article.post .entry-header ul.entry-meta li li::after {
	content: ',';
}

#main article.post .entry-header ul.entry-meta li li:last-child::after {
	content: '';
}

#main article.post .entry-header ul.entry-meta li a {
	color: #404040;
	text-decoration: none;
}

#main article.post .entry-header ul.entry-meta li a:hover {
	color: black;
	border-bottom: 1px dotted black;
}

#main article.post .entry-header ul.entry-meta li.date {
	background: none;
	font-family: Arial;
	margin: 0 0 40px;
	overflow: hidden;
	padding: 0;
}

#main article.post .entry-header ul.entry-meta li.category{ background-position: 0 0; } 
#main article.post .entry-header ul.entry-meta li.comment{ background-position: 0 -66px; } 
#main article.post .entry-header ul.entry-meta li.community{ background-position: 0 -132px; } 
#main article.post .entry-header ul.entry-meta li.tag{ background-position: 0 -198px; } 
#main article.post .entry-header ul.entry-meta li.trackback{ background-position: 0 -264px; } 

#main article.post .entry-header ul.entry-meta li.date span.entry-year {
	display: block;
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 18px;
	margin-top: -7px;
}

#main article.post .entry-header ul.entry-meta li.date span.entry-month {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 36px;
	text-transform: uppercase;
}

#main article.post .entry-header ul.entry-meta li.date span.entry-day {
	float: left;
	font-size: 72px;
	font-size: 7.2rem;
	line-height: 72px;
	padding-right: 5px;
}

#main article.post .more-link {
	text-align: right;
	margin: 1.7em 0;
}

#main article.post .more-link a {
	padding: 0.5em 1em;
	display: inline-block;
	/display: inline;
	/zoom: 1;
	background-color: #333;
	color: white;
	text-decoration: none;
	border: none;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	-ms-transition: .3s;
	transition: .3s;
}

#main article.post .more-link a:hover {
	background-color: #ff007f;
}

#main article.post .entry-body {
	width: 420px;
	line-height: 1.7;
}

#main article.post .entry-body a.img,
#main article.post .entry-body a[href$=jpg],
#main article.post .entry-body a[href$=jpeg],
#main article.post .entry-body a[href$=png],
#main article.post .entry-body a[href$=gif] {
	display: inline-block;
	/display: inline;
	/zoom: 1;
	text-align: center;
	border: none;
	background: none;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	-ms-transition: .3s;
	transition: .3s;
}

#main article.post .entry-body a.img:hover,
#main article.post .entry-body a[href$=jpg]:hover,
#main article.post .entry-body a[href$=jpeg]:hover,
#main article.post .entry-body a[href$=png]:hover,
#main article.post .entry-body a[href$=gif]:hover {
	opacity: .75;
}

#main article.post .entry-body *+h1,
#main article.post .entry-body *+h2 {
	margin-top: 50px;
}

#main article.post .entry-body *+h3,
#main article.post .entry-body *+h4 {
	margin-top: 40px;
}

#main article.post .entry-body *+h5,
#main article.post .entry-body *+h6 {
	margin-top: 30px;
}

#main article.post .entry-body #more {
	margin-top: 50px;
}

#main article.post .entry-footer {
	position: absolute;
	bottom: 50px;
	right: 30px;
	width: 170px;
}

#main article.post .entry-footer p {
	text-align: center;
}

#main article.post .entry-footer .return {
	background: url(http://blog-imgs-12-origin.fc2.com/y/u/q/yuqqn/monica-return.png) no-repeat 0 0;
	display: block;
	width: 36px;
	height: 36px;
	text-indent: -32768px;
	overflow: hidden;
	opacity: 1;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	-ms-transition: .3s;
	transition: .3s;
	margin: 0 auto;
}

#main article.post .entry-footer .return:hover {
	opacity: 0.1;
}

#main article.post .entry-body .fc2_footer {
	margin-top: 30px;
}

#main article.post .entry-body .fc2_footer a {
	background: none;
	border: none;
}

#main ol.pager {
	list-style: none;
	padding: 0;
	margin: 30px 0;
	text-align: center;
	font-size: 11px;
	font-size: 1.1rem;
}

#main ol.pager li,
#main ol.pager li a {
	display: inline-block;
	/display: inline;
	/zoom: 1;
}

#main ol.pager li {
	margin: 0 0.5em;
}

#main ol.pager li.current {
	background-color: black;
	color: white;
	font-weight: bold;
	padding: 0.7em;
	width: 2em;
}

#main ol.pager li a {
	background-color: #f9f9f9;
	border: 1px dotted black;
	color: #333;
	padding: 0.7em;
	width: 2em;
	text-decoration: none;
}

#main ol.pager li a:hover {
	background-color: black;
	border-style: solid;
	color: white;
}

#cm .reaction,
#tb .reaction {
	margin-bottom: 30px;
}

#cm,
#tb {
	border-top: 1px solid black;
	padding-top: 40px;
	margin-bottom: 50px;
	width: 420px;
}

#cm .action form input,
#cm .action form textarea,
#tb .action input {
	border: 1px solid black;
	padding: 2px;
	width: 100%;
}

#cm .action form textarea {
	height: 10em;
}

#cm .action form input:focus,
#cm .action form textarea:focus,
#tb .action input:focus {
	border-style: dashed;
}

#main .reaction article {
	margin: 10px 10px 0;
	border-bottom: 1px dashed #ccc;
}

#main .reaction article p {
	margin: 5px 0 10px;
	line-height: 1.7;
}

#main .reaction article header {
	position: relative;
	
}

#main .reaction article header h3 {
	margin: 0;
	font-size: 11px;
	font-size: 1.1rem;
}

#main .reaction article header h3 a {
	color: #999;
	text-decoration: none;
}

#main .reaction article header h3 a:hover {
	color: black;
	border-bottom: 1px dotted black;
}

#main .reaction article header p {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	color: #999;
	font-size: 10px;
	font-size: 1.0rem;
	line-height: 1;
}

button {
	padding: 0.7em 1.2em;
	border-width: 0 2px 2px 0;
	border-style: solid;
	border-color: white;
	background-color: black;
	color: white;
	-webkit-box-shadow: 1px 1px 0 black;
	-moz-box-shadow: 1px 1px 0 black;
	-o-box-shadow: 1px 1px 0 black;
	-ms-box-shadow: 1px 1px 0 black;
	box-shadow: 1px 1px 0 black;
	cursor: pointer;
}

button:active {
	margin: 3px 0 -1px 3px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-o-box-shadow: none;
	-ms-box-shadow: none;
	border: none;
	box-shadow: none;
}


/* =============================================================================
   #sidebar
   ========================================================================== */

#sidebar {
}

#sidebar dt.plugin-title {
	background: url(http://blog-imgs-12-origin.fc2.com/y/u/q/yuqqn/monica-sidebar-dt.gif) no-repeat left center;
	margin: 0;
	padding: 0 10px 0 19px;
	line-height: 16px;
	font-weight: bold;
	color: black;
}

#sidebar dt.plugin-title:first-child {
	margin-top: 60px;
}

#sidebar dd.plugin-body {
	background: url(http://blog-imgs-12-origin.fc2.com/y/u/q/yuqqn/monica-siderbar-divider.gif) repeat-x left bottom;
	margin: 10px 0 20px;
	padding: 0 10px 25px;
}

#sidebar dd.plugin-body a {
	color: #707070;
	text-decoration: none;
}

#sidebar dd.plugin-body a:hover {
	color: black;
	border-bottom: 1px dotted black;
}

#sidebar .left { text-align: left }
#sidebar .center { text-align: center }
#sidebar .right { text-align: right }

#sidebar dd.plugin-body ul,
#sidebar dd.plugin-body ol,
#sidebar dd.category div {
	list-style: none;
	margin: 0 0 0 -5px;
	padding: 0;
}

#sidebar dd.plugin-body li,
#sidebar dd.category div div {
	background: url(http://blog-imgs-12-origin.fc2.com/y/u/q/yuqqn/monica-sidebar-li.gif) no-repeat left top;
	line-height: 16px;
	margin: 5px 0;
	padding: 0 0 0 15px;
}

#sidebar dd.plugin-body .plugin-search br {
	display: none;
}

#sidebar dd.plugin-body .plugin-search input[type=submit] {
	display: none;
}

#sidebar dd.plugin-body .plugin-search input[type=text] {
	background: url(http://blog-imgs-12-origin.fc2.com/y/u/q/yuqqn/monica-search.gif) no-repeat 4px 2px;
	border: 1px dashed #999;
	color: #ccc;
	line-height: 16px;
	padding: 2px 1px 2px 20px;
}

#sidebar dd.plugin-body .plugin-search input[type=text]:focus,
#sidebar dd.plugin-body .plugin-search input[type=text]:active {
	color: #333;
	background-position: 4px -48px;
	border: 1px solid black;
}


/* =============================================================================
   Plugin
   ========================================================================== */

#sidebar dd.calendar {
	text-align: center;
}

#sidebar dd.calendar table.calender {
	border-spacing: 0;
	border-collapse: collapse;
	margin: 0 auto;
	width: 98%;
	font-size: 11px;
	font-size: 1.1rem;
}

#sidebar dd.calendar table.calender th {
	width: 14%;
	font-weight: bold;
	padding: 0.6em 0;
	text-align: center;
	background-color: white;
}

#sidebar dd.calendar table.calender #sun {
	color: #ea7070;
}

#sidebar dd.calendar table.calender #sat {
	color: #66b5ff;
}

#sidebar dd.calendar table.calender tr:nth-child(odd) {
	background-color: #f3f3f3;
}

#sidebar dd.calendar table.calender td {
	width: 14%;
	padding: 0.6em 0;
	text-align: center;
}

#sidebar dd.calendar table.calender td a {
	display: inline-block;
	/display: inline;
	/zoom: 1;
	margin: -0.2em 0;
	padding: 0.2em 0.7em;
	background-color: #666;
	border: none;
	text-decoration: none;
	color: white;
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	-o-border-radius: 2em;
	-ms-border-radius: 2em;
	border-radius: 2em;
}

#sidebar dd.calendar table.calender td a:hover {
	background-color: #75b4ef;
}


/* =============================================================================
   @font-face
   ========================================================================== */

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: normal;
  src: local('Oswald '), local('Oswald'), url('http://themes.googleusercontent.com/static/fonts/oswald/v4/qpy-UiLNKP-VfOdbcs6r6-vvDin1pK8aKteLpeZ5c0A.woff') format('woff');
}

@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  src: local('Oswald Bold'), local('Oswald-Bold'), url('http://themes.googleusercontent.com/static/fonts/oswald/v4/bH7276GfdCjMjApa_dkG6bO3LdcAZYWl9Si6vvxL-qU.woff') format('woff');
}