html
{ 
  overflow-y:scroll;  // force the scroll bar so it doesn't "just appear" when expanding menus
}

#title
{
  padding: 10px 5px;
  background-color: #e7e5e4;
  text-align: center;
  font-family: Georgia, sans-serif;
  font-size: 3em;
  letter-spacing: -2px;
}

.active
{
  right: -500px !important;
}

body
{
  padding-top: 50px; // for navbar
}

.starter-template 
{
  padding: 40px 15px;
  text-align: center;
}


body>.container
{
  margin-top: 10px;
}

/**
.no-transition
{
  -webkit-transition: height 0.01s;
  -moz-transition: height 0.01s;
  -ms-transition: height 0.01s;
  -o-transition: height 0.01s;
  transition: height 0.01s;
}
*/

.no-transition
{
  -webkit-transition: height 0;
  -moz-transition: height 0;
  -ms-transition: height 0;
  -o-transition: height 0;
  transition: height 0;
}


// For modern browsers, just add the CSS3 :target selector to the page. 
// This will apply to all the anchors automatically.
// ref: http://stackoverflow.com/a/21707103/6220029

:target {
  display: block;
  position: relative;
  top: -120px; 
  visibility: hidden;
}


#the_title_bar
{
  display: none;
}


#handbook_nav
{
  height: 	80vh; /* Full-height: remove this if you want "auto" height */
  width: 	350px; 
  position: 	fixed; 
  z-index: 	1; 
  top: 		100px;  /* below header bar */
  right: 	0;
  overflow-x: 	hidden; /* Disable horizontal scroll */
  overflow-y: scroll;
  padding-top: 	  10px;
  padding-bottom: 10px;
  background-color: #eee;
  text-align: left;
}

.quote
{
  background-color: #ddddcc;
  width:60%;
  float:right;
  padding: 15px;
  margin: 5px 10px 5px 10px;
}



[aria-expanded="true"] .expand_marker:before
{
    content: "\f056"; // fa-minus-circle
}

[aria-expanded="false"] .expand_marker:before
{
    content: "\f055"; // fa-plus-circle
}

.info_topic_opener
{ 
  border:none;
  background:none;
}


.policy_block
{
  border:1px solid black;
  padding:5px;
  margin: 5px;
}

.policy_block h3,
.policy_block h4,
{
  background: #EEEEEE;
}

/**
 * For items you want to enforce the notion that they are clickable.
 */
.clickable
{
  cursor: pointer;
}

/**
 * to put font awesome ellipses a little bit lower on the line
 */
.fa-ellipsis-h
{
  vertical-align:sub;
}


body
{
  text-align : justify;
}

h2
{
  padding: 20px 0px 5px 0px;
  text-align : left;
  font-size: 125%;
  text-decoration: underline;
}

h3
{
  padding: 20px 0px 5px 0px;
  text-align : left;
  font-size: 100%;
  text-decoration: underline;
}


button:focus { outline:0; }


#AP_Credit_Table thead
{
  background: lightgray;
}

#AP_Credit_Table tr
{ 
  border:1px solid black;
}

#AP_Credit_Table tr:nth-child(even)
{
  background: #ddddee;
}

#AP_Credit_Table td, 
#AP_Credit_Table th
{ 
  padding: 5px;
  border:1px solid black;
}

/**
 * General Changes when printing document.
 * e.g., don't print navbar, make page full screen, etc.
 */
@media print
{ 
  #handbook_navigation,
  #handbook_nav 
  {
    display: none;
  }


  #head_nav_bar
  {
    display: none;
  }

  .col-md-6
  {
    width: 50%;
    float: left;
  }

  .col-md-8
  { 
    width: 100%;
  }

  body
  {
    width: 90%;
    padding: 5%;
    //border: 1px solid red;
  }

  .quote
  {
    background-color: #ddddcc;
    width:30% !important;
    float:right;
    padding: 5px;
    margin: 5px 10px 5px 10px;
  }

  #the_title_bar
  {
    display: block;
  }


}


blockquote 
{ 
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
             
blockquote p 
{ 
  display: inline;
} 