/* CSS Document */
/*  ----------------------------------
	back to top
	----------------------------------  */
#backToTop{
	position: fixed;
    right: 20px;
    bottom: 20px;
}
/*  ----------------------------------
	Navbar
	----------------------------------  */
#top-logo{
	padding-top: 15px;
}

/*  ----------------------------------
	Back to top btn
	----------------------------------  */
.btt {
    display: inline-block;
    width: 60px;
    height: 60px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: green url(../images/misc/back_to_top_arrow.png)no-repeat 43%;
    background-size: 40px;
    text-indent: -9999px;
    border-radius: 30px;
    opacity: .5;
    transition: 2s;
}
/*  ----------------------------------
	Background
	----------------------------------  */
body{
	background-color: #eeeeee;
}
/*  ----------------------------------
	Home Body
	----------------------------------  */
.myBody{
	border-style: solid;
	border-width: 1px;
	border-color: #C7C7C7;
	border-radius: 5px;
	margin-top: 20px;
	background:#ffffff;
}

/*  ----------------------------------
	Fonts
	----------------------------------  */
html {
  font-size: 1rem;
}

/*  ----------------------------------
	Table border
	----------------------------------  */
.tableBorderTD{
	border: solid 1px #ddd;
}

.tableBorderTH{
	border: solid 3px #ddd;
}

.justifyXView{
	overflow-x: auto;
	display: block;
}