@charset "UTF-8";
/* CSS Document */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #fedb94;
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.45;
}


/* =========================
   DESKTOP
   Fixed 800px newsletter layout
   ========================= */

#page {
    width: 800px;
    margin: 0 auto 40px;
    position: relative;

    display: grid;
    grid-template-columns: 200px 600px;
    grid-template-areas:
        "masthead masthead"
        "sidebar article";
}


/* Masthead */

#masthead {
    grid-area: masthead;
    width: 800px;
}

#masthead img {
    display: block;
    width: 800px;
    height: auto;
    margin: 0;
}


/* Sidebar */

#sidebar {
    grid-area: sidebar;
    width: 198px;
    padding: 16px 18px 25px 16px;

    border-left: 2px dotted #8fa6bc;
}


/* Issue date */

#issue-date {
    margin: 0 0 18px;
    text-align: left;

    font-family: "Arial Black", Gadget, sans-serif;
    font-size: 23px;
    font-style: italic;

    color: #c84a46;
    text-shadow: 3px 3px 5px #999999;
}


/* Issue menu */

#issue-menu-title {
    margin: 0 0 7px;
    text-align: center;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;

    color: #cc3333;
}

#issue-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;

    border: 1px solid #003366;
}

#issue-menu li {
    margin: 0;
    border-bottom: 1px solid #003366;
}

#issue-menu li:last-child {
    border-bottom: none;
}

#issue-menu a {
    display: block;
    position: relative;

    padding: 3px 6px 2px 20px;

    color: #000000;
    background: transparent;
    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.15;
}


/* Normal menu bullet */

#issue-menu a::before {
    content: "•";
    position: absolute;
    left: 7px;
    top: 4px;

    color: #003366;
}


/* Menu rollover */

#issue-menu a:hover,
#issue-menu a:focus {
    color: #ffffff;
    background-color: #888888;
    text-decoration: none;
}

#issue-menu a:hover::before,
#issue-menu a:focus::before {
    content: "▶";
    left: 6px;

    font-size: 9px;
    color: #ffffff;
}


/* Current article */

#issue-menu a.current {
    color: #ffffff;
    background-color: #003366;
}

#issue-menu a.current::before {
    content: "◆";
    display: block;

    color: #ffffff;
    font-size: 8px;

    top: 50%;
    transform: translateY(-50%);
}


/* Home button */

#home-button {
    display: block;
    width: 150px;
    height: 47px;
    margin: 18px auto 0;

    border: 0;
}

#pub_box {
    height: auto;
    width: 160px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #036;
    border-radius: 12px;
    padding: 6px;
    line-height: 1.2;
}
	
.ann_arbor {	font-size: 12px;
}



/* Article */

#article {
    grid-area: article;
    width: 602px;
    padding: 18px 20px 35px;

    border-left: 2px dotted #8fa6bc;
    border-right: 2px dotted #8fa6bc;
}

#article h1 {
    margin: 0 0 18px;
    padding: 0;

    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;

    color: #000000;
    text-align: left;
}



#article figure {
    width: 560px;
    margin: 0 0 20px;
    padding: 0;
}

#article figure img {
    display: block;
    width: 560px;
    height: auto;
    margin: 0;
}

#article figcaption {
    width: 560px;
    margin: 5px 0 0;
    padding: 0 8px;

    font-size: 14px;
    line-height: 1.25;
    text-align: center;
}




/* =========================
   MOBILE
   ========================= */

@media (max-width: 800px) {

    #page {
        width: 100%;
        margin: 0;

        grid-template-columns: 1fr;
        grid-template-areas:
            "masthead"
            "sidebar"
            "article";

        border-left: 0;
        border-right: 0;
    }


    /* Mobile masthead:
       enlarged and cropped from the left */

    #masthead {
        width: 100%;
        overflow: hidden;
    }

    #masthead img {
        display: block;
        width: 600px;
        max-width: none;
        height: auto;

        position: relative;
        left: 100%;
        transform: translateX(-100%);
    }


    /* Mobile dotted borders */

    #sidebar,
    #article {
        width: calc(100% - 20px);
        margin-left: auto;
        margin-right: auto;

        border-left: 2px dotted #8fa6bc;
        border-right: 2px dotted #8fa6bc;
    }


    /* Mobile sidebar */

    #issue-date {
        margin-bottom: 14px;
		text-align: center;
		
		font-family: "Arial Black", Gadget, sans-serif;
    	font-size: 23px;
    	font-style: italic;

    color: #c84a46;
    text-shadow: 3px 3px 5px #999999;
    }

    #issue-menu-title {
        margin-bottom: 4px;
    }

    #issue-menu ul {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    #issue-menu a {
        padding: 2px 6px 2px 24px;
    }

    #issue-menu a::before {
        left: 9px;
        top: 50%;
        transform: translateY(-50%);
    }

    #issue-menu a.current::before {
        font-size: 9px;
        transform: translateY(-50%) scale(0.72);
        transform-origin: center;
    }

    #home-button {
        margin-top: 14px;
    }

 /* PUBLISHER BOX — DESKTOP ONLY */
    #pub_box {
        display: none;
    }


    /* Mobile article */

    #article {
        padding: 16px 10px 30px;
    }
	
	#article img {
    max-width: 100%;
    height: auto;
}

    #article h1 {
        margin: 0 0 18px;
    padding: 0;

    font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;

    color: #000000;
    text-align: left;
    }

    #article figure {
        width: 100%;
        margin-bottom: 18px;
    }

    #article figure img {
        width: 100%;
        height: auto;
    }

    #article figcaption {
        width: 100%;
        padding: 0 14px;
    }

    .photo-credit {
        width: 100%;
        padding: 0 14px;
    }
}

.body_text {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 16px;
    line-height: 26px;
}
.drop_cap {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 55px;
	line-height: 50px;
	font-weight: bold;
	color: #8fa6bc;
	padding-right: 3px;
	padding-left: 3px;
	float: left;
}

.byline {
    font-family: "Courier New", Courier, monospace;
    font-size: 16px;
    text-transform: uppercase;
}
.photo_credit {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: italic;
	text-align: right;
}
.photo_caption {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	margin-bottom: -10px;
}
.bullet_list {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	line-height: 24px;
	list-style-type: square;
}
.callout {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: lighter;
    color: #8fa6bc;
    padding-right: 30px;
    padding-left: 12px;
    float: right;
    border-bottom-width: thin;
    border-bottom-style: solid;
    border-top-width: thin;
    border-top-style: solid;
}

a:link {
	text-decoration: underline;
	color: #688bac;
}
a:visited {
	text-decoration: underline;
	color: #688bac;
}
a:hover {
	background-color: #fdeac2;
	color: #688bac;
	text-decoration: none;
}
a:active {
	text-decoration: underline;
}


div.album {
  width: 175px;
  box-shadow: 6px 6px 16px 0 rgba(0, 0, 0, 0.4), 0 6px 16px 0 rgba(0, 0, 0, 0.4);
  float: right;
	margin-left: 14px;
	margin-bottom: 12px;
 -ms-transform: rotate(-18deg); /* IE 9 */
  -webkit-transform: rotate(-18deg); /* Safari */
  transform: rotate(-18deg);
}
