/* CSS Document */

/* Body */

/* To clear the line space between cityscapes image and the div below */
.row {
    line-height: 0;
}

/* Cityscape image div */
#cityscape {
    background-color: #f0f0f0;
}

/* Footer div, includes trick to get left- and right-side heights the same */
#ft {
    background-color: #D7A900;
    width: 1000px;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
}
  
/* Footer left-side*/
#ft1 {
    float: left;
    width: 300px;
    background-color: #D7A900;
}
  
/* Quick Link, turn clicked outline off */
a {
  outline: 0;
}
    
/* Quick Line ul box style */
#ft1 ul {
    list-style-type: none;
    margin-left: 30px;
    padding-right: 10px;
    padding-left: 0px;
    padding-bottom:  15px;
    border-right-color: #000;
    border-right-width: 2px;
    border-right-style: dotted;
}
    
/* Quick Link link list style */
#ft1 ul li a {
    display: block;
    text-align: right;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    font-style: normal;
    font-variant: normal;
    padding-bottom: 3px;
    padding-top: 2px;
    padding-right: 15px;
    margin-left:  15px;
}
   
/* Quick Link link list hover style */
#ft1 ul a:hover {
    color: #fff;
    border-left-style: solid;
    border-left-color: #fff;
    border-left-width: 2px;
    border-right-style: solid;
    border-right-color: #fff;
    border-right-width: 2px;
}

/* Footer right-side */
#ft2 {
    width: 700px;
    padding-bottom: 20px;
    float: left;
    background-color: #D7A900;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

/* Quick Link list */
#qlk {
    padding-bottom: 10px;
    text-align: right;
    padding-right:  15px;
}

/* Quick Link font */
qlk {
    font-weight: 600;
    color: #000;
}
space {
    color: #D7A900;
}

   
/* Copyright text */
ft2p {
    color: #333;
    font-size: 11px;
}