/********************demopage.css**********************/
	#mygrid {
		height: 460px;
		display: block;
		width: 100%;
	}
	.dg-demo-shell {
		width: 100%;
		margin: 0px auto 6px auto;
		position: relative;
		height: 460px;
		overflow: hidden;
	}
	.dg-demo-src {
		display: none;
	}
	.dg-demo-center-wrap {
		display: block;
		position: relative;
		z-index: 0;
		margin: 0 auto;
		width: 100%;
		height: 460px;
		box-sizing: border-box;
		text-align: center;
	}
	.grid-description {
		position: absolute;
		right: 0;
		top: 0;
		width: 230px;
		margin-left: 20px;
		background: #333;
		border-radius: 5px;
		color: white;
		font: 11px/18px helvetica, tahoma, sans-serif;
		padding: 20px 15px;
		height: 460px;
		box-sizing: border-box;
	}
	.grid-description h1 {
		margin-bottom: 20px;
		font-size: 16px;
		text-align: left;
		text-shadow: 1px 2px 0px #000;
	}
	.grid-description ul {
		list-style: none;
		text-align: left;
	}
	.grid-description ul li {
		margin: 0 0 5px 0;
		text-align: left;
		position: relative;
		color: #aeaeae;
	}
	.grid-description ul li span {
		position: absolute;
		left: 50%;
		top: 0;
		font-weight: bold;
		margin-left: 20px;
		color: white;
		text-shadow: 1px 2px 0px #000;
	}
	.dg-demo-arrows-wrap {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
	}
	.dg-demo-left-arrow, .dg-demo-right-arrow {
		display: block;
		position: absolute;
		left: 10%;
		top: 50%;
		margin-top: -80px;
		margin-left: -23px;
		width: 47px;
		height: 78px;
		background: url('../img/demo/arrows.png') -47px 0;
		cursor: pointer;
		opacity: 0.5;
	}
	.dg-demo-right-arrow {
		left: auto;
		right: 10%;
		margin-left: auto;
		margin-right: -23px;
		background-position: 0 0;
	}
	.dg-demo-left-arrow:hover, .dg-demo-right-arrow:hover {
		opacity: 0.75;
	}
	.dg-demo-left-arrow:active, .dg-demo-right-arrow:active {
		opacity: 1;
	}

	/* Ticker */

	.grid-ticker {
		width: 100%;
		height: 20px;
		position: absolute;
		left: 0;
		bottom: -60px;
		text-align: center;
	}
	.ticker {
		display: inline-block;
		width: 6px;
		height: 6px;
		background: #000;
		opacity: 0.1;
		border-radius: 6px;
		transition: opacity 0.5s;
		-webkit-transition: opacity 0.5s;
		-moz-transition: opacity 0.5s;
	}
	.ticker.active {
		opacity: 0.3;
	}
/********************end demopage.css*****************/

/********************dynamic.grid.css*****************/
	.dg-wrap {
		width: 600px;
		height: 460px;
		position: relative;
		padding: 0;
		overflow: hidden;
	}
	.dg-column-wrap {
		display: block;
		margin: 0;
		padding: 0;
		position: absolute;
		left: 0;
		top: 0;
		overflow: hidden;
	}
	.dg-cell-wrap {
		display: block;
		position: relative;
		margin: 0;
		padding: 0;
		overflow: hidden;
	}
	.dg-main-content-inner-wrap {
		display: block;
		margin: 0;
		padding: 0;
		overflow: hidden;
		position: relative;
		border: 2px solid #fff;
	}
	.dg-image {
		display: block;
		margin: 0;
		padding: 0;
	}

	/* Content General Styles */

	.dg-lightbox-link {
		position: absolute;
		left: 0;
		top: 0;
		z-index: 99;
		display: block;
		width: 100%;
		height: 100%;
	}
	.dg-add-content-wrap {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 2;
		background: #000;
		box-sizing: border-box;
		padding: 10px;
		overflow: hidden;
		text-align: left;
		
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
		filter: alpha(opacity=80);
		-moz-opacity:0.8;
		-khtml-opacity: 0.8;
		opacity: 0.8;
	}
	.dg-add-content-wrap .dg-image-title {
		font: 14px/18px helvetica, tahoma, sans-serif;
		color: white;
	}
	.dg-add-content-wrap .dg-image-description {
		font: 10px/18px helvetica, tahoma, sans-serif;
		color: #aeaeae;
	}

	.dg-image-link {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 99;
	}
	.dg-image-link a {
		display: block;
		width: 100%;
		height: 100%;
	}

	/* Animations */

	.dg-add-content-wrap {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
		filter: alpha(opacity=0);
		-moz-opacity:0;
		-khtml-opacity: 0;
		opacity: 0;
		-webkit-transform: scale(1.35);
		-webkit-transition: -webkit-transform 0.25s ease-out, opacity 0.25s ease-out;
		-moz-transform: scale(1.35);
		-moz-transition: -moz-transform 0.25s ease-out, opacity 0.25s ease-out;
		transform: scale(1.35);
		transition: transform 0.25s ease-out, opacity 0.25s ease-out;
	}
	.dg-hover .dg-add-content-wrap {
		-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
		filter: alpha(opacity=80);
		-moz-opacity:0.8;
		-khtml-opacity: 0.8;
		opacity: 0.8;
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		transform: scale(1);
	}

	/* Title Mode Styles */

	.dg-cell-wrap.dg-title-mode .dg-add-content-wrap {
		/*box-sizing: content-box;*/
		text-align: center;
		display: table;
	}

	.dg-cell-wrap.dg-title-mode .dg-add-content-wrap .dg-image-title {
		font-size: 18px;
		line-height: 24px;
		display: table-cell; 
		vertical-align: middle;
	}

	/* No Content Mode Styles */

	.dg-cell-wrap.dg-no-content .dg-add-content-wrap {
		display: none;
	}

	/* LIGHTBOX */

	/* line 6, ../sass/lightbox.sass */
	#lightboxOverlay {
	  position: absolute;
	  top: 0;
	  left: 0;
	  z-index: 9999;
	  background-color: black;
	  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=85);
	  opacity: 0.85;
	  display: none;
	}

	/* line 15, ../sass/lightbox.sass */
	#lightbox {
	  position: absolute;
	  left: 0;
	  width: 100%;
	  z-index: 10000;
	  text-align: center;
	  line-height: 0;
	  font-family: "lucida grande", tahoma, verdana, arial, sans-serif;
	  font-weight: normal;
	}
	/* line 24, ../sass/lightbox.sass */
	#lightbox img {
	  width: auto;
	  height: auto;
	}
	/* line 27, ../sass/lightbox.sass */
	#lightbox a img {
	  border: none;
	}

	/* line 30, ../sass/lightbox.sass */
	.lb-outerContainer {
	  position: relative;
	  background-color: white;
	  *zoom: 1;
	  width: 250px;
	  height: 250px;
	  margin: 0 auto;
	  -webkit-border-radius: 4px;
	  -moz-border-radius: 4px;
	  -ms-border-radius: 4px;
	  -o-border-radius: 4px;
	  border-radius: 4px;
	}
	/* line 38, ../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
	.lb-outerContainer:after {
	  content: "";
	  display: table;
	  clear: both;
	}

	/* line 39, ../sass/lightbox.sass */
	.lb-container {
	  padding: 0;
	}

	/* line 42, ../sass/lightbox.sass */
	.lb-loader {
	  position: absolute;
	  top: 40%;
	  left: 0%;
	  height: 25%;
	  width: 100%;
	  text-align: center;
	  line-height: 0;
	}

	/* line 51, ../sass/lightbox.sass */
	.lb-nav {
	  position: absolute;
	  top: 0;
	  left: 0;
	  height: 100%;
	  width: 100%;
	  z-index: 10;
	}

	/* line 59, ../sass/lightbox.sass */
	.lb-container > .nav {
	  left: 0;
	}

	/* line 62, ../sass/lightbox.sass */
	.lb-nav a {
	  outline: none;
	}

	/* line 65, ../sass/lightbox.sass */
	.lb-prev, .lb-next {
	  width: 49%;
	  height: 100%;
	  background-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
	  /* Trick IE into showing hover */
	  display: block;
	}

	/* line 72, ../sass/lightbox.sass */
	.lb-prev {
	  left: 0;
	  float: left;
	}

	/* line 76, ../sass/lightbox.sass */
	.lb-next {
	  right: 0;
	  float: right;
	}

	/* line 81, ../sass/lightbox.sass */
	.lb-prev:hover {
	  background: url(./prev.png) left 48% no-repeat;
	}

	/* line 85, ../sass/lightbox.sass */
	.lb-next:hover {
	  background: url(./next.png) right 48% no-repeat;
	}

	/* line 88, ../sass/lightbox.sass */
	.lb-dataContainer {
	  margin: 0 auto;
	  padding-top: 5px;
	  *zoom: 1;
	  width: 100%;
	  -moz-border-radius-bottomleft: 4px;
	  -webkit-border-bottom-left-radius: 4px;
	  -ms-border-bottom-left-radius: 4px;
	  -o-border-bottom-left-radius: 4px;
	  border-bottom-left-radius: 4px;
	  -moz-border-radius-bottomright: 4px;
	  -webkit-border-bottom-right-radius: 4px;
	  -ms-border-bottom-right-radius: 4px;
	  -o-border-bottom-right-radius: 4px;
	  border-bottom-right-radius: 4px;
	}
	/* line 38, ../../../../.rvm/gems/ruby-1.9.2-p290/gems/compass-0.12.1/frameworks/compass/stylesheets/compass/utilities/general/_clearfix.scss */
	.lb-dataContainer:after {
	  content: "";
	  display: table;
	  clear: both;
	}

	/* line 95, ../sass/lightbox.sass */
	.lb-data {
	  padding: 0 10px;
	  color: #bbbbbb;
	}
	/* line 98, ../sass/lightbox.sass */
	.lb-data .lb-details {
	  width: 85%;
	  float: left;
	  text-align: left;
	  line-height: 1.1em;
	}
	/* line 103, ../sass/lightbox.sass */
	.lb-data .lb-caption {
	  font-size: 13px;
	  font-weight: bold;
	  line-height: 1em;
	}
	/* line 107, ../sass/lightbox.sass */
	.lb-data .lb-number {
	  display: block;
	  clear: left;
	  padding-bottom: 1em;
	  font-size: 11px;
	}
	/* line 112, ../sass/lightbox.sass */
	.lb-data .lb-close {
	  width: 35px;
	  float: right;
	  padding-bottom: 0.7em;
	  outline: none;
	}
	/* line 117, ../sass/lightbox.sass */
	.lb-data .lb-close:hover {
	  cursor: pointer;
	}
/*******************end dynamic.grid.css**************/
.demo-container {
	height: 400px;
}

.dg-demo-shell {
	overflow: visible;
}

.demo-container * {
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.dg-demo-left-arrow {
	left: -100px;
}

.dg-demo-right-arrow {
	right: -100px;
}