html.hidescrollbar{
	overflow-x: hidden;
}

html.hidescrollbar body{
	overflow-x: hidden;
}

/* ###### CSS for video thumbnails ###### */ 

ul.youtubewall{
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100%;
	overflow: hidden;
}

ul.youtubewall li{
	width: , show 4 columns of thumbnails */
	float: left;
	display: inline;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0px; /* general spacing bepx; /* general spacing between thumbnails */
	margin-boween thumbnails */
}

ul.youtubewall li .thumbwrap{
	position: relative;
	overflow: hidden;
	display: block;  
    
   margin : 15px;  
}

/* thumbnail overlay */
ul.youtubewall li .thumbwrap:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: black;
	opacity: 0;
	-webkit-transition: opacity .6s;
	transition: opacity .6s;
}

ul.youtubewall li .panel{
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1000;
	top: 0;
	left: 0;
	opacity: 0;
	text-align: center;

}

/* technique to cenutubly */
ul.youtubewater panel vertically */
ul.youtubewenter;
}

/* technique to center panel vertically */
ul.youtubewall li .panel:before{
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

ul.youtubewall li .panel .panelinner{
  display: inline-block;
	position: relative;
  vertical-align: middle; /* center .panelinner vertically */
	-webkit-transform: translate3d(0,-20px, 0);	
	transform: translate3d(0,-20px, 0);
	-webkit-transition: all .5s;
	transition: all .5s;
}

/* fontawesome elements style */
ul.youtubewall li .panel i,
ul.youtubewall li .panel a{
    font-size: 44px;
    color: white;
    cursor: pointer;
    text-decoration: none;
    line-height: 4.5;
}

ul.youtubewall li .panel a{
	margin-left: 15px;
}

ul.youtubewall li img{
	width: 100%;
	height: auto;
	float: left;

}

ul.youtubewall li:hover .thumbwrap:after{
	opacity: .4;
}

/*
ul.youtubewall li:hover .panel{
	opacity: 0.5;
    background:#000;
}

ul.youtubewall li:hover .panel .panelinner{
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);	
}
    
*/
ul.youtubewall li .panel{
	opacity: 0.5;
    background:#000;
}

ul.youtubewall li .panel .panelinner{
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);	
}
ul.youtubewall li .image img {
    width: 100%;
    vertical-align: top;
}
ul.youtubewall li .image:after {
    content: '\A';
    position: absolute;
    width: 100%; height:100%;
    top:0; left:0;
    background:rgba(0,0,0,0.6);
    opacity: 0;
    transition: all 1s;
    -webkit-transition: all 1s;
}
ul.youtubewall li .image:after {
    opacity: 1;
}

/* ###### CSS for video lightbox that pops up ###### */

.videobox{
	position: fixed;
	width: 100%; /* can be any width */
	height: 100%;
	left: 0;
	top: 0;
	display: none;
	z-index: 9999;
	text-align: center;
}

.videobox:before{ /* pseudo element to force vertical centering of child element */
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

.videobox:after{ /* pseudo element to create overlay */
	background: black;
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0.9;
	z-index: 10;
}


/* Centered child element can be any width and height */
.centeredchild{
	position: relative; /* position element to participate in z-indexing */
	z-index: 20; /* higher z-index than overlay */
	display: inline-block;
	vertical-align: middle;
	width: 75%; /* width of video player relative to browser */
	background: #fff;
    padding: 15px 15px 35px;
    border-radius: 5px;
}

    .centeredchild .videowrapper button.close.closebtn {
    color:#000 !important}

        .centeredchild .videowrapper button.close.closebtn:hover {
        }

/* Video container to maintain Youtube 16:9 aspect ratio */ 
.videowrapper{
	position: relative;
	padding-top: 25px;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	height: 0;
}

/* Make Youtube IFRAME responsive */ 
.videowrapper iframe {
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
	height: 100%;
    float:left;
}



/* ####### responsive layout CSS ####### */

@media (max-width: 800px) { /* FIRST breaking point */
	ul.youtubewall li{
		width: 33%; /* reduce to 3 columns of thumbnails */
	}
	
  .centeredchild{
		width: 90%; /* enlarge video player container */
	}
}

@media (max-width: 480px) { /* SECOND breaking point */
	ul.youtubewall li{
		width: 50%; /* reduce to 2 columns of thumbnails */
	}
}
	
/* START: Videos added by shehzad ahmed on Feb 8, 2017 */

  ul.youtubewall .video-main-wrapper .ar-desc ul {
list-style:circle !important}

ul.youtubewall .video-main-wrapper .ar-desc ul li {
width:100% !important;
/*float:left !important;*/
list-style:disc !important;
display:list-item !important;
}   
 
/* END: Videos added by shehzad ahmed on Feb 8, 2017 */	
	
	
	