/* html elements */

/**
 * The default font size is 16px x 81.3% = 13px
 * Use http://pxtoem.com to calculate proper font size and scale.
 *
 * The font size is set on the html element so we can dynamically
 * resize the font using body classes.
 */
html {
  font-size: 81.3%;
}
body {
  font-family: "Shanti", Arial, clean, sans-serif;
  line-height: 1.5;
  background: #000;
}
h1 {
  font-size: 1.615em;
}
h2 {
  font-size: 1.385em;
}
h3 {
  font-size: 1.231em;
}
h4 {
  font-size: 1.077em;
}
h5,
h6 {
  font-size: 1em;
}
a img {
  border: none;
}
img {
  max-width: 100%; /* flexible images - can cause issues in table cells where no width is set on the column, only in webkit and IE 7/8 */
  height: auto;
}
p {
  margin: 0 0 1.5em;
  padding: 0;
  text-align: justify;
}
em,
dfn {
  font-style: italic;
}
ins {
  border-bottom: none;
  text-decoration: none;
}
pre,
code,
tt,
samp,
kbd,
var {
  font-size: 1em;
  font-family: Consolas, "Lucida Console", Menlo, Monaco, "DejaVu Sans Mono", monospace, sans-serif; /* sans-serif Safari hack */
}
blockquote,
q {

}
blockquote {

    border-left: 5px solid rgba(255,255,255,0.25);
/*    border-radius: 6px 6px 6px 6px;
    box-shadow: 0 0 5px #999; 
    background: none repeat scroll 0 0 #151516;  */
    margin: 10px 20px 20px;
    padding: 5px 10px;
	display:block;
  font-family: 'Segoe UI', 'Open Sans',georgia, Arial, Helvetica, sans-serif;
    text-shadow: 1px 1px 0px #333;
	color:#ddd;
	line-height:130%;
	font-size:1.077em ;
	font-style: italic;
	font-weight:700;
  quotes: "" "";
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote p {
  margin: 0;
    font-family: 'Segoe UI', 'Open Sans',georgia, Arial, Helvetica, sans-serif;
	  text-shadow: 1px 1px 0px #333;
	color:#ddd;
	line-height:130%;
	font-size:1.077em ;
	font-style: italic;
	font-weight:700;
  quotes: "" "";
}
strong,
dfn,
caption,
th {
  font-weight: 700;
}

/* Lists */
ul,
ol {
  margin: 0 0 15px 30px;
  padding: 0;
}

.item-list ul,
.item-list ol {
  margin: 0 0 0 15px;
  padding: 0;
}
.item-list ul li {
  margin: 0 0 15px;
  padding: 0;
}
ul ul,
ul ol,
ol ol,
ol ul,
.block ul ul,
.block ul ol,
.block ol ol,
.block ol ul,
.item-list ul ul,
.item-list ul ol,
.item-list ol ol,
.item-list ol ul {
  margin-bottom: 0;
}
ul {
  list-style-type: square;
}
ul ul ul {
  list-style-type: square;
}
ol {
  list-style-type: decimal;
}
ol ol {
  list-style-type: lower-alpha;
}
ol ol ol {
  list-style-type: lower-roman;
}
ul ul,
ul ul ul ul {
  list-style-type: circle;
}
dt {
  font-weight: 700;
}
dd {
  margin: 0 0 1.5em 40px;
}
