/**, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
body, html { font-size: 100%; padding: 0; margin: 0;}*/


.grid {
	max-width:100%/* 69em*/;
	list-style: none;
	/* margin: 30px auto; */
	margin: 30px auto 30px 5px;
	padding: 0;
	position: relative; 
	perspective-origin: 50% 7327.5px;
}

.grid li {
	display: block;
	float: left;
	padding: 5px;
	width:240px !important;
	opacity: 1;	
	z-index: 100;
}
.grid li:hover .view-more-follow {
	display:block !important;
}

.collections-col { 
	float:left; 
	width:100%;  
	position:relative;
	-webkit-box-shadow: 0 1px 1px 0 #DDDDDD;
	-moz-box-shadow: 0 1px 1px 0 #DDDDDD;
	box-shadow: 0 1px 1px 0 #DDDDDD;
}
.collections-col:hover .DeleteIconEv, .collections-col:hover .collections-col-top-ops{
	display:block;
}
.collections-col-pic { width:100%; float:left; text-align:center; margin-bottom:20px;}
.collections-col-title { width:212px; padding:0 7px; display:table-cell; vertical-align:bottom; position:relative;}
.color-col,
.collections-col-title h4 { vertical-align:bottom; display:table-cell;}
.collections-col-title h4 { font-size:20px; color:#3a3a3a; line-height:20px;  margin:0; padding-left:10px; }
.full { width:100%; float:left;}
.collections-col-time { font-size:12px; color:#a4a3a3; padding:15px 0; min-width:120px; border-bottom:#ededed solid 1px; clear:left; float:left; margin:0 7px;}
.collections-article-col { padding:0 7px; font-size:12px; text-align:left;line-height:20px;}
.collections-article-col p {  text-align:left; margin:12px 0;word-wrap: break-word;}
.collections-nav { font-size:12px; line-height:16px; color:#3a3a3a; padding: 0 0 12px; clear:left; margin:0 7px;}
.collections-nav div { float:left;height:20px; vertical-align:middle; padding-right:15px; }
.collections-nav div img { float:left; margin-right:5px;  }
.view-more { float:left; font-size:11px; line-height:14px; color:#3a3a3a; margin:12px 7px;}
#cdawrap { display:none;}
.coll-view-more{
	border-top: none;
	clear: left;
	float: left;
	margin: 12px 7px 0;
	min-width: 120px;
	padding: 0;
	width: 226px;
}
.coll-view-more-brdr{
	background:#EDEDED;
	float: left;
	width: 120px;
	height: 1px;
}
.coll-view-more-links{
	float: left;
	width: 100%;
}
.view-more-follow{
	float:right;
	background:#5e7ba7 !important;
	color: #FFFFFF !important;
    font-size: 18px !important;
    height: 20px;
    line-height: 20px;
    padding: 0 8px !important;
	margin-top: 10px;
	display: none !important;
}
.collections-nav-peace{
	float:right !important;
	padding-right:0 !important;
	padding-left: 15px;
}


.grid li.shown,
.no-js .grid li,
.no-cssanimations .grid li {
	opacity: 1;
}

.grid li a,
.grid li img {
	outline: none;
	border: none;
	display: block;
	max-width: 100%;
}

/* Effect 1: opacity */
.grid.effect-1 li.animate {
	-webkit-animation: fadeIn 0.65s ease forwards;
	animation: fadeIn 0.65s ease forwards;
}

@-webkit-keyframes fadeIn {
	0% { }
	100% { opacity: 1; }
}

@keyframes fadeIn {
	0% { }
	100% { opacity: 1; }
}

/* Effect 2: Move Up */
.grid.effect-2 li.animate {
	-webkit-transform: translateY(200px);
	transform: translateY(200px);
	-webkit-animation: moveUp 0.65s ease forwards;
	animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
	0% { }
	100% { -webkit-transform: translateY(0); opacity: 1; }
}

@keyframes moveUp {
	0% { }
	100% { -webkit-transform: translateY(0); transform: translateY(0); opacity: 1; }
}

/* Effect 3: Scale up */
.grid.effect-3 li.animate {
	-webkit-transform: scale(0.6);
	transform: scale(0.6);
	-webkit-animation: scaleUp 0.65s ease-in-out forwards;
	animation: scaleUp 0.65s ease-in-out forwards;
}

@-webkit-keyframes scaleUp {
	0% { }
	100% { -webkit-transform: scale(1); opacity: 1; }
}

@keyframes scaleUp {
	0% { }
	100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

/* Effect 4: fall perspective */
.grid.effect-4 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-4 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
	transform: translateZ(400px) translateY(300px) rotateX(-90deg);
	-webkit-animation: fallPerspective .8s ease-in-out forwards;
	animation: fallPerspective .8s ease-in-out forwards;
}

@-webkit-keyframes fallPerspective {
	0% { }
	100% { -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
}

@keyframes fallPerspective {
	0% { }
	100% { -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg); transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
}

/* Effect 5: fly (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-5 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-5 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 50% 50% -300px;
	transform-origin: 50% 50% -300px;
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
	-webkit-animation: fly .8s ease-in-out forwards;
	animation: fly .8s ease-in-out forwards;
}

@-webkit-keyframes fly {
	0% { }
	100% { -webkit-transform: rotateX(0deg); opacity: 1; }
}

@keyframes fly {
	0% { }
	100% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); opacity: 1; }
}

/* Effect 6: flip (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-6 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-6 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	-webkit-transform: rotateX(-80deg);
	transform: rotateX(-80deg);
	-webkit-animation: flip .8s ease-in-out forwards;
	animation: flip .8s ease-in-out forwards;
}

@-webkit-keyframes flip {
	0% { }
	100% { -webkit-transform: rotateX(0deg); opacity: 1; }
}

@keyframes flip {
	0% { }
	100% { -webkit-transform: rotateX(0deg); transform: rotateX(0deg); opacity: 1; }
}

/* Effect 7: helix (based on http://lab.hakim.se/scroll-effects/ by @hakimel) */
.grid.effect-7 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-7 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
	-webkit-animation: helix .8s ease-in-out forwards;
	animation: helix .8s ease-in-out forwards;
}

@-webkit-keyframes helix {
	0% { }
	100% { -webkit-transform: rotateY(0deg); opacity: 1; }
}

@keyframes helix {
	0% { }
	100% { -webkit-transform: rotateY(0deg); transform: rotateY(0deg); opacity: 1; }
}

/* Effect 8:  */
.grid.effect-8 {
	-webkit-perspective: 1300px;
	perspective: 1300px;
}

.grid.effect-8 li.animate {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: scale(0.4);
	transform: scale(0.4);
	-webkit-animation: popUp .8s ease-in forwards;
	animation: popUp .8s ease-in forwards;
}

@-webkit-keyframes popUp {
	0% { }
	70% { -webkit-transform: scale(1.1); opacity: .8; -webkit-animation-timing-function: ease-out; }
	100% { -webkit-transform: scale(1); opacity: 1; }
}

@keyframes popUp {
	0% { }
	70% { -webkit-transform: scale(1.1); transform: scale(1.1); opacity: .8; -webkit-animation-timing-function: ease-out; animation-timing-function: ease-out; }
	100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

@media screen and (max-width: 900px) {
	.grid li {
		width: 50%;
	}
}

@media screen and (max-width: 400px) {
	.grid li {
		width: 100%;
	}
}

.collections-col-title h4 a{ 
	color:#191B1D; 
}
.collections-col-title h4 a:hover{ 
	color:#6e6e6e; 
}
.collections-col-title:hover .the_sqr_wide_popup{
	display:block;
}
.collections-col-top-ops{
	display: none;
    position: absolute;
    right: -1px;
    top: -1px;
    z-index: 50;
}
.collections-col-top-ops-inner{
	position:relative;
}
.collections-col-top-ops-inner .editsub ul li{
	left: inherit !important;
    position: inherit !important;
    top: inherit !important;
	opacity: 1 !important;
    padding:0 0 8px !important;
    width: 100% !important;	
}
.collections-col-top-ops-inner .editsub{
	background:none !important;
	padding-top:0 !important;
	left: -61px;
    top: 36px;
}
.collections-col-title .VisitUser a{
	display: inherit !important;
}
.defaltsubmenu{ display:none; }