@charset "utf-8";
/* CSS Document */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Verdana, Arial, Helvetica, sans-serif;
      font-size: 12px;
      color: #333;
      background-color: #fff;
    }

    a {
      color: #57626a;
      text-decoration: none;
    }

    a:hover {
      color: #000;
      text-decoration: underline;
    }

    #header {
      text-align: center;
      padding: 20px 0;
    }

    #menu {
      background: #57626a; /* url(../images/menu.jpg) no-repeat;*/
      background-size: cover;
	  height: 40px;
      line-height: 40px;
      text-transform: uppercase;
    }

    #menu ul {
      display: flex;
      justify-content: center;
      align-items: center;
      list-style: none;
      height: 100%;
    }

    #menu li {
      margin: 0 15px;
    }

    #menu li a {
      color: #eee;
      font-weight: 100;
      font-size: 14px;
      letter-spacing: -1px;
    }

    #main {
      display: flex;
      height: calc(100vh - 120px);
      overflow: hidden;
    }

    .left {
      width: 200px;
      padding: 15px;
      background-color: #f9f9f9;
      border-right: 1px solid #bbb;
      overflow-y: auto;
    }

    .left ul {
      padding-left: 20px;
      list-style: square;
      color: #57626a;
    }

    .left h2 {
      font-size: 14px;
      color: #666;
      font-weight: 600;
      margin-top: 20px;
    }

    #scrollable-content {
      flex: 1;
      overflow-y: auto;
      padding: 20px;
    }

    .right h1 {
      color: #FF4800;
      font-weight: 100;
    }
	
	  .right h2, .right h3 {
      color: #000000;
      font-weight: 100;
    }

    .right h1 { font-size: 20px; letter-spacing: -3px; margin-bottom: 15px; }
    .right h2 { font-size: 18px; letter-spacing: -1px; margin-top: 20px; }
    .right h3 { font-size: 16px; letter-spacing: -1px; margin-top: 20px; }

     
	.galleryheading {
  	color: #FF4800;
  	font-size: 18px; /* or any size you prefer */
  	font-family: Arial, Helvetica, sans-serif;
  	font-weight: 100;
  	text-align: center;
  	margin-top: 30px;
	}

    #galleryimage {
      border: double thick;
      background-color: #666;
      padding: 10px;
      text-align: center;
    }

    #gallerydescript {
      background-color: #CCCCCC;
      padding: 10px;
      margin-bottom: 20px;
    }

    #footer {
      background: #eee;
      border-top: 3px solid #57626a;
      text-align: center;
      font-size: 11px;
      color: #333;
      padding: 10px;
    }

    img {
      max-width: 100%;
      height: auto;
    }
