/* Base Theme ============================================================= */

@import url('/styles/fonts.css');

/* Reset ------------------------------------------------------------------ */

/*
    reset.css - resets default browser styling
    http://tantek.com/log/2004/09.html#d06t2354
    http://www.vox.com/.shared/css/base.css by beausmith.com
    http://developer.yahoo.com/yui/reset/
*/

:link,:visited {
    text-decoration: none;
}
html,body,div,
ul,ol,li,dl,dt,dd,
form,fieldset,input,textarea,
h1,h2,h3,h4,h5,h6,pre,code,p,blockquote,hr,
th,td {
    margin: 0;
    padding: 0;
}
/*
h1,h2,h3,h4,h5,h6 {
    font-size: 100%;
    font-weight: normal;
}
*/
table {
    border-spacing: 0;
}
fieldset,img,abbr,acronym {
    border: 0;
} 
/* strict reset by uncommenting lines below */
address,caption,cite,code,dfn,em,strong,b,u,s,i,th,var {
    /* font-style: normal; */
    /* font-weight: normal; */
}

ol,ul {
    list-style: none;
}
caption,th {
    text-align: left;
}
q:before,q:after {
    content: '';
}
a {
    text-decoration: underline;
    outline: none;
}
hr {
    border: 0;
    height: 1px;
    background-color: #000;
    color: #000;
}
a img,:link img,:visited img {
    border: none;
}
address {
    font-style: normal;
    display: inline;
}
dt {
    font-weight: bold;
    font-size: 110%;
}
dd {
    margin-top: 3px;
    margin-bottom: 10px;
    margin-left: 30px;
}
.thin-spacer {
    margin-top: 5px;
}
.spacer {
    margin-top: 10px;
}
.thick-spacer {
    margin-top: 15px;
}
.thick-padding {
    padding-top: 15px;
}
.thicker-spacer {
    margin-top: 20px;
}
.thickish-spacer {
    margin-top: 25px;
}
.thickest-spacer {
    margin-top: 30px;
}
.thick-space-after {
    margin-bottom: 20px;
}
.space-after {
    margin-bottom: 15px;
}
.thin-space-after {
    margin-bottom: 7px;
}
.thinner-space-after {
    margin-bottom: 3px;
}
.clear {
    clear: both;
}


/* Utilities ----------------------------------------------------------------- */

.pkg:after, #content-inner:after {
    content: " ";
    display: block;
    visibility: hidden;
    clear: both;
    height: 0.1px;
    font-size: 0.1em;
    line-height: 0;
}
.pkg, #content-inner { display: block; }
/* no ie mac \*/
* html .pkg, * html #content-inner { height: 1%; }
.pkg, #content-inner { display: block; }
/* */

.inline { display: inline; }
.hidden { display: none; }

.pointer { cursor: pointer; }


/* Layout ----------------------------------------------------------------- */

body {
    text-align: center;
    background: #fff;
}

#container-inner {
    width: 940px;
    margin: 0 auto;
    text-align: left;
}

#header, #content, #alpha, #beta, #gamma, #footer {
    position: relative;
}

#alpha, #beta, #gamma {
    display: inline;
    float: left;
}

#header-inner, #content-inner, #footer-inner,
#alpha-inner, #beta-inner, #gamma-inner {
    position: static;
}

#header-inner, #content-inner, #footer-inner {
    padding-top: 20px;
    padding-bottom: 20px;
}

#header-inner, #footer-inner,
#alpha-inner, #beta-inner, #gamma-inner {
    overflow: hidden;
    padding-right: 30px;
    padding-left: 0;
}


/* Wide-Thin-Thin */

.layout-wtt #alpha {
    width: 540px;
}
.layout-wtt #beta {
    left: 220px;
    width: 180px;
}
.layout-wtt #gamma {
    right: 180px;
    width: 220px;
}


/* Thin-Wide-Thin */

.layout-twt #alpha {
    left: 220px;
    width: 560px;
}
.layout-twt #alpha-inner {
    padding-right: 20px;
}
.layout-twt #beta {
    left: -560px;
    width: 200px;
}
.layout-twt #gamma {
    width: 180px;
    padding-left: 20px;
}


/* Wide-Thin */

.layout-wt #alpha {
    width: 780px;
}
.layout-wt #beta {
    width: 160px;
}


/* Thin-Wide */

.layout-tw #alpha {
    left: 180px;
    width: 760px;
}
.layout-tw #beta {
    left: -760px;
    width: 180px;
}


/* Medium-Wide */

.layout-mw #alpha {
    left: 330px;
    width: 610px;
}
.layout-mw #beta {
    left: -610px;
    width: 330px;
}

/* Wide-Medium */

.layout-wm #alpha {
    width: 610px;
}
.layout-wm #beta {
    width: 330px;
}


/* Wide-Narrow */

.layout-wn #alpha {
    width: 645px;
}
.layout-wn #beta {
    width: 295px;
}


/* Medium-Medium */

.layout-mm #alpha {
    width: 480px;
}
.layout-mm #beta {
    width: 460px;
}
.layout-mm #alpha-inner {
    overflow: visible;
    padding-left: 0;
    padding-right: 20px;
}
.layout-mm #beta-inner {
    overflow: visible;
}


/* Wide */

.layout-w #alpha {
    width: 940px;
}
.layout-w #beta {
    width: 0px;
}


/* Content ---------------------------------------------------------------- */

a:link, a:visited {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6, p, pre, blockquote, fieldset, ul, ol, dl {
    margin-bottom: .75em;
}

pre {
    font-family: 'courier new', courier, monospace;
}

pre.perl {
    overflow: auto;
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
    page-break-inside: avoid;
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

pre.perl-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

blockquote, ol, ul {
    margin-left: 30px;
    background-repeat: repeat-y;
}

ol { list-style: decimal outside; }
ul { list-style: disc outside; }
.item { list-style: none; }

.main-menu-list {
    background-color: white;
    font-weight: normal;
    text-align: center;
    font-size: 100%;
    margin-top: 2px;
    margin-bottom: 0;
    margin-left: 9px;
}

.format-menu-list {
    font-weight: bold;
    text-align: left;
    font-size: 90%;
    border-bottom: dotted 1px #999999;
    margin-bottom: 26px;
}

.menu-list {
    font-weight: bold;
    text-align: left;
    font-size: 90%;
    border-bottom: dotted 1px #999999;
    margin-bottom: 15px;
}

.main-menu-list ul, .format-menu-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-menu-list li, .format-menu-list li {
    display: inline-block;
    margin: 0;
    padding-right: 15px;
    font-size: 12pt;
    font-weight: bold;
    font-variant: all-small-caps;
}

.main-menu-list li:last-child, .format-menu-list li:last-child {
    padding-right: 0;
}

.main-menu-list a, .format-menu-list a, .menu-list a {
    color: #000;
    text-decoration: none;
}

.main-menu-list a:hover {
    background-color: #e8f4ff;
    background-image: linear-gradient(#fff, #e0ebff);
}

.thanks ul, .thanks li, .asset-body li {
    font-size: 100% !important;
    margin-left: 0 !important;
}

.normal, .lead {
    font-size: 100%;
}

p.space {
    margin-top: 20px;
}
p.space::first-line, p.start::first-line, .lead::first-line {
    font-size: 125%;
    font-weight: bold;
    font-variant: small-caps;
    font-family: times new roman, serif;
}
p.space::first-letter, p.start::first-letter, .lead::first-letter {
    font-size: 300%;
    font-style: normal;
    font-weight: bold;
    font-family: americana xbd bt, belwe cn bt, georgia, lucida grande, times new roman, verdana, arial, sans-serif;
    float: left;
    margin-left: 0px;
    margin-top: -6px;
    margin-right: 3px;
    margin-bottom: 3px;
}
.italic {
    font-style: italic;
}
.bold {
    font-weight: bold;
}
.smallcaps {
    font-variant: small-caps;
}
.smallcaps {
    font-variant: small-caps;
}
.smallcapsbold {
    font-variant: small-caps;
    font-weight: bold;
}
blockquote.impact, blockquote.attribution, blockquote.notice {
    padding: 10px 13px;
    border: none;
    line-height: 1.4em;
    font-family: Georgia, Times New Roman, serif;
    font-size: 16px;
    font-style: italic;
}
blockquote.impact em, blockquote.impact i,
blockquote.attribution em, blockquote.attribution i,
blockquote.notice em, blockquote.notice i,
blockquote.pullquote em, blockquote.pullquote i {
    font-style: normal;
}
blockquote.notice {
    display: block;
    float: right;
    width: auto;
    max-width: 400px;
    margin-left: 10px;
    font-weight: bold;
}
blockquote.notice::before {
    content: '!';
    display: inline;
    height: 0;
    line-height: 0;
    left: -8px;
    position: relative;
    top: 6px;
    padding: 0 0 5px 0;
    color: #444;
    font-size: 225%;
    font-family: Coldstyle;
    font-style: normal;
    font-weight: normal;
}
blockquote.quote {
    padding: 10px;
    font-size: 120%;
    margin: 10px 50px 10px 30px;
    quotes: "\201C""\201D";
    font-family: Americanus Pro, Coldstyle;
    border: none;
    line-height: 1.3em;
}
blockquote.quote::before {
    content: open-quote;
    display: inline;
    height: 0;
    line-height: 0;
    left: -7px;
    position: relative;
    top: 27px;
    padding: 0 0 5px 0;
    color: #444;
    font-size: 300%;
    font-family: Coldstyle;
}
blockquote.question {
    padding: 10px;
    font-size: 90%;
    margin: 10px 0;
    font-family: JohnDoe, Courier New, Courier, monospace;
    font-weight: bold;
    background: #fff8ee;
    border: none;
    line-height: normal;
}
blockquote.question::before {
    content: '?';
    display: inline;
    height: 0;
    line-height: 0;
    left: -10px;
    position: relative;
    top: 6px;
    padding: 0 0 5px 0;
    color: #444;
    font-size: 225%;
    font-family: Coldstyle;
}
blockquote.example {
    padding: 10px 15px;
    margin: 20px 0;
    font-family: JohnDoe, Courier New, Courier, monospace;
    font-weight: bold;
    font-size: 90%;
    line-height: 1.3em;
    background-color: #EEE;
}
blockquote.rating {
    display: block;
    float: right;
    width: auto;
    max-width: 400px;
    margin-left: 10px;
    font-family: Coldstyle;
    font-size: 300%;
    font-weight: bold;
    padding: 20px 10px;
}
blockquote.rating::before {
    content: 'Rating:';
    display: block;
    position: relative;
    left: 2px;
    margin-top: -20px;
    padding: 0 0 9px 0;
    font-size: 10pt;
    font-style: italic;
    font-weight: bold;
}
blockquote.credits {
    font-family: Lucida Console, Courier New, Courier, monospace;
    padding: 8px 12px 8px calc(12px + 1.5em);
    text-indent: -1.5em;
}

/* Header */

#header-name {
    margin-bottom: .25em;
}

#header-description {
    margin-bottom: 0;
}


/* Assets */

.asset-body,
.asset-more,
.asset-more-link,
.asset-excerpt,
.comment-content,
.comment-footer,
.comments-open-content,
.comments-open-footer,
.comments-closed,
.trackbacks-info,
.trackback-content,
.trackback-footer,
.archive-content {
    clear: both;
}

.asset,
.comments,
.trackbacks,
.archive {
    overflow: hidden;
    width: 100%;
}

.asset,
.asset-content,
.comments,
.trackbacks,
.archive {
    position: static;
    clear: both;
}

.asset,
.comments,
.comments-content,
.trackbacks,
.archive,
.search-form {
    margin-bottom: 1.5em;
}

.asset-header,
.asset-body,
.comments-header,
.comment-content,
.comment-footer,
.comments-open-header,
.comments-open-content,
#comments-open-footer,
.comments-closed,
#comment-form-external-auth,
#comment-greeting,
.comments-open-moderated,
#comment-form-name,
#comment-form-email,
#comment-form-url,
#comment-form-remember-me,
#comment-form-reply,
#comments-open-text,
.trackbacks-header,
.trackbacks-info,
.trackback-content,
.trackback-footer,
.archive-content,
.search-form-header,
.search-results-header {
    margin-bottom: .75em;
}

.asset-body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14pt;
    line-height: 1.4em;
}

.entry-content {
    margin-bottom: 0px !important;
}

#comment-form-remember-me label,
#comment-form-reply label {
    display: inline;
}


#page-title {
    margin-top: 5px;
}

.entry-categories,
.entry-tags {
    margin-bottom: .15em;
}

.asset-name {
    margin-bottom: .25em;
}

.asset-excerpt {
    margin-top: 0.8em;
}

.asset-footer,
.asset-meta {
    font-size: 11px;
}

.asset-meta {
    margin-top: .25em;
    padding-top: 2px;
    padding-bottom: .3em;
    font-weight: normal;
}
/*
 #callout .asset-meta {
    margin-top: -0.875em;
    border-top: 0 !important;
}
*/
.asset-footer {
    clear: both;
    margin-top: 0;
    padding-top: 5px;
}

.content-nav {
    text-align: center;
}

.entry-tags h4,
.entry-categories h4 {
    display: inline;
    margin-right: .2em;
    letter-spacing: normal !important;
    text-transform: none !important;
    font-size: 100% !important;
    font-weight: bold !important;
    border-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.entry-tags ul,
.entry-categories ul {
    display: inline;
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
.entry-tags ul li,
.entry-categories ul li {
    display: inline;
    margin-left: 2pt;
}

.global-entry-asset {
    margin-bottom: 0 !important;
}

.mt-image-wrapper {
    max-width: 100%;
    height: auto;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}
.mt-image-wrapper img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
}

.mt-image-none {
    margin: 0;
}

.mt-image-left {
    float: left;
    margin: 0 10px 10px 0;
}

.mt-image-right {
    float: right;
    margin: 0 0 10px 10px;
}

.mt-image-center {
    margin: 0 auto 10px;
    text-align: center;
}

.mt-image-vertical {
    margin: 0 0 10px 0;
}

.mt-annotation {
    margin-top: 1px;
    font-style: italic;
    font-size: smaller;
}

.mt-ad-wrapper {
    position: relative;
    padding-bottom: 11.71875%;
    height: 0;
    overflow: hidden;
}

.mt-ad-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mt-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

.mt-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* User pics */


.user-pic {
    float: left;
    position: relative;
    width: 50px;
    height: 50px;
    overflow: hidden;
    margin: 0 10px 0 0;
}

.auth-icon {
    position: absolute;
    bottom: 0;
    left: 0;
}


/* Feedback */

.comments-open label {
    display: block;
}

#comment-author, #comment-email, #comment-url, #comment-text {
    width: 80%;
}

#comment-bake-cookie {
    margin-left: 0;
    vertical-align: middle;
}

#top-comment-nav, #comment-nav {
  list-style: none;
  width: 100%;
  margin: 0 0 1em 0;
  padding: 0;
  text-align: center;
}

#top-comment-nav li, #comment-nav li {
  display: inline;
  padding: 0;
}

#top-prev-comments, #prev-comments {
  text-align: left;
  margin: 0 1em 0 0;
}

#top-next-comments, #next-comments {
  text-align: right;
  margin: 0 0 0 1em;
}

#top-num-comments, #num-comments {
  text-align: center;
}

#comment-submit {
    font-weight: bold;
}

.comment,
.trackback {
    margin-bottom: .5em;
    border-bottom: 1px solid #ccc;
    padding-bottom: .5em;
}

.comment .asset-meta,
.trackback .asset-meta {
    border: 0;
}

.comment-content {
    clear: none;
    line-height: 1.5;
    margin-bottom: 1em;
}

.comment-content p {
    margin-bottom: .5em;
}

/* Widgets */

.widget {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.widget-header {
    position: relative;
    margin-top: 5px;
}

.widget-content {
    position: relative;
    margin: 5px 0 20px;
}

.archive-content ul,
.widget-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.archive-content ul li.bigger {
    font-size: small;
}

.widget-content ul ul {
    margin-left: 15px;
}

.widget-content li {
    margin-top: 5px;
    margin-bottom: 5px;
}

.widget-tag-cloud .widget-content ul {
    margin-right: 0;
    margin-left: 0;
}

.widget-tag-cloud .widget-content li {
    display: inline;
    margin: 0 5px 0 0;
    padding: 0;
    line-height: 1.2;
    background: none;
}

.widget-tag-cloud .rank-1  { font-size: 1.75em; }
.widget-tag-cloud .rank-2  { font-size: 1.75em; }
.widget-tag-cloud .rank-3  { font-size: 1.625em; }
.widget-tag-cloud .rank-4  { font-size: 1.5em; }
.widget-tag-cloud .rank-5  { font-size: 1.375em; }
.widget-tag-cloud .rank-6  { font-size: 1.25em; }
.widget-tag-cloud .rank-7  { font-size: 1.125em; }
.widget-tag-cloud .rank-8  { font-size: 1em; }
.widget-tag-cloud .rank-9  { font-size: 0.95em; }
.widget-tag-cloud .rank-10 { font-size: 0.9em; }

#footer .widget-content {
    margin-top: 0;
    margin-bottom: 0;
}

.widget-recent-assets .widget-content ul {
    overflow: auto;
    margin-right: 0;
}

.item {
    display: inline;
    float: left;
    margin: 0pt 5px 8px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    width: 70px;
}

.widget-search ul,
.widget-syndication ul {
    margin-left: 0;
    list-style: none;
}

.widget-search li,
.widget-syndication li  {
    margin: 5px 0;
}

.widget-openid {
    width: 160px;
    margin: 10px auto;
    border: none !important;
}
.widget-openid .widget-content {
    border: 1px solid #ccc;
    background: #fff url(../images/openid-accepted.gif) no-repeat 7px 3px;
    font-size: 12px;
    font-family: Arial, Verdana, sans-serif;
    color: #666;
    margin: 0;
    padding: 0 !important;
}
.widget-openid .widget-content em {
    display: block;
    font-style: normal;
    padding: 34px 9px 9px 68px;
}
.widget-openid .widget-content strong {
    left: -9999px;
    position: absolute;
}
.widget-openid .widget-content a {
    display: block;
    background: #eee;
    text-align: center;
    padding: 5px 3px;
    color: #666;
    text-decoration: underline;
    font-weight: normal;
}

.asset-byline {
    font-size: large;
    font-weight: bold;
    margin-top: -7px;
}
.asset-fiction {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: large;
    margin-top: 20px;
    line-height: 160%;
}
.asset-fiction blockquote {
    font-size: 75%;
    margin-right: 0;
    margin-left: 0;
    line-height: 130%;
}
.asset-fiction p {
    text-indent: 1.5em;
    margin-bottom: 0;
}
.asset-fiction p.lead {
    margin-top: 20px;
    text-indent: 0;
    line-height: 160%;
}
.asset-fiction p.lead:first-line {
    font-size: 19px;
    font-variant: normal;
}
.asset-fiction p.lead:first-letter {
    float: none;
    font-size: 19px;
    background: #fff;
    margin: 6px 0 0 0;
}
.asset-fiction .dingbat {
    font-size: 90%;
    text-indent: 0;
}

.input-default {
    background-color: #9AAEC2;
}

.status-indicator {
    display: inline;
    height: 20px;
    width: 20px;
    background: url(../images/indicator-login.gif) no-repeat 0 0;
    padding: 2px 7px;
}

.audio-player {
    position: relative;
    width: 100%;
    /* height: 40px; */
    margin: 3px 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    outline: none;
}

.sharethis {
    margin-bottom: 9px !important;
}

@media print {
    * {
        position: static ! important;
        overflow: visible ! important;
    }
}

/*

STUFF FOR COMPATIBILITY WITH OLD BLOG DESIGN

*/

#date-header h2 {
    color: red;
}

#dateline {
background: #fff;
padding-bottom: 2px;
padding-top: 1px;
font-family: verdana, arial, helvetica, georgia, sans-serif;
font-size: 9pt;
font-weight: normal;
letter-spacing:2px;
text-align: center;
border-top: solid black thin;
border-bottom: solid black thin;
margin-top: -4px;
margin-right: 0px;
margin-left: 0px;
}

#dateline-blog {
padding-bottom: 7px;
padding-top: 2px;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 9pt;
font-weight: normal;
letter-spacing:2px;
text-align: center;
border-bottom: solid black thin;
margin-right: 0px;
margin-left: 0px;
}

#subfooter {
text-align: center;
margin-bottom: none;
padding-bottom: 10px;
}

#subfooter-inner {
border-top: thin groove;
margin-top: 12px;
padding-top: 12px;
margin-right: 20px;
margin-left: 20px;
font-size: 8pt;
text-align: center;
margin-bottom: none;
padding-bottom: none;
}

#pagebody{
background: #ffffff;
padding-top:20px;
}

#pagebody-inner .pkg{
padding:0 20px !important;
}

.module li li a{
color:#cc0000;
}
.module li li a:hover{
color:#00c;
}

.date-header {
    margin-top: 40px;
    letter-spacing: 2px;
    font-family: verdana, arial, helvetica, sans-serif;
}

.entry-header{
letter-spacing:1px;
font-family: verdana, arial, helvetica, georgia, sans-serif;
font-size:13px;
color:#000;
border-bottom:2px solid black;
}

.entry li{
color:#000;
font-family:sans-serif;
font-size:12px;
margin-bottom:1em;
}

.entry a, .trackbacks a, .comments a{
color:#CC0000;
}

.entry a:hover, .trackbacks a:hover, .comments a:hover{
color:#0000CC;
}

.entry, .trackbacks{
color:#000000;
}

.entry-footer{
text-align:right;
margin-top:10px !important;
}

.entry .entry_text{
text-align:left;
}

blockquote.readmore {
    max-width: 160px;
    width: fit-content;
}

#original {
    font-weight: bold !important;
    margin-top: -10px !important;
    margin-bottom: 5px !important;
    max-width: 300px !important;
    clear: both !important;
}

#original a{
color:#336699;
}

#original a:hover{
color:#000;
}

.post-footers{
letter-spacing:1px;
font-family: verdana, arial, helvetica, sans-serif;
font-size:12px;
color:#000;
display:block;
border-bottom:1px solid #336699;
text-align:left;
}

.separator{
display:none;
}

#squib{
background:#ffdd66;
width: 25%;
padding:5px;
margin-left: none;
margin-bottom: 10px;
margin-right: 10px;
margin-top: 3px;
letter-spacing:1px;
color:#000;
border-top: 2px dotted black;
border-bottom: 2px solid #F3D576;
font-family:sans-serif;
font-size:11px;
float:left;
}

#pullout, blockquote.pullquote {
    display: block;
    float: right;
    width: auto;
    max-width: 300px;
    padding: 8px 10px;
    margin: 0 0 6px 10px;
    letter-spacing: 1px;
    color: #000;
    border-top: none !important;
    border-bottom: none !important;
    font-size: 11pt;
    line-height: 1.6em;
}
#pullout {
    background: #FFFFDD url(pagebody-background.gif) repeat-x;
}
blockquote.pullquote {
    font-size: 13pt;
    font-style: italic;
    padding: 8px 12px;
}

#pullout:first-line {
    font-size: 105%;
    font-weight: bold;
}
#pullout:first-letter {
    float: left;
    font-family: georgia, "lucida grande", "times new roman", serif;
    font-size: 54px;
    font-style: normal;
    font-weight: bold;
    margin: 9px 5px 2px -5px;
}

.module {
    font-size: 12px;
}

.module ul {
    margin: 0 !important;
    padding: 0 !important;
    text-align: justify;
}

.module-header, .module-header a {
    color: #000;
    letter-spacing: 1px;
    font-family: georgia, "lucida grande", "times new roman", serif;
    font-variant: small-caps;
    border-bottom: 1px solid #336699;
    text-decoration: none;
    font-size: 18px;
}
.module input#search, .widget input#search {
    width: 100%;
    background: #fff;
    margin: 2px 0;
}
.module input {
    background: #FFFFDD url(pagebody-background.gif) repeat-x;
    border: 1px solid #a4a4a4;
}
.module-syndicate {
    background: url(feed.gif) no-repeat;
    background-position:0 2px;
}
.module-syndicate a {
    color: #5298CB;
}
.module-syndicate a:hover {
    color: #000;
}
.module-syndicate .module-content {
    margin: 0;
    margin-bottom: 10px;
    padding-left: 14px;
    line-height: 14px;
}

.module-ad {
    margin-left: 0px;
    margin-bottom: 10px;
}

#adcontent{
    text-align: center;
    margin: 0;
    margin-top: 5px;
    margin-bottom: 15px;
}

.adswitch {
    display: block;
}
.adswitch-670, .adswitch-335 {
    display: none;
}

#subcontent{
    text-align: left;
    margin: 0;
}

#subcontent .datesubject{
    margin:0;
}

#subcontent .subject{
    font-size: 16pt;
    font-family: "batik regular", "amertype md bt", georgia, "lucida grande", "times new roman", serif;
    font-weight: bold;
    letter-spacing: 3px;
    padding-bottom: 2px;
    border-bottom: dotted thin #999;
    margin-top: 15px;
    margin-bottom: 3px;
}

#subcontent .date{
font-size: 11pt;
font-weight: bold;
font-variant: small-caps;
letter-spacing: 2px;
margin-top: 2px;
margin-bottom: 5px;
}

.crumb {
    font-family: "batik regular", "amertype md bt", georgia, "lucida grande", "times new roman", serif;
    font-size: 150%;
    font-weight: bold;
    margin: 20px 0 10px 0;
    text-align: left;
    letter-spacing: 2px;
}

.crumb a {
    text-decoration: none;
}

#sidebarposition .module-content{
color:#000;
letter-spacing:1px;
font-family:georgia, "lucida grande", "times new roman", serif;
font-variant:small-caps;
text-decoration:none;
font-size:12px;
}

#sidebarposition .module-content a{
color:#CC0000;
}

.module-powered a{
color:#000;
}
.module-powered a:hover{
color:#000;
}

.module-image{
margin:0;
margin-bottom: 20px;
padding-left: none;
}

.display-image{
margin:0;
margin-bottom: 5px;
padding: none;
text-align: center !important;
width: 100%;
}

.bibliography-image{
margin-top: 0;
margin-bottom: 10px;
margin-right: 0;
margin-left: 10px;
padding: none;
float: right;
}

.module-image a img, .module-image a:link img, .display-image a img, .display-image a:link img, .bibliography-image a 
img, .bibliography-image a:link img, .entry-image a img, .entry-image a:link img{
border: black solid 4px;
}

.module-image a:hover img, .display-image a:hover img, .bibliography-image a:hover img, .entry-image a:hover img{
border: #336699 solid 4px;
}

.bibliography-header{
margin-top:10px;
border-bottom: #F3D576 thin dotted;
font-size: 16px;
font-weight: bold;
letter-spacing:1px;
}
.bibliography-header a{
    text-decoration: none;
}
.bibliography-header a:link{
    color:#3366AA;
}
.bibliography-header a:hover{
color:#5577CC;
background-color: transparent;
border-color: #7799EE;
border-bottom-width: 1px;
border-left-width: 0px;
border-right-width: 0px;
border-top-width: 0px;
border-style: dotted;
}

.bibliography-details{
font-size: 8pt;
letter-spacing: 1px;
font-variant: small-caps;
cursor: pointer;
}
.bibliography-details a:link a:hover{
color:#3366AA;
}

#bibliography-note-block{
text-align:center;
margin-top:20px;
margin-right:40px;
margin-left:40px;
margin-bottom:-10px;
}
#bibliography-note-block .bibliography-note{
font-size: 8pt;
}

.bibliography-legend{
margin: 0;
margin-top: 20px;
padding: none;
border: medium black 3px;
line-height: 22px;
font-family: georgia, "sans serif";
font-variant: small-caps;
font-size: 10pt;
}

.bibliography-icons{
padding:0;
margin:0;
margin-left:10px;
float:right;
}
.bibliography-icons a:hover{
margin:0;
border:none;
}
.bibliography-icons img{
hspace:0
vspace:0
margin-left:2px;
}

.trackbacks-header{
letter-spacing:1px;
font-family:georgia, "lucida grande", "times new roman", serif;
font-variant:small-caps;
font-size:12px;
color:#000;
border-bottom:2px solid black;
}

#trackbacks-info {
    background: #FFFFDD;
    padding: 5px;
    letter-spacing: 1px;
    color: #000;
    font-size: 85%;
}

.comments-header, .comments-open-header{
letter-spacing:1px;
font-family:georgia, "lucida grande", "times new roman", serif;
font-variant:small-caps;
font-size:12px;
color:#000;
border-bottom:2px solid black;
}

.content-nav a{
color: #c00;
}

.content-nav a:hover{
color: #00c;
}

#callout{
margin-bottom: 20px;
text-align: left;
}

#callout h4 {
    clear: left;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 80%;
    font-family: "trebuchet ms";
    font-weight: normal;
    border-bottom: 1px dotted #6F4E00;
    margin-bottom: 5px;
}

.events-box-header {
    clear: left;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 95%;
    font-family: "trebuchet ms";
    font-weight: normal;
    margin-top: -4px;
    margin-bottom: 5px;
}

.callout-footer, .moreblog-footer {
    text-align:right;
    margin-left:9px;
    margin-top:-20px !important;
}

.moreblog-footer {
    margin-top: -17px !important;
    border: none;
}

.podcast-link-desc {
    margin-left: 19px;
    margin-bottom: 4px;
}

.basic {
    font-family: "batik regular", "amertype md bt", georgia, "lucida grande", "times new roman", serif;
    font-size: 14pt;
}
.basic-medium {
    font-family: Georgia, "Lucida Grande", "Times New Roman", serif;
    font-size: 12pt;
    line-height: 1.4em;
}
.navhuge, .huge {
    font-family: "batik regular", "amertype md bt", georgia, "lucida grande", "times new roman", serif;
    font-size: 24pt;
}
.navlarge, .large {
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 14pt;
}
.navmedium, .medium {
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 11pt;
}
.navsmall, .small {
    font-family: verdana, arial, helvetica, sans-serif;
    font-size: 9pt;
}

.basic-medium h1 {
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-size: 21pt;
    font-weight: bold;
}
.basic-medium h2 {
    margin-top: 0.9em;
    margin-bottom: 0.75em;
    font-size: 18pt;
    font-weight: bold;
}
.basic-medium h3 {
    margin-top: 0.9em;
    font-size: 15pt;
    font-weight: bold;
}
.basic-medium h4 {
    margin-top: 0.75em;
    font-size: 13pt;
    font-weight: bold;
}
.basic-medium li {
    font-size: 11pt;
}
.basic-medium li p {
    margin-top: 0;
    margin-bottom: 0.2em;
}

.music-table td {
    padding: 5px !important;
}

.music-page-table td {
    padding: 2px !important;
}

.music-track-table td {
    padding: 3px !important;
}

.music-container-table td {
    padding: 0px;
}

.music-row-table {
    border-spacing: 5px;
}

.music-row-table td {
    padding: 0px !important;
}

.music-rack-table {
    border-spacing: 4px;
}

.music-rack-table td {
    padding: 0px !important;
}

.music-image-table td {
    padding: 8px !important;
}

.music-cover-table {
    border-spacing: 1px;
}

.music-cover-table td {
    padding: 4px !important;
}

table.presskit, table.presskit th, table.presskit tr, .presskit tr td {
    padding: 4px !important;
    background: green;
}

td.normal, td.lightcell, td.lightercell {
    padding: 6px !important;
}


/* nav bar */

.navbar {
    display: table;
    padding: 0;
    margin: 5px 0 16px 0;
    width: 100%;
    font-size: 8pt;
    text-transform: uppercase;
    font-weight: normal;
    min-height: 10px;
    height: auto;
}
.navbar:after {
    width: 100%;
    height: 1px;
    margin: 0 0 -1px;
    clear: both;
}
.navbar-inner {
    display: table-row;
}
.navbar-previous, .navbar-main, .navbar-next {
    display: table-cell;
    vertical-align: bottom;
}
.navbar-previous {
    max-width: 140px;
    text-align: left;
    margin-right: 10px;
}
.navbar-main {
    width: auto;
    max-width: 420px;
    text-align: center;    
}
.navbar-next {
    max-width: 140px;
    text-align: right;
    margin-left: 10px;
}



/* book listings */

.book-catalog {
    clear: left;
}
.book-ribbon {
    height: 170px;
    margin-bottom: 10px;
}
.book-title {
    font-weight: bold;
}
.book-title a {
    text-decoration: none;
}
.book-title a:hover {
    text-decoration: underline;
}
.book-strong {
    font-weight: bold;
}

.book750 {
    float: left;
    visibility: visible;
}

.book450 {
    float: left;
    visibility: visible;
}

.book250 {
    float: left;
    visibility: visible;
    width: 315px;
    margin-bottom: 20px;
    margin-right: 10px;
    font-size: smaller;
    line-height: 1.4em;
}
.book250 b {
    font-size: smaller;
    line-height: 1.6em;
}
.book250 .book-title {
    font-variant: small-caps;
}

.book150 {
    float: left;
    visibility: visible;
    width: 200px;
    height: 170px;
    margin-right: 10px;
    line-height: 1;
}
.book150 p {
    margin-bottom: 0.45em;
}
.book150 .book-title {
    font-size: 83.67%;
    font-style: italic;
    max-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: normal;
}
.book150 .mt-image-wrapper {
    padding: 3px 0 0 0;
}

.book000 {
    float: left;
    visibility: hidden;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.ribbon-nav {
    float: left;
    width: 40px;
    cursor: pointer;
}

.ribbon-prev {
    margin-right: 10px;
}

.ribbon-next {
    margin-right: 0;
}


/* PayPal forms */

.formbox {
    float: left;
    width: auto;
    background: #ccc;
    border-width: 3px;
    border-style: double;
    border-color: #999;
    padding: 9px;
    margin-right: 10px;
}

.formlabel {
    padding-bottom: 2px;
}

.formselect {
    width: 100%;
    margin-bottom: 9px;
}

.forminput {
    width: 98%;
    margin-bottom: 9px;
}

.formimage, .formbutton {
    outline: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
}


/* admin tables and forms */

table.reading-table {
    font-family: serif;
    font-size: 110%;
    display: block;
    float: left;
    margin-left: 16px;
}

table.reading-table th, table.reading-table td {
    padding: 6px;
}

table.reading-table tr:nth-child(odd) {
    background-color: #f2f2f2;
}

table.reading-table th {
    background-color: #999;
    color: white;
    font-weight: bold;
    vertical-align: bottom;
}

table.reading-table td {
    vertical-align: top;
}


/* new Review-based design */

.pane-container, .pane-header, .pane-footer {
    display: table;
    width: 100%;
    font-family: Georgia, Times New Roman, serif;
    padding-bottom: 15px;
}
.pane-container.entry-asset {
    margin-bottom: 0;
    padding-bottom: 0;
}
.pane-container:first-of-type {
    margin-top: 5px;
}
.pane-container-third {
    display: table;
    width: 200px;
    float: left;
}
.pane-container-third:nth-of-type(3n+1),
.pane-container-third:nth-of-type(3n+2) {
    margin-right: 20px;
}
.pane-title {
    margin-top: 4px;
    font-family: Gentium, Times New Roman, serif;
    font-weight: bold;
    font-size: 24px;
    line-height: 1.25em;
}
.pane-title a, .pane-byline a, .asset-byline a {
    text-decoration: none;
    color: #000;
}
.pane-title a:hover, .pane-byline a:hover, .asset-byline a:hover {
    text-decoration: underline;
}
.pane-byline {
    margin-top: 8px;
    font-size: 14pt;
}
.pane-excerpt {
    margin-top: 8px;
    font-size: 12pt;
    line-height: 1.4em;
}
.pane-header {
    margin-top: 25px;
    margin-bottom: 25px;
}
.pane-footer {
    margin-top: 25px;
}
.pane-bio {
    font-style: italic;
    font-size: 12pt;
}
p.asset-copyright i, p.asset-copyright em, .pane-bio i, .pane-bio em {
    font-style: normal;
}
.pane-title-third {
    font-size: 21px;
}
.pane-byline-third {
    font-size: 12.5pt;
}
/.fb-page {
    margin-top: 22px;
    margin-bottom: 15px;
}
/.smallcaps {
    font-size: 75%;
}
/.smallcapsbold {
    color: darkred;
}
.boldred {
    font-weight: bold;
    color: darkred;
}
.load-more {
    margin-top: 14px;
    margin-bottom: 14px;
    padding: 3px 10px 0 10px;
    font-family: Americanus;
    font-size: 18pt;
    color: #fff;
    background-color: #555;
}
.load-more:focus {
    outline: none;
}
.colophon {
    text-align: center;
    font-size: 18pt;
}
.pane-container .asset-excerpt {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 12pt;
}
.pane-container .mt-annotation {
    margin-top: -2px;
    margin-bottom: 10px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 9pt;
}
.pane-container .mt-annotation.surmounted {
    margin-top: -22px;
}
.pane-container .asset-excerpt,
.pane-container .mt-annotation {
    font-style: italic;
}
.pane-container .asset-excerpt i,
.pane-container .asset-excerpt em,
.pane-container .mt-annotation i,
.pane-container .mt-annotation em {
    font-style: normal;
}
.pane-container .asset-meta,
.pane-container .asset-more-link {
    border: none;
    font-size: 11px;
}
//.pane-container .asset-meta {
    margin-top: 14px;
}
.pane-container .mt-image-left {
    margin: 0 20px 20px 0;
}

.pane-container .entry-tags ul li,
.pane-container .entry-categories ul li {
    display: inline-block;
}
.pane-container .entry-categories ul li {
    margin-left: 0;
    margin-right: 10px;
}
.navbar a,
.pane-container .entry-categories ul li a,
.pane-container abbr.published,
.pane-container .entry-category-readtime,
.pane-container .entry-tags {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 8pt;
    font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
    color: #000;
}
.pane-container .entry-categories ul li.entry-tag-label a,
.pane-container .entry-categories ul li.entry-tags {
    font-size: 9pt;
}
.pane-container .entry-categories ul li.entry-tag-label a {
    text-transform: none;
}
.navbar a:hover,
.pane-container .entry-categories ul li.entry-category a:hover,
.pane-container .entry-categories ul li.entry-tag-label a:hover,
.pane-container .entry-category-readtime:hover {
    background-color: #c0e0ff;
}
.pane-container .dogbus {
    font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
    font-size: 9pt;
    font-weight: normal;
}
/* special fonts */

.special {
    font-family: Amateur, Courier New, monospace;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
}


/* manuscript format */

.format-sheet {
    display: inline-block;
    border: 1px solid black;
    margin-bottom: 25px;
    padding: 61px;
    color: #000;
    -webkit-box-shadow: 5px 6px 4px -2px rgba(176,176,176,1);
    -moz-box-shadow: 5px 6px 4px -2px rgba(176,176,176,1);
    box-shadow: 5px 6px 4px -2px rgba(176,176,176,1);
}
.format-sheet.classic {
    padding: 64px;
}
.format-sheet.last-sheet {
    margin-bottom: 9px;
}
.format-sheet.mini {
    padding: 50px;
}
.format-sheet span, .format-sheet a, .format-sheet a:visited {
    color: #000;
    background-color: #e8f4ff;
    text-decoration: none;
}
.format-sheet span:hover,
.format-sheet a:hover,
a.highlight:hover {
    background-color: #c0e0ff;
}
.classic {
    font-family: Courier New, Courier, Lucida Console, monospace;
    font-size: 10pt;
    line-height: normal;
}
.classic.mini {
    font-size: 6.85pt;
    line-height: 7pt;
}
.inline-classic {
    font-family: Courier New, Courier, Lucida Console, monospace;
}
.modern {
    font-family: Times New Roman, serif;
    font-size: 11pt;
    line-height: 11.5pt;
}
.modern.mini {
    font-size: 7.45pt;
    line-height: 7pt;
}
.inline-modern {
    font-family: Times New Roman, serif;
}
.original {
    font-family: Lucida Console, Courier New, Courier, monospace;
    font-size: 10pt;
    line-height: 1.13em;
}
.inline-original {
    font-family: Lucida Console, Courier New, Courier, monospace;
}
.format-viewing {
    padding: 0;
}
.format-viewing.long {
    padding-bottom: 3px;
}
.format-version {
    min-height: 23px;
    margin-top: 3px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
}
.format-version.modern {
    letter-spacing: 1px;
}
.format-version.classic {
    padding-bottom: 3px;
}
.format-nav {
    font-weight: bold;
    font-family: Courier New, Courier, Lucida Console, monospace;
}
.title {
    width: 100%;
    margin: 0 auto;
    white-space: pre;
}
.left {
    float: left;
    white-space: pre;
}
.right {
    float: right;
    white-space: pre;
}
.text {
    clear: right;
    min-width: 520px;
    text-align: left;
    white-space: pre;
}
.mini .text {
    min-width: 358px;
}
.format-group {
    display: block;
    width: 650px;
    padding: 0;
}
.format-group.format-underride {
    width: 100%;
    margin-bottom: 15px;
}
/.format-group.format-override {
    width: calc(100% - 12px);
    margin-bottom: 15px;
}
.format-panel {
    display: block;
    width: 100%;
    border: 1px solid black;
    border-radius: 10px 10px 0 0;
    padding: 5px;
    margin-bottom: 7px;
    -webkit-box-shadow: 4px 5px 4px -2px rgba(176,176,176,1);
    -moz-box-shadow: 4px 5px 4px -2px rgba(176,176,176,1);
    box-shadow: 4px 5px 4px -2px rgba(176,176,176,1);
    color: black;
}
.hanging-chad .format-panel {
    border-radius: 0 0 10px 10px;
}
.format-panel:hover {
    background-color: white;
    text-decoration: none;
}
.format-sheet.clickable:hover,
.format-panel.clickable:hover,
.format-panel.downloadable:hover {
    cursor: pointer;
    background-color: white;
}
.format-panel.mini {
    width: auto;
}
.manila {
    background-color: #f8d775;
}
.manila-folder {
    background-color: #ffe9a2;
}
.format-panel.intro {
    padding: 10px 20px 13px 20px;
    font-size: larger;
    text-align: left;
}
.format-panel.note {
    padding: 10px 12px 10px 12px;
    font-size: small;
    text-align: left;
}
.format-panel-table {
    display: table;
    width: 100%;
}
.format-panel-row {
    display: table-row;
}
.format-panel-cell {
    display: table-cell;
    text-align: center;
    padding-left: 10px;
    padding-bottom: 3px;
}
/.format-override .format-panel-cell {
    padding-left: 22px;
}
.format-panel-cell:first-of-type {
    padding-left: 0;
}
.format-panel-cell a,
.format-viewing a,
.format-version a,
.format-panel-cell a:hover,
.format-viewing a:hover,
.format-version a:hover,
.format-panel-cell a:visited,
.format-viewing a:visited,
.format-version a:visited {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.format-license {
    max-width: 475px;
    text-align: center;
}
//.modern .text {
    min-width: 534px;
}
.mobile {
    display: none;
}
.nonmobile {
    display: block;
}
.nonnonmobile {
    display: none;
}

/* pagination tab groups */
.pagination-wide {
    display: block; 
}
.pagination-medium, .pagination-narrow {
    display: none;
}

@media only screen and (min-device-width: 621px) and (max-device-width: 760px), screen and (min-width: 621px) and (max-width: 760px) {
    .pagination-medium {
        display: block;
    }
    .pagination-wide, .pagination-narrow {
        display: none;
    }
}

@media only screen and (max-device-width: 620px), screen and (max-width: 620px) {
    .pagination-narrow {
        display: block;
    }
    .pagination-wide, .pagination-medium {
        display: none;
    }
}


/* mobile device rules */

@media only screen and (max-device-width: 750px), screen and (max-width: 750px) {
    .float750 {
        float: none;
    }
}

@media only screen and (max-device-width: 540px), screen and (max-width: 540px) {
    .float450 {
        float: none;
    }
}

@media only screen and (max-device-width: 500px), screen and (max-width: 500px) {
    .mt-image-left, .mt-image-right {
        float: none;
        margin-left: 0;
        margin-right: 0;
    }
}

@media only screen and (min-device-width: 528px) and (max-device-width: 989px), screen and (min-width: 528px) and (max-width: 989px) {
    #alpha, #beta, #gamma {
        float: none;
        width: auto !important;
        left: 0 !important;
    }
    .layout-twt #beta, .layout-twt #gamma {
        float: left;
        width: 49% !important;
        padding-left: 0;
        padding-right: 0;
    }
    .layout-twt #beta-inner {
        padding-left: 0;
        padding-right: 10px;
    }
    .layout-twt #gamma-inner {
        padding-left: 10px;
        padding-right: 0;
    }
    #container-inner {
        width: auto !important;
    }
    #content-inner, #header-inner, #footer-inner {
        clear: all;
        width: auto !important;
    }
    #alpha-inner, #beta-inner, #gamma-inner {
        padding-left: 0;
        padding-right: 0;
    }
    #beta-inner, #gamma-inner {
        margin-top: 20px;
    }
    .layout-twt #alpha-inner, .layout-mm #alpha-inner {
        padding-right: 0;
    }
    #beta .module #randomad, #beta .widget #randomad,
    #gamma .module #randomad, #gamma .widget #randomad {
        text-align: left !important;
    }
    .widget-header, .widget-content {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    #header {
        background-size: cover !important;
    }
    .layout-mm .format-panel-table {
        width: 460px;
    }
}

@media only screen and (max-device-width: 527px), screen and (max-width: 527px) {
    #alpha, #beta, #gamma {
        float: none;
        width: auto !important;
        left: 0 !important;
    }
    #container-inner {
        width: auto !important;
    }
    #content-inner, #header-inner, #footer-inner {
        clear: all;
        width: auto !important;
    }
    #alpha-inner, #beta-inner, #gamma-inner {
        padding-left: 0;
        padding-right: 0;
    }
    #beta-inner, #gamma-inner {
        margin-top: 20px;
    }
    .layout-twt #alpha-inner, .layout-mm #alpha-inner {
        padding-right: 0;
    }
    #beta .module #randomad, #beta .widget #randomad,
    #gamma .module #randomad, #gamma .widget #randomad {
        text-align: left !important;
    }
    .widget-header, .widget-content {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }
    #header {
        background-size: cover !important;
    }
    .layout-mm .format-panel-table {
        width: 358px;
    }
}

@media only screen and (max-device-width: 390px), screen and (max-width: 390px) {
    #content-inner, #header-inner, #footer-inner {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .layout-mm #content-inner, .layout-mm #header-inner, .layout-mm #footer-inner {
        padding-left: 9px !important;
        padding-right: 9px !important;
    }
    #alpha-inner, #beta-inner, #gamma-inner {
        overflow: visible; 
    }
}

@media only screen and (max-device-width: 759px), screen and (max-width: 759px) {
    .bee-calendar div:nth-child(n + 4),
    .tylo-calendar div:nth-child(n + 4) {
        clear: left !important;
    }
    .bee-calendar-nav, .tylo-calendar-nav {
        min-width: 80px !important;
        width: 80px !important;
        margin-bottom: 45px !important;
        padding-top: 2px !important;
    }
    .bee-calendar-nav .bee button,
    .tylo-calendar-nav .tylo button {
        font-size: small;
        padding: 7px 7px 5px 9px;
    }
    .bee-calendar-nav:empty, .tylo-calendar-nav:empty {
        display: none;
    }
    .bee-calendar-nav-prev,
    .tylo-calendar-nav-prev {
        margin-bottom: 10px !important;
    }
    .bee-calendar-month,
    .tylo-calendar-month {
        min-width: calc(100% - 200px) !important;
        width: calc(100% - 200px) !important;
        font-size: 18px !important;
        padding-top: 6px !important;
        margin-bottom: 45px !important;
    }
    .bee-calendar-header, .bee-calendar-blank,
    .tylo-calendar-header, .tylo-calendar-blank {
        display: none !important;
    }
    .bee-calendar-month-form form select,
    .tylo-calendar-month-form form select {
        font-size: 14px;
    }
    .bee-calendar-month-form form button,
    .tylo-calendar-month-form form button {
        font-size: 11pt;
    }
}

@media only screen and (min-device-width: 535px) and (max-device-width: 759px), screen and (min-width: 535px) and (max-width: 759px) {
    .bee-calendar-month-form,
    .tylo-calendar-month-form {
        min-width: 295px !important;
        width: 295px !important;
        margin-right: 8px;
        margin-bottom: 8px;
    }
}

@media only screen and (max-device-width: 534px), screen and (max-width: 534px) {
    .bee-calendar-nav-next,
    .tylo-calendar-nav-next {
        margin-left: 0 !important;
        text-align: left !important;
        clear: both !important;
    }
    .bee-calendar-month-form,
    .tylo-calendar-month-form {
        min-width: 295px !important;
        width: 295px !important;
        margin-right: 8px;
        margin-bottom: 8px;
        text-align: left !important;
        clear: both !important;
    }
}

@media only screen and (min-device-width: 668px) and (max-device-width: 739px), screen and (min-width: 668px) and (max-width: 739px) {
    .format-sheet, .format-sheet.classic {
        padding: 76px;
        -webkit-box-shadow: 4px 5px 4px -2px rgba(176,176,176,1);
        -moz-box-shadow: 4px 5px 4px -2px rgba(176,176,176,1);
        box-shadow: 4px 5px 4px -2px rgba(176,176,176,1);
    }
    .format-group {
        width: 624px;
    }
    .classic, .original {
        font-size: 9pt;
    }
    .modern {
        font-size: 9pt;
        line-height: 11pt;
    }
    .text {
        min-width: 470px;
    }
    .format-underride .format-panel-cell {
        padding-left: 8px;
    }
    /.format-override .format-panel-cell {
        padding-left: 20px;
    }
    .format-panel-cell:first-of-type {
        padding-left: 0;
    }
    .format-version {
        min-height: 21px;
        font-size: 18px;
    }
    .format-version.classic {
        margin-top: 4px;
        padding-bottom: 3px;
    }
    .layout-mm .format-version {
        min-height: 23px;
        font-size: 20px;
    }
    .layout-mm .format-version.classic {
        margin-top: 3px;
    }
    .audio-player {
        width: 348px;
    }
}

@media only screen and (min-device-width: 588px) and (max-device-width: 667px), screen and (min-width: 588px) and (max-width: 667px) {
    .format-sheet, .format-sheet.classic {
        padding: 64px;
        -webkit-box-shadow: 3px 4px 4px -1px rgba(176,176,176,1);
        -moz-box-shadow: 3px 4px 4px -1px rgba(176,176,176,1);
        box-shadow: 3px 4px 4px -1px rgba(176,176,176,1);
    }
    .format-group {
        width: 548px;
    }
    .classic, .original {
        font-size: 8pt;
    }
    .modern {
        font-size: 8pt;
        line-height: 9.5pt;
    }
    .text {
        min-width: 418px;
    }
    .format-panel {
        font-size: smaller;
    }
    .format-underride .format-panel-cell {
        padding-left: 7px;
    }
    /.format-override .format-panel-cell {
        padding-left: 19px;
    }
    .format-panel-cell:first-of-type {
        padding-left: 0;
    }
    .format-panel.intro {
        font-size: small;
        padding-bottom: 11px;
    }
    .format-version {
        min-height: 19px;
        font-size: 15px;
    }
    .format-version.classic {
        margin-top: 5px;
        padding-bottom: 3px;
    }
    .layout-mm .format-viewing {
        font-size: 13px;
    }
    .layout-mm .format-version {
        min-height: 23px;
        font-size: 20px;
    }
    .layout-mm .format-version.modern {
        padding-top: 1px;
    }
    .layout-mm .format-version.classic {
        margin-top: 3px;
    }
    .audio-player {
        width: 336px;
    }
}

@media only screen and (min-device-width: 572px) and (max-device-width: 587px), screen and (min-width: 572px) and (max-width: 587px) {
    .format-sheet, .format-sheet.classic {
        padding: 42px 10px 64px 10px;
        border: none;
        -webkit-box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
        -moz-box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
        box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
    }
    .format-group {
        width: 438px;
    }
    .classic, .original {
        font-size: 8pt;
    }
    .modern {
        font-size: 8pt;
        line-height: 9.5pt;
    }
    .text {
        min-width: 418px;
    }
    .format-underride .format-panel-cell {
        padding-left: 6px;
    }
    /.format-override .format-panel-cell {
        padding-left: 18px;
    }
    .format-panel-cell:first-of-type {
        padding-left: 0;
    }
    .format-info .format-panel-cell {
        display: block;
        padding-left: 0;
    }
    .format-panel {
        font-size: smaller;
    }
    .format-panel.intro {
        font-size: small;
        padding-bottom: 11px;
    }
    .format-version {
        min-height: 19px;
        font-size: 18px;
    }
    .format-version.classic {
        margin-top: 4px;
        padding-bottom: 3px;
    }
    .layout-mm .format-viewing {
        font-size: 13px;
    }
    .layout-mm .format-version {
        min-height: 23px;
        font-size: 20px;
    }
    .layout-mm .format-version.modern {
        padding-top: 1px;
    }
    .layout-mm .format-version.classic {
        margin-top: 3px;
    }
    .audio-player {
        width: 324px;
    }
}

@media only screen and (min-device-width: 528px) and (max-device-width: 571px), screen and (min-width: 528px) and (max-width: 571px) {
    button.book-button, button.book-button-type {
        font-size: 12px;
        margin-right: 6px !important;
    }
    .format-sheet, .format-sheet.classic {
        padding: 42px 10px 64px 10px;
        border: none;
        -webkit-box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
        -moz-box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
        box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
    }
    .format-group {
        width: 438px;
    }
    .classic, .original {
        font-size: 8pt;
    }
    .modern {
        font-size: 8pt;
        line-height: 9.5pt;
    }
    .text {
        min-width: 418px;
    }
    .format-underride .format-panel-cell {
        padding-left: 5px;
    }
    /.format-override .format-panel-cell {
        padding-left: 17px;
    }
    .format-panel-cell:first-of-type {
        padding-left: 0;
    }
    .format-info .format-panel-cell {
        display: block;
        padding-left: 0;
    }
    .format-panel {
        font-size: smaller;
    }
    .format-panel.intro {
        font-size: small;
        padding-bottom: 11px;
    }
    .format-version {
        min-height: 19px;
        font-size: 18px;
    }
    .format-version.classic {
        margin-top: 4px;
        padding-bottom: 3px;
    }
    .layout-mm .format-viewing {
        font-size: 13px;
    }
    .layout-mm .format-version {
        min-height: 23px;
        font-size: 20px;
    }
    .layout-mm .format-version.modern {
        padding-top: 1px;
    }
    .layout-mm .format-version.classic {
        margin-top: 3px;
    }
    .audio-player {
        width: 312px;
    }
}

@media only screen and (min-device-width: 468px) and (max-device-width: 527px), screen and (min-width: 468px) and (max-width: 527px) {
    button.book-button, button.book-button-type {
        font-size: 11px;
        margin-right: 5px !important;
        padding: 2px 5px !important;
    }
    .format-sheet, .format-sheet.classic {
        padding: 42px 5px 64px 5px;
        border: none;
        -webkit-box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
        -moz-box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
        box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
    }
    .format-group {
        width: 428px;
    }
    .classic, .original {
        font-size: 8pt;
    }
    .modern {
        font-size: 8pt;
        line-height: 9.5pt;
    }
    .text {
        min-width: 418px;
    }
    .format-underride .format-panel-cell {
        padding-left: 3px;
    }
    /.format-override .format-panel-cell {
        padding-left: 15px;
    }
    .format-panel-cell:first-of-type {
        padding-left: 0;
    }
    .format-info .format-panel-cell {
        display: block;
        padding-left: 0;
    }
    .format-panel {
        font-size: smaller;
    }
    .format-panel.intro {
        font-size: small;
        padding-bottom: 11px;
    }
    .format-version {
        min-height: 19px;
        font-size: 18px;
    }
    .format-version.classic {
        margin-top: 4px;
        padding-bottom: 3px;
    }
    .layout-mm .format-viewing {
        font-size: 13px;
    }
    .layout-mm .format-version {
        min-height: 23px;
        font-size: 20px;
    }
    .layout-mm .format-version.modern {
        padding-top: 1px;
    }
    .layout-mm .format-version.classic {
        margin-top: 3px;
    }
    .audio-player {
        width: 300px;
    }
}

@media only screen and (max-device-width: 467px), screen and (max-width: 467px) {
    button.book-button, button.book-button-type {
        font-size: 10px;
        margin-right: 4px !important;
        padding: 2px 4px !important;
    }
    .format-group {
        width: 352px;
    }
    .format-sheet, .format-sheet.classic, .format-sheet.mini {
        padding: 32px 0px 48px 0px;
        border: none;
        -webkit-box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
        -moz-box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
        box-shadow: 0px 4px 2px -2px rgba(153,153,153,1);
    }
    .classic, .original {
        font-family: Lucida Console, Courier New, Courier, monospace;
        font-size: 7pt;
        line-height: normal;
    }
    .format-info .classic {
        font-family: Courier New, Courier, monospace;
    }
    .modern {
        font-size: 7pt;
        line-height: 8pt;
    }
    .text {
        min-width: 352px;
    }
    .format-underride .format-panel-cell {
        padding-left: 1px;
    }
    /.format-override .format-panel-cell {
        padding-left: 13px;
    }
    .format-panel-cell:first-of-type {
        padding-left: 0;
    }
    .format-info .format-panel-cell {
        display: block;
        padding-left: 0;
    }
    .format-nav .format-panel {
        padding: 2px;
    }
    .format-nav .format-panel-cell {
        padding-left: 5px;
    }
    .format-nav .format-panel-cell:first-of-type {
        padding-left: 0;
    }
    .format-panel {
        font-size: smaller;
    }
    .format-panel.intro {
        font-size: small;
        padding-bottom: 11px;
    }
    .format-version {
        min-height: 19px;
        font-size: 18px;
    }
    .format-version.classic {
        margin-top: 4px;
        padding-bottom: 3px;
    }
    .layout-mm .format-panel-table {
        width: 358px;
    }
    .layout-mm .format-viewing {
        font-size: 13px;
    }
    .layout-mm .format-version {
        min-height: 23px;
        font-size: 20px;
    }
    .layout-mm .format-version.modern {
        padding-top: 1px;
    }
    .layout-mm .format-version.classic {
        font-family: Courier New, Courier, monospace;
        margin-top: 3px;
    }
    .audio-player {
        width: 288px;
    }
}

@media only screen and (min-device-width: 670px) and (max-device-width: 939px), screen and (min-width: 670px) and (max-width: 939px) {
    .adswitch, .adswitch-335 {
        display: none;
    }
    .adswitch-670 {
        display: block;
    }
}

@media only screen and (max-device-width: 669px), screen and (max-width: 669px) {
    .adswitch, .adswitch-670 {
        display: none;
    }
    .adswitch-335 {
        display: block;
    }
}

@media only screen and (max-device-width: 700px), screen and (max-width: 700px) {
    .bee-group, .tylo-group {
        margin-bottom: 5px;
    }
}


/* Responsive Header */
.header-shadow {
    -webkit-box-shadow: 0px 4px 8px -2px rgba(153,153,153,1);
    -moz-box-shadow: 0px 4px 8px -2px rgba(153,153,153,1);
    box-shadow: 0px 4px 8px -2px rgba(153,153,153,1);
}
.header-fixed {
    width: 100%;
    top: 0px;
    height: 50px;
    text-align: center;
    background: black;
}
.header-fixed-white {
    background: white !important;
    margin-top: 15px;
    margin-bottom: 5px;
}
.toggle-push-left {
    display: none;
}
#header-name-narrow, #header-image-narrow,
#header-name-1, #header-image-1,
#header-name-2, #header-image-2 {
    display: none;
}

/* Header After Scroll */
.header-contracted #header-content {
    margin: 0 !important;
}
.header-contracted #header-name,
.header-contracted #header-name-1,
.header-contracted #header-name-2 {
    height: 50px;
}
.header-contracted #header-description,
.header-contracted #header-description-1,
.header-contracted #header-description-2 {
    display: none;
    margin: 0;
}
.header-contracted #header-image,
.header-contracted #header-image-1,
.header-contracted #header-image-2 {
    display: none;
}
.header-contracted #header-image-narrow {
    display: block;
    position: absolute;
    top: 0px;
    left: 40px;
}


/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Globals
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
button {
    font-family: Arial, sans-serif;
    font-size: 14px;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Template
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
body {
    overflow-x: hidden
}
#wrapper {
    position: relative;
    z-index: 1000010;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
section {
    margin-bottom: 30px
}
section h1 {
    font-family: "Oswald", sans-serif;
    margin-bottom: 10px;
}
section p {
    margin-bottom: 30px
}
section p:last-child {
    margin-bottom: 0
}
section:last-child {
    margin-bottom: 0
}
section.toggle {
    text-align: center
}
.mask {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000015;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}
/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Toggle Buttons
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
.buttons {
    margin-bottom: 30px;
    text-align: center;
}
.buttons button {
    display: inline-block;
    margin: 0 0 5px 0;
    padding: 15px 30px;
    color: #fff;
    background-color: #67b5d1;
}
.buttons button:hover,
.buttons button.active {
    background-color: #3184a1
}
.buttons button:focus {
    outline: none
}
.book-buttons {
    display: block;
    font-size: 10pt;
    margin-bottom: 0;
}
.book-buttons a:active, .book-buttons a:focus {
    outline: 0;
    border: none;
    -moz-outline-style: none;
}
button.book-button, button.book-button-type, button.book-button-price {
    font-weight: bold;
    line-height: normal;
    color: #fff;
    background-color: #999;
    border-radius: 6px;
    outline: none;
    margin-right: 7px;
    margin-bottom: 9px;
    padding: 3px 6px;
    -webkit-box-shadow: 1px 2px 4px 0 rgba(0,0,0,0.3), 1px 2px 4px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 1px 2px 4px 0 rgba(0,0,0,0.3), 1px 2px 4px 0 rgba(0,0,0,0.3);
    box-shadow: 1px 2px 4px 0 rgba(0,0,0,0.3), 1px 2px 4px 0 rgba(0,0,0,0.3);
}
button.book-button:active {
    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.3), 0 2px 4px 0 rgba(0,0,0,0.3);
    -moz-box-shadow: 0 1px 4px 0 rgba(0,0,0,0.3), 0 2px 4px 0 rgba(0,0,0,0.3);
    box-shadow: 0 1px 4px 0 rgba(0,0,0,0.3), 0 2px 4px 0 rgba(0,0,0,0.3);
    transform: translate(1px, 1px);
}
button.book-button-type {
    cursor: text;
}
button.book-button-price {
    cursor: text;
    font-weight: normal;
}
.book-button-more {
    margin-top: 30px;
    text-align: center;
}
.book-button-more button.book-button {
    border-radius: 6px;
    margin: 0;
    padding: 5px 10px;
    font-size: 18pt;
}
button.book-button-inverse {
    background: #fff;
    color: #67b5d1;
    border-color: #67b5d1;
    border-style: solid;
    border-width: thin;
}
button.book-button .fab {
    font-weight: normal;
}
/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Spelling Bee
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
.bee button, .tylo button,
.calendar-gray button {
    font-size: medium;
    padding: 7px 11px 5px 13px;
    margin-right: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    -webkit-box-shadow: 3px 4px 2px 0 rgba(0,0,0,0.2), 2px 3px 8px 0 rgba(0,0,0,0.19);
    -moz-box-shadow: 3px 4px 2px 0 rgba(0,0,0,0.2), 2px 3px 8px 0 rgba(0,0,0,0.19);
    box-shadow: 3px 4px 2px 0 rgba(0,0,0,0.2), 2px 3px 8px 0 rgba(0,0,0,0.19);
}
.bee button {
    color: black;
    background-color: #FACA3C;
}
.tylo button {
    color: black;
    background-color: #CCF;
}
.calendar-gray button {
    color: #666;
    background-color: #ddd;
    cursor: default;
}
.bee.tylogram button {
    background-color: #32788A;
}
.bee button:hover, .bee td.bee-two a:hover {
    background-color: #FDC51C;
}
.tylo button:hover {
    background-color: #BBF;
}
.bee button:active {
    background-color: #FDC51C;
    -webkit-box-shadow: 2px 2px 1px 0 rgba(0,0,0,0.2), 2px 3px 8px 0 rgba(0,0,0,0.19);
    -moz-box-shadow: 2px 2px 1px 0 rgba(0,0,0,0.2), 2px 3px 8px 0 rgba(0,0,0,0.19);
    box-shadow: 2px 2px 1px 0 rgba(0,0,0,0.2), 2px 3px 8px 0 rgba(0,0,0,0.19);
    transform: translate(1px, 2px);
}
.tylo button:active {
    background-color: #BBF;
    -webkit-box-shadow: 2px 2px 1px 0 rgba(0,0,0,0.2), 2px 3px 8px 0 rgba(0,0,0,0.19);
    -moz-box-shadow: 2px 2px 1px 0 rgba(0,0,0,0.2), 2px 3px 8px 0 rgba(0,0,0,0.19);
    box-shadow: 2px 2px 1px 0 rgba(0,0,0,0.2), 2px 3px 8px 0 rgba(0,0,0,0.19);
    transform: translate(1px, 2px);
}
.bee button:focus, .tylo button:focus,
.calendar-gray button:focus {
    outline: none;
}
.bee input[type=text],
.bee select, .bee textarea {
    outline: none;
    padding: 6px 10px;
    border: 2px solid #FACA3C;
    border-radius: 4px;
    margin-bottom: 10px;
}
.bee .bee-select,
.tylo .tylo-select {
    background-color: #EEE;
}
.bee .bee-select-changed {
    background-color: #FFE9A2;
}
.tylo input[type=text],
.tylo select, .tylo textarea,
.puzzle input[type=text],
.puzzle select {
    outline: none;
    padding: 6px 10px;
    border: 2px solid #AAF;
    border-radius: 4px;
    margin-bottom: 10px;
}
.tylo .tylo-select-changed {
    background-color: #FFE9A2;
}
.bee.tylogram input[type=text], .bee.tylogram textarea {
    border: 2px solid #32788A;
}
.bee input[type=text],
.tylo input[type=text] {
    font-family: 'Times New Roman', serif;
    font-size: 13pt;
    width: 8em;
}
.bee input[type=checkbox],
.tylo input[type=checkbox],
.puzzle input[type=checkbox] {
    position: relative;
    top: 3px;
    width: 16px;
    height: 16px;
}
.puzzle input[type=checkbox] {
    margin-right: 2px;
}
.bee textarea,
.tylo textarea,
.puzzle textarea {
    resize: none;
    width: 100%;
    height: 16em;
    margin-bottom: 10px;
}
table.bee, table.tylo {
    border-spacing: 0;
}
.bee td, .tylo td {
    width: 1.5em;
    padding: 0 3px 3px 0;
    font-size: medium;
    text-align: right;
}
table.bee-small td, table.tylo-small td {
    font-size: small;
}
.bee td.bee, .tylo td.tylo {
    width: 0.75em;
    text-align: left;
}
.bee td.bee-top, .tylo td.tylo-top {
    padding-bottom: 7px;
}
.bee td.bee-right, .tylo td.tylo-right {
    padding-left: 10px;
}
.bee td.bee-bottom, .tylo td.tylo-bottom {
    padding-top: 5px;
}
.bee td.bee-left, .tylo td.tylo-left {
    padding-right: 8px;
}
.bee td.bee-wide-right, .tylo td.tylo-wide-right {
    padding-left: 10px;
    font-size: small;
    font-style: italic;
    text-align: right;
}
.bee td.bee-wide-left, .tylo td.tylo-wide-left {
    width: auto;
    padding-right: 8px;
    font-size: small;
    font-style: italic;
    text-align: left;
}
.bee td.bee-two, .tylo td.tylo-two {
    padding-top: 2px;
    padding-left: 4px;
    padding-right: 4px;
}
.bee td.bee-two a, .tylo td.tylo-two a {
    color: black;
    text-decoration: none;
}
.bee td.bee-two:first-of-type,
.tylo td.tylo-two:first-of-type {
    padding-left: 0;
}
.bee td.bee-threes, .tylo td.tylo-threes {
    font-weight: bold;
}
.bee td.bee-threes:first-of-type,
.tylo td.tylo-threes:first-of-type {
    padding-left: 4px;
}
.bee td.bee-three, .tylo td.tylo-three {
    font-size: smaller;
    font-weight: bold;
    padding-top: 3px;
    padding-left: 4px;
    padding-right: 4px;
}
.bee-calendar, .tylo-calendar {
    margin-top: 20px;
    font-weight: bold;
}
.bee-calendar div, .tylo-calendar div {
    display: block;
    float: left;
}
.bee-calendar div:nth-child(7n + 4),
.tylo-calendar div:nth-child(7n + 4) {
    clear: left;
}
.bee-calendar-nav, .bee-calendar-month,
.bee-calendar-header, .bee-calendar-cell,
.bee-calendar-blank, .tylo-calendar-nav,
.tylo-calendar-month, .tylo-calendar-header,
.tylo-calendar-cell, .tylo-calendar-blank {
    display: block;
    margin-right: 10px;
    margin-bottom: 25px;
}
.bee-calendar-nav, .tylo-calendar-nav {
    min-width: 120px;
    width: 120px;
    font-weight: normal;
}
.bee-calendar-nav-prev, .tylo-calendar-nav-prev {
    text-align: left;
}
.bee-calendar-nav-next, .tylo-calendar-nav-next {
    text-align: right;
}
.bee-calendar-month, .tylo-calendar-month {
    min-width: 380px;
    width: 380px;
    font-size: 24px;
    text-align: center;
}
.bee-calendar-month-form, .tylo-calendar-month-form {
    min-width: 430px;
    width: 430px;
    font-size: 16px;
    text-align: center;
}
.bee-calendar-header, .bee-calendar-cell,
.bee-calendar-blank, .tylo-calendar-header,
.tylo-calendar-cell, .tylo-calendar-blank {
    min-width: 110px;
    width: 110px;
}
.bee-calendar-header, .tylo-calendar-header {
    font-size: 15px;
}
.bee-calendar-day, .tylo-calendar-day {
    display: block;
    float: right;
    font-weight: bold;
    margin-bottom: 3px;
}
.bee-calendar-hive, .tylo-calendar-hive {
    font-weight: bold;
    font-size: 14.5px;
    margin-bottom: 10px;
    white-space: nowrap;
}
.bee-calendar-blank .bee-calendar-hive span,
.tylo-calendar-blank .tylo-calendar-hive span {
    cursor: default;
}
.tylo-calendar-offday {
    min-width: 70px;
    width: 70px;
}
.bee-lexicon, ul.bee-lexicon li,
.tylo-lexicon, ul.tylo-lexicon li {
    font-size: medium;
    line-height: 1.5em;
    font-style: italic;
}
.bee-entry, .tylo-entry {
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
}
.tylo-entry-extra {
    color: #999;
}
.tylo-entry-extra-comp {
    color: #888;
}
.bee-date, .tylo-date {
    font-size: small;
    font-style: italic;
}
.bee-gap, .tylo-gap {
    margin-bottom: 5px;
}
.bee-date.bee-current, .bee td.bee-three, .bee td.bee-threes {
    background-color: #FACA3C;
}
.tylo-date.tylo-current, .tylo td.tylo-two a:hover,
.tylo td.tylo-three, .tylo td.tylo-threes {
    background-color: #DDF;
}
.bee-note, .tylo-note {
    font-style: italic;
    font-weight: bold;
}
.bee-note {
    color: #E5AD00;
}
.tylo-note {
    color: #55D;
}
.bee-note.tylogram {
    color: #32788A;
}
.bee-annotation, .bee-annotation-fixed,
.tylo-annotation, .tylo-annotation-fixed {
    margin-top: 1px;
    margin-bottom: 2px;
    font-size: small;
}
.bee-cell, .bee-cell-first, .bee-count-fixed, .bee-cell-fixed,
.tylo-cell, .tylo-cell-first, .tylo-count-fixed, .tylo-cell-fixed,
.game-cell, .game-cell-first {
    display: inline-block;
    float: left;
}
.bee-annotation-wide {
    margin-left: 15px;
}
.tylo-annotation-wide {
    margin-left: 15px;
}
.bee-count-fixed, .tylo-count-fixed {
    width: 50px;
    text-align: right;
}
.bee-cell-first, .bee-annotation-fixed,
.tylo-annotation-fixed {
    width: 150px;
}
.bee-cell-fixed {
    width: 175px;
}
.tylo-cell-first {
    width: 166px;
}
.tylo-cell-fixed {
    width: 192px;
}
.game-cell-first, .game-cell {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 180px;
    padding: 1px 5px;
    font-family: 'Trebuchet MS';
    font-size: 14px;
}
.game-cell-first {
    background-color: #F4F4FF;
    margin-right: 10px;
}
.game-cell {
    background-color: #F0FFF0;
}
.game-cell-first.game-pangram,
.game-cell.game-pangram {
    background-color: #FDA;
}
.game-cell-first.game-extra,
.game-cell.game-extra {
    background-color: #BEB;
}
.game-cell-first.game-panex,
.game-cell.game-panex {
    background-color: #DD8;
}
.game-cell-first.game-vulgar,
.game-cell.game-vulgar {
    background-color: #FDF;
}
.game-cell-first.game-bonus,
.game-cell.game-bonus {
    background-color: #FF8;
}
.game-cell-first.game-excised,
.game-cell.game-excised {
    background-color: black;
    color: #F0FFF0;
}
.game-cell-first.game-excised-extra,
.game-cell.game-excised-extra {
    background-color: black;
    color: #BEB;
}
.game-cell-first.game-excised-panex,
.game-cell.game-excised-panex {
    background-color: black;
    color: #DD8;
}
.game-cell-first.game-excised-vulgar,
.game-cell.game-excised-vulgar {
    background-color: black;
    color: #FDF;
}
.bee-cell-first, .bee-reset,
.tylo-cell-first, .tylo-reset,
.game-cell-first, .game-reset {
    clear: left;
}
.bee-cell-wide {
    width: 175px;
}
.tylo-cell-wide {
    width: 192px;
}
.bee-cell-narrow, .tylo-cell-narrow {
    width: 85px;
}
.bee-silent a, .bee-silent a:hover, .bee-silent:visited,
.tylo-silent a, .tylo-silent a:hover, .tylo-silent:visited {
    color: inherit;
    text-decoration: none;
}
.bee-group, .tylo-group,
.puzzle-group {
    display: inline-block;
    white-space: nowrap;
    margin-right: 15px;
}
.puzzle-group {
    font-size: 13px;
}
.bee-notice, .tylo-notice {
    display: block;
    float: right;
    max-width: 200px;
    border: 1px black solid;
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 7px 9px;
    font-family: "batik regular", "amertype md bt", georgia, "lucida grande", "times new roman", serif;
    font-size: small;
}
.bee-warn, .tylo-warn {
    max-width: 343px;
    border: 1px black solid;
    padding: 5px 7px 5px 7px;
    font-size: small;
}
.bee-block, .tylo-block {
    display: block;
    max-width: 100%;
    border: 1px black dashed;
    border-radius: 12px;
    margin-left: 0;
    margin-bottom: 13px;
    padding: 10px 12px 12px 12px;
    font-size: 15px;
}
.bee-notice, .bee-warn, .bee-block {
    background-color: #FACA3C;
}
.tylo-notice, .tylo-warn {
    background-color: #DDF;
}
.bee-warn.tylogram {
    color: #32788A;
}
.bee-closed .bee-vertical {
    transition: all 0.4s ease-in-out;
    transform: rotate(-90deg);
}
.bee-closed .bee-horizontal {
    transition: all 0.4s ease-in-out;
    transform: rotate(-90deg);
    opacity: 1;
}
.bee-opened {
    opacity: 1;
}
.bee-opened .bee-vertical {
    transition: all 0.4s ease-in-out;
    transform: rotate(90deg);
}
.bee-opened .bee-horizontal {
    transition: all 0.4s ease-in-out;
    transform: rotate(90deg);
    opacity: 0;
}
.bee-float-box {
    display: block;
    float: left;
    min-width: 125px;
    margin-right: 30px;
    margin-bottom: 30px;
    text-align: center;
}
.bee-float-title {
    font-size: 16px;
}
.bee-float-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
.bee-float-item {
    flex: 1;
    font-size: 14px;
    font-weight: bold;
}
.bee-float-title a.bee,
.bee-float-item a.bee {
    text-decoration: none;
}
.bee-float-title a.bee button,
.bee-float-item a.bee button {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.bee-float-title a.bee button {
    min-width: 120px;
}
.bee-float-item a.bee button {
    margin-top: 3px;
    font-size: 11pt;
}
.bee-sub-stats {
    margin-bottom: 5px;
}
.bee-day-nav {
    margin-top: 5px;
    margin-bottom: 5px;
}
.bee-sub-stats a.bee button,
.bee-day-nav a.bee button {
    font-size: 11pt;
}
a.bee button.bee-button-bold {
    font-weight: bold;
}
.bee-float-last {
    display: block;
    clear: both;
}
.bee-stats-cell, .bee-stats-cell-place {
    display: inline-block;
    width: 40px;
    font-style: normal;
    text-align: right;
}
.bee-stats-cell-place {
    width: 50px;
    font-style: italic;
}
.bee-stats-header {
    font-style: normal;
    text-decoration: underline;
}
.bee-circle-plus {
    display: block;
    float: left;
    height: 25px;
    width: 25px;
    margin-right: 6px;
    opacity: 1;
    cursor: pointer;
}
.bee-circle-plus .bee-circle {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: solid 3px #FACA3C;
}
.bee-circle-plus .bee-circle .bee-horizontal {
    position: absolute;
    background-color: #666;
    width: 17px;
    height: 3px;
    left: 1px;
    top: 8px;
}
.bee-circle-plus .bee-circle .bee-vertical {
    position: absolute;
    background-color: #666;
    width: 3px;
    height: 17px;
    left: 8px;
    top: 1px;
}
.bee-circle-label {
    display: block;
    height: 26px;
    padding-top: 3px;
    font-size: 16px;
    font-weight: bold;
    color: #444;
}
.bee-drawer {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}
.bee-drawer-top {
    padding-top: 10px;
}
.faq {
    counter-reset: faq-counter;
}
.faq-question {
    counter-increment: faq-counter;
}
.faq-question::before {
    content: counter(faq-counter) ". ";
    color: #FACA3C;
    font-weight: bold;
}
.faq-answer {
    display: block;
}
.game-stats-wrapper {
    min-width: 320px;
}
.tylogrid {
    max-width: 170px;
    border: 1px black solid;
}
.tylogrid .tylotile {
    display: block;
    float: left;
}
.tylogrid .tylotile:nth-child(3n + 1) {
    clear: left;
}
.tylotile {
    height: 56px;
    max-height: 56px;
    width: 56px;
    max-width: 56px;
    border: 1px black solid;
    color: black;
}
.game-cell-first .tylotile,
.game-cell .tylotile {
    background-color: white;
}
.tylotile.tyloanchor {
    color: white;
    background-color: #55D;
}
.tylotile.tylostar {
    color: lightgray;
    width: 100%;
    text-align: center;
    font-size: 36px;
}
.tylotile.tylostar.tylosolver {
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    padding-bottom: 5px;
}
.game-cell-first .tylochar,
.game-cell .tylochar {
    padding-top: 1px;
}
.game-cell-first .tylotile.tylostar,
.game-cell .tylotile.tylostar {
    padding-top: 15px;
    background-color: lightgray;
    color: white;
}
.game-cell-first .tylotile.tylostar.tylodigit,
.game-cell .tylotile.tylostar.tylodigit {
    padding-top: 17px;
}
.tylotick {
    max-height: 12px;
    margin-right: 2px;
    text-align: right;
    font-size: 10px;
    font-weight: normal;
}
.game-cell-first .tylotick,
.game-cell .tylotick {
    max-height: 14px;
}
.tylochar {
    width: 100%;
    max-height: 28px;
    text-align: center;
    font-weight: bold;
    font-size: 24px; 
}
.tylotally {
    margin-right: 3px;
    text-align: right;
    font-size: 12px;
    font-weight: normal;
}
.tyloclear {
    margin: 0;
    padding: 0;
    clear: both;
}

@media only screen and (max-device-width: 600px), screen and (max-width: 600px) {
    .bee-annotation {
        clear: left;
        margin-left: 150px;
    }
    .bee-annotation-wide {
        clear: left;
        margin-left: 175px;
    }
    .tylo-annotation {
        clear: left;
        margin-left: 166px;
    }
    .tylo-annotation-wide {
        clear: left;
        margin-left: 192px;
    }
}



/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Responsive Scroll Headers
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
/* general style for expanded headers */
header {
    width: 100%;
    background-color: white;
}
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}
header.fixed,
.scroll-enabled,
.scroll-enabled #header-content,
.scroll-enabled #header-image,
.scroll-enabled #header-image-1,
.scroll-enabled #header-image-2,
.scroll-enabled #header-image-narrow,
.scroll-enabled #header-name,
.scroll-enabled #header-name-1,
.scroll-enabled #header-name-2,
.scroll-enabled #header-name-narrow,
.scroll-enabled #header-description,
.scroll-enabled #header-description-1,
.scroll-enabled #header-description-2 {
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -ms-transition: 0.5s all;
    -o-transition: 0.5s all;
}

/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Menus
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
/* general style for all menus */
nav.menu {
    position: fixed;
    z-index: 1000020;
    background-color: #fff;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
nav.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-top: 1px;
}
nav.menu a {
    font-weight: bold;
    color: #000;
}
button.close-menu {
    background-color: #3184a1;
    color: #fff;
}
button.close-menu:focus {
    outline: none;
}
/* slide menu left and right, push menu left and right */
nav.push-menu-left {
    top: 0;
    width: 200px;
    height: 100%;
}
nav.push-menu-left li {
    display: block;
    text-align: left;
    padding-top: 3px;
    padding-bottom: 10px;
    margin-left: 7px;
    margin-right: 7px;
    border-bottom: solid black 1px;
}
nav.push-menu-left li:first-child {
    padding-top: 5px;
}
nav.push-menu-left li:last-child {
    border-bottom: none;
}
nav.push-menu-left a {
    display: block;
    font-size: 18pt;
    font-variant: all-small-caps;
    text-decoration: none;
    line-height: 1em;
}
nav.push-menu-left a:hover {
    text-decoration: none;
    background-image: linear-gradient(135deg, #fff, lightblue);
}
nav.push-menu-left button.close-menu {
    margin: 10px 0;
    padding: 10px 30px;
    background-color: #3184a1;
    color: #fff;
}
nav.push-menu-left {
    left: -200px;
}
body.pml-open nav.push-menu-left {
    left: 0;
}
body.pml-open #wrapper,
body.pml-open header {
    left: 200px;
}
li.showno {
    margin-left: 0.5em !important;
}

/* Special checklist */
ul.checklist li {
    list-style-type: none !important;
    overflow: visible;
    padding-left: 1.3em;
    position: relative;
}
ul.checklist li:before {
    content: "\2610";
    left: 0;
    position: absolute;
}

/* Special Ad Content */
.ad-ldrbrd {
    display: table;
    width: 100%;
    min-height: 250px;
    background-image: url("https://www.shunn.net/img/qwerty-970x250.png");
}
.ad-ctr {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Media Queries
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
@media all and (max-width: 1009px) { 
    .ad-ldrbrd {
        min-height: 90px;
        background-image: none;
    }
}

@media all and (max-width: 500px) { 
    .toggle-push-left {
        display: block;
    }
    #header-content {
        margin: 0 !important;
    }
    #header-name, #header-description,
    #header-name-1, #header-description-1,
    #header-name-2, #header-description-2 {
        display: none;
        margin: 0;
    }
    #header-image, #header-image-1, #header-image-2 {
        display: none;
    }
    #header-name-narrow, #header-image-narrow {
        display: block;
        position: absolute;
        top: 0px;
        left: 40px;
    }
    .main-menu-list {
        display: none;
    }
    .ad-ldrbrd {
        min-height: 50px;
        background-image: none;
    }
}

@media all and (max-width: 480px) { 
    .bee input[type=checkbox],
    .tylo input[type=checkbox],
    .puzzle input[type=checkbox] {
        position: relative;
        top: 1px;
    }
}

@media print {
    #header {
        margin-top: -60px;
        height: 192px;
        -webkit-print-color-adjust: exact;
    }
    h1::before {
        content: " \A";
        display: block;
        white-space: pre-wrap;
    }
    .push-menu-left, .toggle-push-left, .fb-page, #adcontent, #duotrope {
        display: none;
    }
    .pane-footer {
        page-break-inside: avoid;
    }
}

.wenrap {
    font-family: Georgia, Times New Roman, serif;
    font-size: 11pt;
}

.wenrap td {
    padding-bottom: 10px;
}

.wenrap tr td:nth-of-type(2) {
    max-width: 140px;
    padding-right: 15px;
    text-align: right;
    font-family: Amateur, Courier New, monospace;
    font-size: 18px;
    line-height: 1.2em;
}

.wenrap tr td:nth-of-type(4) {
    padding-top: 1px;
    line-height: 1.4em;
}

.wenrap tr td:nth-of-type(6) {
    max-width: 150px;
    padding-top: 4px;
    padding-left: 15px;
    font-size: 9pt;
    line-height: 1.4em;
}

.wenrap .clickit {
    cursor: pointer;
}

.wenrap .hideit {
    color: transparent;
}



/* ------------------------------------------------------------ *\
|* ------------------------------------------------------------ *|
|* Tylogram Puzzle Spec Display
|* ------------------------------------------------------------ *|
\* ------------------------------------------------------------ */
.puzzle-container,
.puzzle-container-inactive,
.puzzle-container-sidebar {
    clear: both;
    width: 300px;
    background: white;
    color: black;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    margin-bottom: 25px;
}
.puzzle-container-sidebar {
    width: 100%;
    margin-bottom: 0;
}
.tile-container,
.tile-container-sidebar {
    clear: both;
    display: block;
    float: left;
    width: 70px;
    height: 70px;
    padding: 6px;
    background-color: #BBF;
    border-radius: 9px;
    margin-right: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}
.tile-container-contest {
    background-color: #99F;
}
.tile-container-sidebar {
    float: none;
    margin-bottom: 2px;
}
.tile-interior {
    display: flex;
    flex-direction: row;
    position: absolute;
    border-radius: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 7px;
    padding-right: 7px;
    z-index: 1;
    border-width: 0;
    border-color: black;
    border-style: solid;
    width: 58px;
    height: 58px;
    max-width: 58px;
    max-height: 58px;
    background-color: #66F;
}
.tile-interior-contest {
    background-color: #33F;
}
.tile-letter {
    flex: 4;
    align-self: center;
    padding: 0;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    font-size: 44px;
    color: white;
    margin-top: -4px;
}
.tile-letter-contest {
    color: navajowhite;
}
.tile-score {
    flex: 1;
    align-self: flex-end;
    padding: 0;
    font-weight: bold;
    text-align: right;
    font-size: 2px;
    color: white;
}
.puzzle-spec-container-sidebar {
    margin-bottom: 15px;
}
.puzzle-spec,
.puzzle-spec-sidebar {
    padding-top: 1px;
    font-size: 13px;
    padding-bottom: 5px;
}
.puzzle-button {
    clear: both;
}
.puzzle button,
.puzzle input[type=submit] {
    background-color: #66F;
    padding-top: 7px;
    padding-right: 13px;
    padding-left: 13px;
    padding-bottom: 8px;
    border-radius: 12px;
    justify-content: center;
    border: 0;
    outline: none;
    font-size: 14px;
    color: white;
    text-align: center;
    cursor: pointer;
}
.puzzle-contest button {
    background-color: #33F;
}
.puzzle input[type=submit] {
    margin-bottom: 5px;
}
.puzzle-auth {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}
.puzzle input[type=submit],
.puzzle button.puzzle-auth {
    font-size: 16px;
}
.puzzle input[type=text] {
    width: 16em;
    margin-right: 3px;
    font-family: 'batik regular', 'amertype md bt', georgia, 'lucida grande', 'times new roman', serif;
    font-size: 14pt;
    font-weight: bold;
}
.puzzle input[type=text]::placeholder {
    color: #BBB;
}
.puzzle-container-inactive .tile-container {
    background-color: #CCC;
}
.puzzle-container-inactive .tile-interior,
.puzzle-container-inactive button {
    background-color: #999;
}
#authcode {
    width: 10em;
}

@media only screen and (min-device-width: 375px) and (max-device-width: 429px), screen and (min-width: 375px) and (max-width: 429px) {
    .game-cell-first, .game-cell {
        width: 160px;
        font-size: 12px;
    }
    .game-cell-first .tylogrid,
    .game-cell .tylogrid {
        max-width: 150px;
    }
    .game-cell-first .tylotile,
    .game-cell .tylotile {
        height: 48px;
        max-height: 48px;
        width: 48px;
        max-width: 48px;
    }
    .game-cell-first .tylotile.tylostar,
    .game-cell .tylotile.tylostar {
        padding-top: 14px;
        font-size: 32px;
    }
    .game-cell-first .tylotile.tylostar.tylodigit,
    .game-cell .tylotile.tylostar.tylodigit {
        padding-top: 14px;
    }
    .game-cell-first .tylotick,
    .game-cell .tylotick {
        max-height: 13px;
    }
    .game-cell-first .tylochar,
    .game-cell .tylochar {
        max-height: 17px;
        font-size: 21px;
    }
    .game-cell-first .tylotally,
    .game-cell .tylotally {
        font-size: 11px;
    }
}

@media only screen and (min-device-width: 10px) and (max-device-width: 374px), screen and (min-width: 10px) and (max-width: 374px) {
    .game-cell-first, .game-cell {
        width: 140px;
        font-size: 10px;
    }
    .game-cell-first .tylogrid,
    .game-cell .tylogrid {
        max-width: 140px;
    }
    .game-cell-first .tylotile,
    .game-cell .tylotile {
        height: 42px;
        max-height: 42px;
        width: 42px;
        max-width: 42px;
    }
    .game-cell-first .tylotile.tylostar,
    .game-cell .tylotile.tylostar {
        padding-top: 12px;
        font-size: 30px;
    }
    .game-cell-first .tylotile.tylostar.tylodigit,
    .game-cell .tylotile.tylostar.tylodigit {
        padding-top: 13px;
    }
    .game-cell-first .tylotick,
    .game-cell .tylotick {
        max-height: 12px;
    }
    .game-cell-first .tylochar,
    .game-cell .tylochar {
        max-height: 15px;
        font-size: 18px;
    }
    .game-cell-first .tylotally,
    .game-cell .tylotally {
        margin-right: 2px;
        font-size: 10px;
    }
}

@media all and (max-width: 375px) {
    .bee-notice, .tylo-notice {
        max-width: 50%;
    }
    .tile-container {
        margin-bottom: 7px;
    }
    .puzzle-spec {
        clear: both;
        margin-bottom: 4px;
    }
    .puzzle input[type=text] {
        width: 100%;
        margin-right: 0;
    }
}
