@charset "UTF-8";
/*/ BODY ////////////////////////////////////////////*/
* { /* asterix selector applies css to all elements  */
    box-sizing: border-box; /* to fix issue with increasing width if padding or margins ar added */
}
body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    color: #FFF;
    background-color: #080928;
    margin: 0;
}
/*/ CONTAINER ////////////////////////////////////////////*/
main {
    width: 960px;
    margin: 0 auto;
}
/*/ HEADER ////////////////////////////////////////////*/
header {
    width: 100%;
    height: 135px;
    padding: 25px;
    padding-left: 100px;
    text-align: center;
    background: linear-gradient(to right, #4b519f, #747ACB, #A1A6E3, #747ACB, #4b519f);
}
/*/ MAIN NAV ////////////////////////////////////////////*/
nav {
    display: inline-block;
    margin-left: 105px;
    width: 55.5%;
    background: linear-gradient(#382f76, #272056);
    text-align: center;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
nav ul {
    margin: 0;
    padding: 0;
}
nav li {
    display: inline-block;
    padding-top: 15px;
    padding-bottom: 15px;
}
nav li:last-child { /* selects the last nav */
    border-right: 0;
}
nav a {
    text-decoration: none;
    color: #FFF;
    text-shadow: 0.5px 0.5px 0.5px #cfc2ee;
    padding: 15px;
}
nav a:hover {
    background: linear-gradient(#dacdf8, #cfc2ee);
    color: #272056;
    text-shadow: 0.5px 0.5px 0.5px #000;
}
nav a:hover, .active {
    background: linear-gradient(#dacdf8, #cfc2ee);
    color: #272056;
    text-shadow: 0.5px 0.5px 0.5px #000;
}
ul.dropdown {
    position: absolute;
    background-color: #272056;
    margin-top: 15px;
    display: none;
    text-align: left;
}
ul.dropdown li {
    display: block;
    margin: 0;
}
ul.dropdown li:hover {
    background: linear-gradient(#dacdf8, #cfc2ee);
    color: #272056;
    text-shadow: 0.5px 0.5px 0.5px #000;
}
ul.dropdown li:hover, .active {
    background: linear-gradient(#dacdf8, #cfc2ee);
    color: #272056;
    text-shadow: 0.5px 0.5px 0.5px #000;
}
ul.dropdown a {
    margin: 0;
}
li.droplist:hover ul.dropdown {
    display: block;
}
/*/ CONTENT ////////////////////////////////////////////*/
section {
    width: 100%;
    margin-top: 30px;
    overflow: auto; /* this will ensure that margins work when a height is applied but no content is in div */
}
article {
    float: left;
    padding: 20px;
    background-color: rgba(255,255,255,0.8);
    width: 365px;
    margin-right: 20px;
    border-radius: 5px 5px 5px 5px;
    background-image: url(../images/welcomebackground.jpg);
}
.article2back { /* selects the last article in each section */
    float: left;
    padding: 20px;
    margin-right: 0;
    width: 575px;
    height: 520px;
    background-image: url(../images/researchbackground.jpg);
}
article h1 {
    margin-top: -20px;
    margin-left: -20px;
    margin-bottom: 10px;
    font-size: 30px;
    color: #cfc2ee;
    font-family: 'Muli', sans-serif;
    font-weight: 100;
    text-shadow: 0.5px 0.5px 0.5px #000;
    border-radius: 5px 0px 0px 0px;
    background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,0));
    padding-left: 10px;
}
h2 {
    margin-top: 0;
    margin-left: -20px;
    margin-bottom: 10px;
    font-size: 24px;
    color: #cfc2ee;
    font-family: 'Muli', sans-serif;
    font-weight: 100;
    text-shadow: 0.5px 0.5px 0.5px #000;
    border-radius: 5px 0px 0px 0px;
    padding-left: 10px;
}
footer h2 {
    margin-top: -5px;
}
article p {
    line-height: 20px;
    color: #FFF;
    font-size: 12px;
}
article p.article2 {
    width: 252.5px;
}
.article3 {
    width: 960px;
    background-image: none;
    background-color: #FFF;
}
a.read_more {
    margin-bottom: 15px;
    display: block;
    background: linear-gradient(#382f76, #272056);
    color: #FFFFFF;
    text-shadow: 0.5px 0.5px 0.5px #cfc2ee;
    padding: 15px;
    width: 126px;
    text-decoration: none;
    border-radius: 5px 5px 5px 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
a.read_more:hover {
    background: linear-gradient(#dacdf8, #cfc2ee);
    color: #272056;
    text-shadow: 0.5px 0.5px 0.5px #000;
}
article .planets {
    margin-bottom: 20px;
    display: inline-block;
    background-color: #293088;
    padding-top: 10px;
    width: 100px;
    height: 100px;
    text-align: center;
    border-radius: 50% 50% 50% 50%;
    margin-right: 17px;
}
article .planets:last-child {
    margin-right: auto;
}
/*/ FOOTER ////////////////////////////////////////////*/
footer {
    margin-top: 30px;
    width: 100%;
    height: 136px;
    padding: 20px;
    padding-left: 100px;
    text-align: center;
    background: linear-gradient(to right, #293088, #3E46A8, #5058BF, #3E46A8, #293088);
}
.scrollbar {
    margin-left: -10px;
    float: left;
    height: 432px;
    width: 354.5px;
    overflow-y: scroll;
    margin-bottom: 20.5px;
    padding-right: 5px;
}
.force-overflow {
    min-height: 340px;
}
.article_col {
    float: left;
    width: 250px;
}
.article_col:last-child {
    margin-left: 20px;
}
.article_row {
    float: left;
    width: 960px;
}
.planet_box {
    float: left;
    text-align: center;
    margin-left: -3px;
}
.planet_box:first-child {
    margin-left: 10px;
}
.planet_box:last-child {
    margin-left: 0;
}
.planetname {
    margin-top: 0;
    margin-bottom: 10px;
    margin-left: -20px;
    font-size: 24px;
    color: #cfc2ee;
    font-family: 'Muli', sans-serif;
    font-weight: 100;
    text-shadow: 0.5px 0.5px 0.5px #000;
}
/*/ ABOUT PAGE ////////////////////////////////////////////*/
.aboutarticle {
    float: left;
    padding: 20px;
    background-color: #FFF;
    background-image: none;
    width: 562px;
    height: 520px;
    margin-right: 10px;
    border-radius: 5px 5px 5px 5px;
}
.aboutarticle2 {
    float: left;
    padding: 20px;
    margin-right: 0;
    width: 388px;
    background-image: url(../images/researchbackground.jpg);
}
.aboutarticle1flip {
    float: left;
    padding: 20px;
    background-color: #FFF;
    background-image: none;
    width: 562px;
    height: 520px;
    margin-right: 0;
    border-radius: 5px 5px 5px 5px;
}
.aboutarticle2flip {
    float: left;
    padding: 20px;
    margin-right: 10px;
    width: 388px;
    background-image: url(../images/researchbackground.jpg);
}
/*/ GALLERY ////////////////////////////////////////////*/
.article4 {
    width: 960px;
    background-image: url(../images/galleryback.png);
    background-color: #FFF;
    border-radius: 5px 5px 5px 5px;
}
.gallery_img_holder {
    width: 225px;
    float: left;
    margin-right: 5px;
    border-radius: 5px 5px 5px 5px;
    overflow: hidden;
    background-color: #FFF;
    margin-top: 20px;
}
.gallery_img_holder p {
    margin: 10px;
    margin-top: 5px;
    font-size: 14px;
    font-style: italic;
    color: #cfc2ee;
    text-shadow: 0.5px 0.5px 0.5px #000;
}
.gallery_end_row {
    margin-right: 0;
}
/*/ PASSED NEPTUNE ////////////////////////////////////////////*/
.dwarfplanet_img {
    width: 276px;
    height: 256px;
    float: left;
    margin-right: 5px;
    border-radius: 5px 5px 5px 5px;
    background-image: none;
    overflow: hidden;
    background-color: #FFF;
    margin-bottom: 7px;
}
.dwarfplanet_img2 {
    width: 276px;
    height: 256px;
    float: left;
    margin-right: 0;
    border-radius: 5px 5px 5px 5px;
    background-image: none;
    overflow: hidden;
    background-color: #FFF;
}
.dwarf_pic {
    margin: -5px;
}
.dwarfarticle {
    float: left;
    padding: 20px;
    margin-right: 15px;
    width: 388px;
    background-image: url(../images/researchbackground.jpg);
}
/*/ PLANETS ////////////////////////////////////////////*/
.content_box {
    width: 100%;
    overflow: auto;
    background-image: url(../images/galleryback.png);
    background-color: #FFF;
    border-radius: 5px 5px 5px 5px;
    padding-left: 20px;
    display: none;
}
.p_planet {
    line-height: 20px;
    color: #FFF;
    font-size: 12px;
}
.planet_image {
    float: left;
    padding: 20px;
    background-color: #FFF;
    background-image: none;
    width: 562px;
    height: 520px;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: -20px;
    margin-right: 0;
    border-radius: 5px 5px 5px 5px;
}