/* Default CSS for post pages */
/* Import Google Fonts. */
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
@import url('https://fonts.googleapis.com/css?family=Great+Vibes');

/* Main post/page body properties. */

* {
    box-sizing: border-box;
}

/* Columns for responsive page. */

.row::after {
    content: "";
    clear: both;
    display: table;
}
[class*="col-"] {
    float: left;
    padding: 15px;
}
body { 
    margin: 0;
    color: #262626;
    background-color: #333;
    font-family: 'Source Sans Pro'; 
    text-align: justify;
}

.headerdiv {
    margin: auto; 
    max-width: 1200px;
    background-color: #333;
    padding: 0px;
}

.bodydiv {
    margin: auto; 
    max-width: 1200px;
    background-color: White;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Post/page link properties. */
a { 
    color: Blue;
    text-decoration: none;
    font-weight: normal;
}

a:visited {
    color: Black;
}

a:hover {
    color: Blue;
    text-decoration: none;
    /* text-shadow: 1px 1px Black; */
}


/* Heading tag properties. */
h1 { 
    color: DarkSlateGrey;
    font-family: 'Source Sans Pro';
    /* text-shadow: 1px 1px 1px Black; */
}


h2 { 
    color: DarkSlateGrey;
    font-family: 'Source Sans Pro';
    /* text-shadow: 1px 1px 1px Black; */
}


h3 { 
    color: DarkSlateGrey;
    font-family: 'Source Sans Pro';
    /* text-shadow: 1px 1px 1px Black; */
}

h4 { 
    color: DarkSlateGrey;
    font-family: 'Source Sans Pro';
   /*  text-shadow: 1px 1px 1px Black; */
}

h5 { 
    color: DarkSlateGrey;
    font-family: 'Source Sans Pro';
  /*  text-shadow: 1px 1px 1px Black; */
}

h6 { 
    color: DarkSlateGrey;
    font-family: 'Source Sans Pro';
  /*   text-shadow: 1px 1px 1px Black; */
}



/* Footer properties. */
.footer {
    display: block;
    overflow: hidden;
    width: 100%;
    font-family: 'Source Sans Pro';
    font-size: .9em;
    text-transform: uppercase;
    text-align: center;
    padding: 0;
    margin: auto;
    background-color: #333;
    color: Silver;
   /*  text-shadow: 1px 1px 1px Black;
    box-shadow: 1px 1px 5px Black/*, 0 0 2px DarkViolet; */
}

ul {
  color: Black;
  list-style-type: square;
}

li {
  text-decoration: shadow;
}

ul.topnav {
  list-style-type: none;
  font-size: .9em;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #333; /* For browsers that do not support gradients */
  background-image: linear-gradient(to left, DarkSlateGrey, #333); /* Standard syntax (must be last) */
}

ul.topnav li {float: right;}

ul.topnav li a {
  display: block;
  color: Silver;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul.topnav li a:hover:not(.active) {background-color: SlateGrey; color: White;}

ul.topnav li a.active {background-color: SlateGrey; color: White;}

ul.topnav li.right {
    float: right;
}

@media screen and (max-width: 600px) {
  ul.topnav li.right {float: none;}
  ul.topnav li {float: none;}
}

/* Image properties. */
.bodyimg {
    display: block;
    margin: auto;
    max-width: 100%;
    padding: 3px;
    height: auto;
    border: 1px solid Blue;
    border-radius: 10px;
    background: none;
}


.imgrightfloat {
    margin: 0px 0px 0px 10px;
    max-width: 100%;
    padding: 5px;
    height: auto;
    border: 1px solid Blue;
    border-radius: 10px;
    background: Black;
    float: right;
}

.imgfloatleft {
    margin: 0px 10px 0px 0px;
    max-width: 100%;
    padding: 5px;
    height: auto;
    border: 1px solid Blue;
    border-radius: 10px;
    background: Black;
    float: left;
}

/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}
@media only screen and (min-width: 600px) {
    /* For tablets: */
    .col-m-1 {width: 8.33%;}
    .col-m-2 {width: 16.66%;}
    .col-m-3 {width: 25%;}
    .col-m-4 {width: 33.33%;}
    .col-m-5 {width: 41.66%;}
    .col-m-6 {width: 50%;}
    .col-m-7 {width: 58.33%;}
    .col-m-8 {width: 66.66%;}
    .col-m-9 {width: 75%;}
    .col-m-10 {width: 83.33%;}
    .col-m-11 {width: 91.66%;}
    .col-m-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
    .bodydiv {margin: auto; max-width: 1200px;}
}