body{
	font-size:14px;
	color:#eee;
	font-family: "Roboto", Tahoma, Arial, sans-serif;
    background-color: #fff;
	margin: 0;
}
a {
    text-decoration: none;
}
dd a, dd a:visited, dd a:hover, dd a:active, dd a strong {
	color:#0973B9;
}

#page{
	width:100%;
	margin:0px auto;
}

#headingSection{
	background: url('img/banner.png') #0873B7 no-repeat top right;
	padding:30px 10px 30px 20px;
	position:relative;
	border-bottom:none;
    height: 83px;
}

    #headingSection .tablet-icon {
        max-width: 200px;
        position: absolute;
        right: 20px;
        top: 20px;
    }

#faqSection{
	background-color: #fff;
	padding:0;
	border:1px solid white;
	text-shadow:1px 1px 0 white;
}
    #faqSection h1.section-title{
	    color: #353535;
        font-size: 30px;
        font-weight: normal;
        margin: 10px 0 0 10px;
    }

    #faqSection h3.section-description{
	    color: #353535;
        font-size: 16px;
        font-weight: normal;
        margin: 10px 0 15px 10px;
    }

h1{
	color:#fff;
	font-weight:normal;
    font-size: 34px;
    font-weight: normal;
    margin: 10px 0;
}

/* The expand / collapse button */

a.button{
	background:url('img/buttons.png') no-repeat;
	width:80px;
	height:38px;
	position:absolute;
	right:50px;
	top:45px;
	text-indent:-9999px;
	overflow:hidden;
	border:none !important;
}

a.button.expand:hover{ background-position:0 -38px;}
a.button.collapse{ background-position:0 -76px;}
a.button.collapse:hover{ background-position:0 bottom;}

/* Definition Lists */
dt{
	color:#0973B9;
	font-size:16px;
	padding:14px 20px 14px 10px;
	position:relative;
	cursor:pointer;
    border-top: 1px solid #edecec;
}
    dt.last {
        border-bottom: 1px solid #edecec;
    }

    dt.opened{ border-bottom: none;}

    dt .icon{
	    background:url('img/arr_right.png') no-repeat;
	    height:16px;
        width: 16px;
	    right:0;
	    position:absolute;
	    top:calc(50% - 8px);
    }

    dt.opened .icon{ background:url('img/arr_bottom.png') no-repeat; right:5px; }

dd{
	font-size:16px;
	color:#000;
	line-height:1.5;
	display:none;
    padding: 0 10px 0 10px;
    margin: 0;
}
    dd.last {
        border-bottom: 1px solid #edecec;
    }

    dd img{
	    text-align: center;
	    max-width: 90%;
	    margin: 5px 0;
    }

    dd .answer {
        background-color: #f3f3f3;
        padding: 10px;
        margin-bottom: 20px;
    }

    dd ul {
        padding-left: 20px !important;
    }

dd p {
    margin: 0;
}

p.createdBy{
	font-size:15px;
	font-weight:normal;
	margin:50px;
	text-align:center;
	text-shadow:none;
}

a.close-answer {
    background: url('img/arr_up.png') no-repeat center left;
    padding-left: 20px;
    float: right;
    cursor: pointer;
}

/*a, a:visited {
	text-decoration:none;
	outline:none;
	border-bottom:1px dotted #97cae6;
	color:#97cae6;
}*/

a:hover{
	border-bottom:1px dashed transparent;
}

@media (max-width:768px) {
    .tablet-icon {
        display: none;
	}
	h1 {
		font-size: 30px;
	}
}

@media (max-width:480px) {
	.tablet-icon {
        display: none;
	}
	h1 {
		font-size: 22px;
	}
    #faqSection h1.section-title {
        font-size: 22px;
    }
}


/*********** Back to top style *************/

.cd-top {
  display: inline-block;
  height: 60px;
  width: 60px;
  position: fixed;
  bottom: 20px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url(img/back-to-top.png) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 20px;
  }
}
/*********** END: Back to to style *********/