* {
  box-sizing: border-box;
  list-style: none;
	margin: 0;
	padding: 0;
}


.column {
  float: left;
  padding: 20px;
  height: 500px;
}


.right {
  width: 30%;
}

.middle {
  width: 70%;
  background-color: rgba(0, 0, 0, .25);
  border-radius: 5px;
  border: 0px green solid;
}


.right .box {
  width: 100%;
  height: 100%;
  padding-left: 25px;
  border: 0px red solid;
  border-radius: 5px;
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, .25);
}

.middle .box {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
  background-color: rgba(0, 0, 0, .25);
 
}

.middle .box img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* Clear floats after the columns */
 .row:after {
  content: "";
  display: table;
  clear: both;
}


/* IMAGE VIEWER*/

.middle .box img {
	vertical-align: middle;
	max-width:100%;
	max-height: 460px;
}

.right .box img {
	vertical-align: middle;
	max-width:100%;
}							

.tabs ul{
	display: flex;
	background: #fbfbfb;
	border: 1px solid #dddddd;
	border-radius: 5px;
	margin-bottom: 10px;
}

.tabs ul li{
	width: 250px;
	padding: 3px;
	border-right: 1px solid #dddddd;
	text-align: center;
	color: #3b3b3b;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 3px;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
}

.tabs ul li:last-child{
	border-right: 0px;
}

.tabs ul li:before{
	content: "";
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #028f68;
	opacity: 0;
	transition: all 0.2s ease;
}

.tabs ul li:hover,
.tabs ul li.active{
	background: #e8f5f1;
	color: #028f68;
}

.tabs ul li:hover:before,
.tabs ul li.active:before{
	opacity: 1;
}

.content{
	background: #fbfbfb;
	border: 1px solid #dddddd;
	border-radius: 5px;
	padding: 20px;
}

.tab_wrap .title{
	font-size: 20px;
	margin-bottom: 15px;
	font-weight: 600;
}

.tab_wrap .tab_content p a{
	font-size: 14px;
	line-height: 22px;
	margin-bottom: 10px;
	display: list-item;                                            
    list-style-position: inside;
	list-style-type: circle;
	text-decoration: none;
}
.collapsible {
  background-color: #d8d8d8;
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: 1px solid white;
  border-radius: 3px;
  text-align: left;
  outline: none;
  font-size: 15px;
}
.collapsible2 {
  background-color: #e8f5f1;
  color: black;
  cursor: pointer;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 5px;
  width: 100%;
  border: 1px solid gray;
  border-radius: 3px;
  text-align: left;
  outline: none;
  font-size: 15px;
}
.collapsible2:hover {
  background-color: #c4e6db;
}

.collapsible:hover {
  background-color: #cbcbcb;
}

.projectcontent {
  padding: 25px 18px 25px 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.projectcontent1 {
  padding: 25px 18px 0px 18px;
  display: none;
  overflow: hidden;
  background-color: #f1f1f1;
}

.textbox {
	width: 100%;
	margin: 0px;
	padding: 0px;
	border: 1px soild black;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
	margin-right: 10 px;
}	
	
.cadL{
float: left;
width: 35%;
min-width: 450px;
}
.cadR{
float: left;
width: 65%;
}

.SULIL{
float: left;
width: 50%;
min-width: 650px;
}

.SULIR{
float: left;
width: 50%;
}

/* ----------------------------------------------------------------------------------------- */
                               /* MOBILE SCALING (Resources) */
/* ----------------------------------------------------------------------------------------- */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.wrapperT{
	width: 100%;
}
.tabs ul li{
	width: 100%;
}
.contain {
 padding: 25px 15px;
}
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.wrapperT{
	width: 100%;
}
.tabs ul li{
	width: 100%;
}
.contain {
 padding: 25px 25px;
}
} 
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
		.contain {
 padding: 25px 25px;
}
} 
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}

