﻿/* #### Mobile Phones Portrait #### */
@media screen and (max-device-width: 480px) and (orientation: portrait) {
  /* some CSS here */
}

/* #### Mobile Phones Landscape #### */
@media screen and (max-device-width: 640px) and (orientation: landscape) {
  /* some CSS here */
}

/* #### Mobile Phones Portrait or Landscape #### */
@media screen and (max-device-width: 640px) {
  /* some CSS here */
}

/* #### iPhone 4+ Portrait or Landscape #### */
@media screen and (min-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
  /* some CSS here */
}

/* #### iPhone 5 Portrait or Landscape #### */
@media (device-height: 568px) and (device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) {
  /* some CSS here */
}

/* #### iPhone 6 and 6 plus Portrait or Landscape #### */
@media (min-device-height: 667px) and (min-device-width: 375px) and (-webkit-min-device-pixel-ratio: 3) {
  /* some CSS here */
}

/* #### Tablets Portrait or Landscape #### */
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* some CSS here */
}

/* #### Desktops #### */
@media screen and (min-width: 1024px) {
  /* some CSS here */
  .control-label {
    font-weight: bold;
    font-size: 16px;
    /*text-align: right;*/
    padding-right: 10px;
  }
}

body {
  background-color: #f7f9fa;
  margin:5px;
}



#menu {
  width: 100%;
  float: left;
  color: #1f628f;
  text-shadow: 1px 1px #ff0000;
}

#menu {
  border-bottom: 1px solid #4a80a8;
}

.container {
  -webkit-box-shadow: 0px 23px 110px -3px rgba(198,212,221,1);
  -moz-box-shadow: 0px 23px 110px -3px rgba(198,212,221,1);
  box-shadow: 0px 23px 110px -3px rgba(198,212,221,1);
  background: #fff;
}

.menu-menu-container ul {
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-table;
  z-index: 200;
  margin: 3px 0;
}

  .menu-menu-container ul:after {
    clear: both;
    display: block;
  }

  .menu-menu-container ul li:first-child {
    margin: 0 3px 0 0;
  }


  .menu-menu-container ul li {
    margin: 0 3px;
    float: left;
    background-color: #fff;
  }

    .menu-menu-container ul li:hover {
      background: #def2ec;
    }

    .menu-menu-container ul li a {
      display: block;
      padding: 9px 15px;
      color: #1f628f;
      text-decoration: none;
    }

#logo {
  float: left;
  margin: 0 20px 20px 20px;
}

header h1 {
  margin-top: 20px;
  font-size: 2em;
  color: #4a80a8;
  font-weight: bold;
}
