@import "../lib/animate.css/animate.min.css";
/******************************************************************
Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.
******************************************************************/
/******************************************************************
Mixins & Constants Stylesheet

This is where you can take advantage of LESS' great features: 
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques like box shadow and
border-radius.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more. 

******************************************************************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the 
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('../fonts/font-name.eot');
    	src: url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('../fonts/font-name.woff') format('woff'),
             url('../fonts/font-name.ttf') format('truetype'),
             url('../fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/*
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*/
/******************************************************************
Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
.mochi-gallery {
  /* all containers */

  /* outer & inner containers */

  /* inner container */

  /* data */

}
.mochi-gallery,
.mochi-gallery div {
  display: block;
}
.mochi-gallery,
.mochi-gallery > div {
  padding: 0;
  margin: 0;
  width: 100%;
  height: auto;
}
.mochi-gallery > div {
  /* subject */

}
.mochi-gallery > div [data-type="subject"] {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background: 50% 0 no-repeat;
  background-size: cover;
  display: block;
  width: 100%;
  height: auto;
  -webkit-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -o-animation-duration: 500ms;
  animation-duration: 500ms;
  background-color: transparent;
}
.mochi-gallery > div [data-type="subject"][data-unloaded="yes"] {
  background: 50% 50% no-repeat;
}
.mochi-gallery > div [data-type="counter"],
.mochi-gallery > div [data-type="nav"] {
  display: none;
  position: absolute;
  z-index: 10;
}
.mochi-gallery > div [data-type="counter"] {
  zoom: 1;
  cursor: default;
}
.mochi-gallery > div [data-type="counter"]:before,
.mochi-gallery > div [data-type="counter"]:after {
  content: "";
  display: table;
}
.mochi-gallery > div [data-type="counter"]:after {
  clear: both;
}
.mochi-gallery > div [data-type="counter"] em {
  font-style: normal;
}
.mochi-gallery > div [data-type="nav"] {
  cursor: pointer;
  background: 50% 50% no-repeat;
  margin: 0;
  border: none;
  padding: 0;
}
.mochi-gallery > div [data-type="heading"],
.mochi-gallery > div [data-type="caption"],
.mochi-gallery > div [data-type="content"] {
  display: none;
}
.mochi-gallery > ul {
  position: absolute;
  visibility: hidden;
  display: none;
}
/*
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
*/
.mochi-gallery > div {
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.mochi-gallery > div:hover [data-type="counter"] > div {
  background: rgba(0, 0, 0, 0.75);
}
.mochi-gallery > div:hover [data-type="nav"] {
  opacity: 0.66;
}
.mochi-gallery > div > div {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.mochi-gallery > div [data-type="subject"] {
  background-color: #f0f0f0;
  height: 360px;
}
.mochi-gallery > div [data-type="subject"][data-unloaded="yes"] {
  background-image: url(/wp-content/plugins/mochi-gallery/skin/default/ajax-loader.gif);
}
.mochi-gallery > div [data-type="counter"] > div,
.mochi-gallery > div [data-type="nav"] {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mochi-gallery > div [data-type="counter"] > div {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.25);
  display: inline-block;
  padding: 11px;
  color: white;
  font-size: 12px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 20px;
}
.mochi-gallery > div [data-type="counter"] > div em {
  font-weight: bold;
}
.mochi-gallery > div [data-type="nav"] {
  opacity: 0.33;
  margin-left: 13%;
  width: 80px;
  height: 80px;
}
.mochi-gallery > div [data-type="nav"]:hover {
  opacity: 1;
}
.mochi-gallery > div [data-type="nav"][data-dir="l"] {
  background-image: url(/wp-content/plugins/mochi-gallery/skin/default/prev.png);
}
.mochi-gallery > div [data-type="nav"][data-dir="r"] {
  background-image: url(/wp-content/plugins/mochi-gallery/skin/default/next.png);
  margin-left: 21%;
}
.mochi-gallery > div [data-type="heading"],
.mochi-gallery > div [data-type="caption"],
.mochi-gallery > div [data-type="content"] {
  padding: 5px 0;
}
.mochi-gallery > div [data-type="heading"] {
  font-size: 18px;
  font-family: "Arial Black", Gadget, sans-serif;
  font-weight: normal;
  color: #000000;
}
.mochi-gallery > div [data-type="caption"] {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}
.mochi-gallery > div [data-type="content"],
.mochi-gallery > div [data-type="content"] p {
  font-size: 12px;
  color: #000000;
  line-height: 1.5em;
}
/*
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
[][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][][]
*/
/*
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*/
@media only screen and (min-width: 481px) {
  /******************************************************************
  481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to 
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection. 
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.less styles.
  
  ******************************************************************/
}
/*
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
}
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1010px) {
  /******************************************************************
  Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop. 
  
  ******************************************************************/
}
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1025px) {
  /******************************************************************
  Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop. 
  
  ******************************************************************/
}
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop. 
  
  ******************************************************************/
}
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1050px) {
  /******************************************************************
  Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop. 
  
  ******************************************************************/
}
/*
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1072px) {
  /******************************************************************
  Desktop Stylsheet (1072px and up)
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop. 
  
  ******************************************************************/
}
/*
SLIGHTLY LARGER DESKTOP
This is the alightly above average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1140px) {
  /******************************************************************
  Slightly Larger Desktop Stylsheet
  
  This is the slightly larger desktop size. It's larger than an iPad so it will only
  be seen on the Desktop. 
  
  ******************************************************************/
}
/*
SLIGHTLY LARGER DESKTOP
This is the alightly above average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*/
@media only screen and (min-width: 1180px) {
  /******************************************************************
  Slightly Larger Desktop Stylsheet
  
  This is the slightly larger desktop size. It's larger than an iPad so it will only
  be seen on the Desktop. 
  
  ******************************************************************/
}
/*
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
}
/*
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  	
  	EXAMPLE 
  	Let's say you have an image and you need to make sure it looks ok
  	on retina screens. Let's say we have an icon which dimension are
  	24px x 24px. In your regular stylesheets, it would look something
  	like this:
  	
  	.icon {
  		width: 24px;
  		height: 24px;
  		background: url(img/test.png) no-repeat;
  	}
  	
  	For retina screens, we have to make some adjustments, so that image
  	doesn't look blurry. So, taking into account the image above and the
  	dimensions, this is what we would put in our retina stylesheet:
  	
  	.icon {
  		background: url(img/test@2x.png) no-repeat;
  		background-size: 24px 24px;
  	}
  	
  	So, you would create the same icon, but at double the resolution, meaning 
  	it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  	(this is pretty standard practice). Set the background image so it matches
  	the original dimensions and you are good to go. 
  	
  	*/
}
/*
iPHONE 5 MEDIA QUERY
Want to get fancy for no good reason? Knock yourself out.
*/
@media (device-height: 568px) and (-webkit-min-device-pixel-ratio: 2) {
  
}
/*
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't 
make sense to print.
*/
@media print {
  /******************************************************************
  Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
}
