/**
 * WordPress WYSIWYG editor styles.
 */
/* ===========================================
 	RESET
 =========================================== */
/* ===========================================
	#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,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}
html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centered in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  -moz-box-sizing: border-box;
  /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  box-sizing: border-box;
}
body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}
ol,
ul {
  list-style: none;
}
table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}
caption,
th,
td {
  font-weight: normal;
  text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
a img {
  border: 0;
}
/* ===========================================
	Editor Styles
=========================================== */
/*----------------------------------
  Typography
----------------------------------*/
body {
  color: #404040;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: 'Raleway', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000000;
}
h1 {
  font-size: 24px;
  line-height: 32px;
}
h2 {
  font-size: 21px;
  line-height: 28px;
}
h3 {
  font-size: 18px;
  line-height: 24px;
}
h4 {
  font-size: 16px;
  line-height: 20px;
}
h5 {
  font-size: 15px;
  line-height: 20px;
}
h6 {
  font-size: 13px;
  line-height: 20px;
}
p {
  margin-bottom: 24px;
  color: #999999;
}
a {
  color: #666666;
  text-decoration: none;
  -webkit-transition: all .3s;
          transition: all .3s;
}
a:visited {
  color: #666666;
}
a:hover,
a:focus,
a:active {
  color: #ff916f;
  border-color: #ff916f;
  outline: 0;
}
p a {
  border-bottom: 1px dotted #000000;
}
b,
strong {
  font-weight: 700;
  color: #000000;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
blockquote {
  padding: 0 48px;
  margin: 48px 0;
  font-size: 18px;
  line-height: 24px;
  border-left: 2px dotted #eee;
}
cite {
  margin: 20px 0;
  display: inline-block;
  font-size: 13px;
  line-height: 20px;
}
address {
  margin: 0 0 24px;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 24px;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font: 14px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  background-color: #eee;
  padding: 0 5px;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  bottom: 1ex;
}
sub {
  top: .5ex;
}
small {
  font-size: 75%;
}
big {
  font-size: 125%;
}
/*----------------------------------
  Elements
----------------------------------*/
hr {
  background-color: #eee;
  border: 0;
  height: 1px;
  margin-bottom: 24px;
  margin-top: 24px;
}
ul,
ol {
  margin: 0 0 24px 40px;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
  line-height: 20px;
  font-size: 15px;
  color: #666666;
  margin-bottom: 4px;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 24px;
}
dt {
  font-weight: bold;
  margin-bottom: 8px;
}
dd {
  margin: 0 24px 24px;
}
img {
  display: block;
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}
figure {
  margin: 0;
}
table {
  margin: 0 0 24px;
  width: 100%;
}
th,
td {
  padding: 4px;
}
th {
  font-weight: bold;
}
/*----------------------------------
  Others
----------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 24px !important;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 24px !important;
}
.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
}
/* WP Caption */
.wp-caption {
  margin-bottom: 24px;
  max-width: 100%;
}
.wp-caption-dt {
  margin-bottom: 0;
}
.wp-caption-dd {
  margin: 8px 0;
  font-size: 13px;
  color: #999999;
}
