* {
    box-sizing: border-box;
}
.row:after {
    content: "";
    clear: both;
    display: block;
}
[class*="col-"] {
    float: left;
    padding: 15px;
}
html {
  /*  font-family: "Lucida Sans", sans-serif; */
    font-family: 'Montserrat', sans-serif;
    max-width: 100%;
    overflow-x: hidden;
}
.header {
    background-image: url("img/head_bg.png");
    background-color: #336699;
    background-position: right;
    background-repeat: no-repeat;
    background-size: 800px auto;
    color: #ffffff;
    text-shadow: 0 2px 3px rgba(0,0,0,0.12), 0 2px 2px rgba(0,0,0,0.24);
    padding: 15px;
}
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu li {
    padding: 8px;
    margin-bottom: 7px;
    background-color :#DDD;
    color: #000000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu a {
    text-decoration: none;
}
.menu li.current {
    background-color :#405e7c;
    color: #ffffff;
}

.menu li:hover {
    background-color: #336699;
    color: #ffffff;
    cursor: default;
}
.aside {
    background-color: #d6e3eb;
    padding: 15px;
    color: #000000;
    text-align: Right;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.footer {
    background-color: #a3c5cf;
    color: #000000;
    text-align: center;
    font-size: 12px;
    padding: 15px;
}
.mugshot {
  float: right;
  height: 100px;
  width: auto;
  position: relative;
  top: -30px;
  right: -200px;
  animation-name: animated_div;
  animation-duration: 10.0s;
  animation-delay: 3s;
  animation-iteration-count: infinite; */
}
@keyframes animated_div
{
0%		{transform: rotate(0deg);   right:-200px;}
25%		{transform: rotate(20deg);  right:0;}
50%		{transform: rotate(-20deg); right:0;}
55%		{transform: rotate(20deg); right:0;}
70%		{transform: rotate(-20deg); right:0}
100%	{transform: rotate(0deg);   right:-200px;}
}

/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}
@media only screen and (min-width: 576px) {
    /* For tablets: */
    .col-m-12 {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%;}
}
