/**
* CSS
* 
* @version 1.0
* @author -- 
*
* There are also some obscure rules in base.css
*/
body {
        font-size: 13px;
        font-family: "Open Sans", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
        background: #fff;
        color: #565656;
        line-height: 1.8em;
}

#index ul { font-size: 14px; }

/* link scheme */
/* you can customize links further down the page too */
a:link { text-decoration: none; color: #565656; }
a:visited { text-decoration: none; color: #565656; }
a:hover { color: #fce5e6; }
a:active { text-decoration: none; color: #565656; }
a img { border: none; max-width: 100%; }
audio:focus { outline: none; }

/* general styles */
small { font-size: 9px; }
code { font-family: monospace; }
blockquote { padding-left: 9px; }

/* headings */
h1 { font-size: 18px; margin-bottom: 1.3em; letter-spacing: 1px; }
h2 { font-size: 13px; margin-bottom: 1.3em; font-weight: bold; }
h3 { font-size: 13px; margin-bottom: 1.3em; font-weight: bold; }
h4 { font-size: 13px; margin-bottom: 1.3em; font-weight: bold; }

/* paragraph width */
#index p { margin-bottom: 14px; }
#exhibit p, code, blockquote { margin-bottom: 28px; }

.nothumb { float: none!important; display: block; margin: 0 40px 40px 0; }

/* highlighter style - maybe you want to change colors? */
.highlight { background: #fce5e6; color: #565656; }

/* never adjust the margin or padding here unless you seriously know what you are doing */
/* think #index .container and #exhibit .container for only padding adjustments */
#index { width: 300px; background: #fff; /* line-height: 1.3em; */ }
#exhibit { margin: 0 0 0 300px; }

/* styling the index */
#index ul { list-style: none; margin: 0; }
#index ul.section { margin-bottom: 14px; }

/* the follow rules for index are not required */
/* they are mostly for complex customization */
/* for tag display */
#index ul#all_tags { list-style-type: none; margin-bottom: 14px; }
#index ul#all_tags li { display: inline; margin-right: 3px; }

/* styles for the section titles */
#index ul.section span.section_title, 
#index ul.section span.section_title a 
{ color: #565656; }

#index ul.section span.section_title:hover, 
#index ul.section span.section_title a:hover 
{ color: #fce5e6; }

/* active section title */
#index span.active_section_title,
#index span.active_section_title a { color: #fce5e6!important; }

/* active exhibit title parts */
/* color of active exhibit title link and font-weight */
li.active a:link, li a.active, li.active a:hover, li a.active, li.active a:active, li a.active, 
li.active a:visited, li a.active, li span.active, #index ul.section li.active a:link, 
#index ul.section li.active a:hover, #index ul.section li.active a:active, #index ul.section li.active a:visited
{ font-weight: normal; color: #fce5e6; }

/* the "new" indicator */
#index ul li sup.new_exhibit { color: #565656; font-weight: bold; text-transform: uppercase; font-size: 8px; vertical-align: top; }
#index ul li sup.new_exhibit:before { color: #565656; font-weight: bold; text-transform: uppercase; font-size: 8px; vertical-align: top; content: "New"; }
/* end styling for index */

/* links styles only for the #index region */
#index a:link { color: #565656; } 
#index a:visited { color: #565656; }
#index a:hover { color: #fce5e6; } 
#index a:active { color: #fce5e6; } 

/* links styles only for the #exhibit region */
#exhibit a:link { text-decoration: underline; }
#exhibit a:visited { color: #565656; }
#exhibit a:hover { text-decoration: none; color: #fce5e6; } 
#exhibit a:active { color: #565656; } 
#exhibit .picture_holder a:link { text-decoration: none; }

/* links styles just for h1 title of site (your name/logo) */
#index h1 a { font-weight: normal; text-decoration: none; color: #565656; }

/* this is where you adjust your paddings for #index and #exhibit together */
.container { padding: 0; }

/* this is where you pad them separately */
#index .container { padding: 85px 0 85px 60px; }
#exhibit .container { padding: 85px 0 85px 0; }

/* size and style of titles and captions (not mobile though) */
.captioning { margin-top: 2px; }
.title { font-size: 0.9em; /*font-style: italic;*/ line-height: 1.8em; }
.caption { font-size: 0.9em; font-style: italic; line-height: 1.8em; }

.container::-webkit-scrollbar{
        width: 10px;
}
.container::-webkit-scrollbar-track{
        background: #fff;
        border-left: solid 1px #ececec;
}
.container::-webkit-scrollbar-thumb{
        background: #ccc;
        border-radius: 10px;
        box-shadow: inset 0 0 0 2px #fff;
}