@font-face {
  font-family: 'Icons';
  src: url("https://p1.q-static.com/quirky-fonts/icons.eot");
  src:
    url("https://p1.q-static.com/quirky-fonts/icons.eot?#iefix") format('embedded-opentype'),
    url("https://p1.q-static.com/quirky-fonts/icons.woff") format('woff'),
    url("https://p1.q-static.com/quirky-fonts/icons.ttf") format('truetype'),
    url("https://p1.q-static.com/quirky-fonts/icons.svg#icons") format('svg')
  ;
  font-weight: normal;
  font-style: normal;
}
@charset "UTF-8";
/*
Animate.css - http://daneden.me/animate
Licensed under the ☺ license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
body { /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
	-webkit-backface-visibility: hidden;
}
.animated {
	-webkit-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	     -o-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	   -moz-animation-fill-mode: both;
	     -o-animation-fill-mode: both;
	        animation-fill-mode: both;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	   -moz-animation-duration: 2s;
	     -o-animation-duration: 2s;
	        animation-duration: 2s;
}

@-webkit-keyframes flash {
	0%, 50%, 100% {opacity: 1;}	
	25%, 75% {opacity: 0;}
}

@-moz-keyframes flash {
	0%, 50%, 100% {opacity: 1;}	
	25%, 75% {opacity: 0;}
}

@-o-keyframes flash {
	0%, 50%, 100% {opacity: 1;}	
	25%, 75% {opacity: 0;}
}

@keyframes flash {
	0%, 50%, 100% {opacity: 1;}	
	25%, 75% {opacity: 0;}
}

.flash {
	-webkit-animation-name: flash;
	-moz-animation-name: flash;
	-o-animation-name: flash;
	animation-name: flash;
}
@-webkit-keyframes shake {
	0%, 100% {-webkit-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
}

@-moz-keyframes shake {
	0%, 100% {-moz-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
}

@-o-keyframes shake {
	0%, 100% {-o-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
}

@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
	20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.shake {
	-webkit-animation-name: shake;
	-moz-animation-name: shake;
	-o-animation-name: shake;
	animation-name: shake;
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
	40% {-webkit-transform: translateY(-30px);}
	60% {-webkit-transform: translateY(-15px);}
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-30px);}
	60% {-moz-transform: translateY(-15px);}
}

@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-30px);}
	60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

.bounce {
	-webkit-animation-name: bounce;
	-moz-animation-name: bounce;
	-o-animation-name: bounce;
	animation-name: bounce;
}
@-webkit-keyframes tada {
	0% {-webkit-transform: scale(1);}	
	10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);}
	30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);}
	40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);}
	100% {-webkit-transform: scale(1) rotate(0);}
}

@-moz-keyframes tada {
	0% {-moz-transform: scale(1);}	
	10%, 20% {-moz-transform: scale(0.9) rotate(-3deg);}
	30%, 50%, 70%, 90% {-moz-transform: scale(1.1) rotate(3deg);}
	40%, 60%, 80% {-moz-transform: scale(1.1) rotate(-3deg);}
	100% {-moz-transform: scale(1) rotate(0);}
}

@-o-keyframes tada {
	0% {-o-transform: scale(1);}	
	10%, 20% {-o-transform: scale(0.9) rotate(-3deg);}
	30%, 50%, 70%, 90% {-o-transform: scale(1.1) rotate(3deg);}
	40%, 60%, 80% {-o-transform: scale(1.1) rotate(-3deg);}
	100% {-o-transform: scale(1) rotate(0);}
}

@keyframes tada {
	0% {transform: scale(1);}	
	10%, 20% {transform: scale(0.9) rotate(-3deg);}
	30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);}
	40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);}
	100% {transform: scale(1) rotate(0);}
}

.tada {
	-webkit-animation-name: tada;
	-moz-animation-name: tada;
	-o-animation-name: tada;
	animation-name: tada;
}
@-webkit-keyframes swing {
	20%, 40%, 60%, 80%, 100% { -webkit-transform-origin: top center; }
	20% { -webkit-transform: rotate(15deg); }	
	40% { -webkit-transform: rotate(-10deg); }
	60% { -webkit-transform: rotate(5deg); }	
	80% { -webkit-transform: rotate(-5deg); }	
	100% { -webkit-transform: rotate(0deg); }
}

@-moz-keyframes swing {
	20% { -moz-transform: rotate(15deg); }	
	40% { -moz-transform: rotate(-10deg); }
	60% { -moz-transform: rotate(5deg); }	
	80% { -moz-transform: rotate(-5deg); }	
	100% { -moz-transform: rotate(0deg); }
}

@-o-keyframes swing {
	20% { -o-transform: rotate(15deg); }	
	40% { -o-transform: rotate(-10deg); }
	60% { -o-transform: rotate(5deg); }	
	80% { -o-transform: rotate(-5deg); }	
	100% { -o-transform: rotate(0deg); }
}

@keyframes swing {
	20% { transform: rotate(15deg); }	
	40% { transform: rotate(-10deg); }
	60% { transform: rotate(5deg); }	
	80% { transform: rotate(-5deg); }	
	100% { transform: rotate(0deg); }
}

.swing {
	-webkit-transform-origin: top center;
	-moz-transform-origin: top center;
	-o-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	-moz-animation-name: swing;
	-o-animation-name: swing;
	animation-name: swing;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% { -webkit-transform: translateX(0%); }
  15% { -webkit-transform: translateX(-25%) rotate(-5deg); }
  30% { -webkit-transform: translateX(20%) rotate(3deg); }
  45% { -webkit-transform: translateX(-15%) rotate(-3deg); }
  60% { -webkit-transform: translateX(10%) rotate(2deg); }
  75% { -webkit-transform: translateX(-5%) rotate(-1deg); }
  100% { -webkit-transform: translateX(0%); }
}

@-moz-keyframes wobble {
  0% { -moz-transform: translateX(0%); }
  15% { -moz-transform: translateX(-25%) rotate(-5deg); }
  30% { -moz-transform: translateX(20%) rotate(3deg); }
  45% { -moz-transform: translateX(-15%) rotate(-3deg); }
  60% { -moz-transform: translateX(10%) rotate(2deg); }
  75% { -moz-transform: translateX(-5%) rotate(-1deg); }
  100% { -moz-transform: translateX(0%); }
}

@-o-keyframes wobble {
  0% { -o-transform: translateX(0%); }
  15% { -o-transform: translateX(-25%) rotate(-5deg); }
  30% { -o-transform: translateX(20%) rotate(3deg); }
  45% { -o-transform: translateX(-15%) rotate(-3deg); }
  60% { -o-transform: translateX(10%) rotate(2deg); }
  75% { -o-transform: translateX(-5%) rotate(-1deg); }
  100% { -o-transform: translateX(0%); }
}

@keyframes wobble {
  0% { transform: translateX(0%); }
  15% { transform: translateX(-25%) rotate(-5deg); }
  30% { transform: translateX(20%) rotate(3deg); }
  45% { transform: translateX(-15%) rotate(-3deg); }
  60% { transform: translateX(10%) rotate(2deg); }
  75% { transform: translateX(-5%) rotate(-1deg); }
  100% { transform: translateX(0%); }
}

.wobble {
	-webkit-animation-name: wobble;
	-moz-animation-name: wobble;
	-o-animation-name: wobble;
	animation-name: wobble;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% { -webkit-transform: scale(1); }	
	50% { -webkit-transform: scale(1.1); }
    100% { -webkit-transform: scale(1); }
}
@-moz-keyframes pulse {
    0% { -moz-transform: scale(1); }	
	50% { -moz-transform: scale(1.1); }
    100% { -moz-transform: scale(1); }
}
@-o-keyframes pulse {
    0% { -o-transform: scale(1); }	
	50% { -o-transform: scale(1.1); }
    100% { -o-transform: scale(1); }
}
@keyframes pulse {
    0% { transform: scale(1); }	
	50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
	-webkit-animation-name: pulse;
	-moz-animation-name: pulse;
	-o-animation-name: pulse;
	animation-name: pulse;
}
@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotateY(0);
		-webkit-animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
		-webkit-animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) rotateY(360deg) scale(.95);
		-webkit-animation-timing-function: ease-in;
	}
	100% {
		-webkit-transform: perspective(400px) scale(1);
		-webkit-animation-timing-function: ease-in;
	}
}
@-moz-keyframes flip {
	0% {
		-moz-transform: perspective(400px) rotateY(0);
		-moz-animation-timing-function: ease-out;
	}
	40% {
		-moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
		-moz-animation-timing-function: ease-out;
	}
	50% {
		-moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-moz-animation-timing-function: ease-in;
	}
	80% {
		-moz-transform: perspective(400px) rotateY(360deg) scale(.95);
		-moz-animation-timing-function: ease-in;
	}
	100% {
		-moz-transform: perspective(400px) scale(1);
		-moz-animation-timing-function: ease-in;
	}
}
@-o-keyframes flip {
	0% {
		-o-transform: perspective(400px) rotateY(0);
		-o-animation-timing-function: ease-out;
	}
	40% {
		-o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
		-o-animation-timing-function: ease-out;
	}
	50% {
		-o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-o-animation-timing-function: ease-in;
	}
	80% {
		-o-transform: perspective(400px) rotateY(360deg) scale(.95);
		-o-animation-timing-function: ease-in;
	}
	100% {
		-o-transform: perspective(400px) scale(1);
		-o-animation-timing-function: ease-in;
	}
}
@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(0);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(170deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) rotateY(360deg) scale(.95);
		animation-timing-function: ease-in;
	}
	100% {
		transform: perspective(400px) scale(1);
		animation-timing-function: ease-in;
	}
}

.flip {
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flip;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flip;
	-o-backface-visibility: visible !important;
	-o-animation-name: flip;
	backface-visibility: visible !important;
	animation-name: flip;
}
@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@-moz-keyframes flipInX {
    0% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    
    40% {
        -moz-transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        -moz-transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@-o-keyframes flipInX {
    0% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    
    40% {
        -o-transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        -o-transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flipInX;
	-o-backface-visibility: visible !important;
	-o-animation-name: flipInX;
	backface-visibility: visible !important;
	animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
	100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-moz-keyframes flipOutX {
    0% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
	100% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-o-keyframes flipOutX {
    0% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
	100% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
	100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	-moz-animation-name: flipOutX;
	-moz-backface-visibility: visible !important;
	-o-animation-name: flipOutX;
	-o-backface-visibility: visible !important;
	animation-name: flipOutX;
	backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@-moz-keyframes flipInY {
    0% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        -moz-transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        -moz-transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@-o-keyframes flipInY {
    0% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        -o-transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        -o-transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flipInY;
	-o-backface-visibility: visible !important;
	-o-animation-name: flipInY;
	backface-visibility: visible !important;
	animation-name: flipInY;
}
@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
	100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@-moz-keyframes flipOutY {
    0% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
	100% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@-o-keyframes flipOutY {
    0% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
	100% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
	100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flipOutY;
	-o-backface-visibility: visible !important;
	-o-animation-name: flipOutY;
	backface-visibility: visible !important;
	animation-name: flipOutY;
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}

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

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

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

.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-20px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-20px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	-moz-animation-name: fadeInLeft;
	-o-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(20px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(20px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	-moz-animation-name: fadeInRight;
	-o-animation-name: fadeInRight;
	animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-moz-transform: translateY(2000px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-o-transform: translateY(2000px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translateY(2000px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	-moz-animation-name: fadeInUpBig;
	-o-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translateY(-2000px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	-moz-animation-name: fadeInDownBig;
	-o-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}
@-moz-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}
@-o-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}
@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	-moz-animation-name: fadeInLeftBig;
	-o-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	-moz-animation-name: fadeInRightBig;
	-o-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

@-moz-keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

@-o-keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

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

.fadeOut {
	-webkit-animation-name: fadeOut;
	-moz-animation-name: fadeOut;
	-o-animation-name: fadeOut;
	animation-name: fadeOut;
}
@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}
}
@-moz-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}
}
@-o-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-o-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}
}
@keyframes fadeOutUp {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		transform: translateY(-20px);
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	-moz-animation-name: fadeOutUp;
	-o-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}
}

@-moz-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}
}

@-o-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-o-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(20px);
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		transform: translateY(20px);
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	-moz-animation-name: fadeOutDown;
	-o-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
	}
}

@-moz-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(-20px);
	}
}

@-o-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-o-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(-20px);
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		transform: translateX(-20px);
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	-moz-animation-name: fadeOutLeft;
	-o-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
	}
}

@-moz-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(20px);
	}
}

@-o-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-o-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(20px);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		transform: translateX(20px);
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	-moz-animation-name: fadeOutRight;
	-o-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
}

@-moz-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
}

@-o-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-o-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		transform: translateY(-2000px);
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	-moz-animation-name: fadeOutUpBig;
	-o-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
	}
}

@-moz-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(2000px);
	}
}

@-o-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-o-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(2000px);
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		transform: translateY(2000px);
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	-moz-animation-name: fadeOutDownBig;
	-o-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
}

@-moz-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}
}

@-o-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-o-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		transform: translateX(-2000px);
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	-moz-animation-name: fadeOutLeftBig;
	-o-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}
}
@-moz-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}
}
@-o-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-o-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}
}
@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		transform: translateX(2000px);
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	-moz-animation-name: fadeOutRightBig;
	-o-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}
@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
	}
	
	70% {
		-webkit-transform: scale(.9);
	}
	
	100% {
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		-moz-transform: scale(1.05);
	}
	
	70% {
		-moz-transform: scale(.9);
	}
	
	100% {
		-moz-transform: scale(1);
	}
}

@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		-o-transform: scale(1.05);
	}
	
	70% {
		-o-transform: scale(.9);
	}
	
	100% {
		-o-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	
	70% {
		transform: scale(.9);
	}
	
	100% {
		transform: scale(1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
}
@-webkit-keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
	}
	
	80% {
		-webkit-transform: translateY(10px);
	}
	
	100% {
		-webkit-transform: translateY(0);
	}
}
@-moz-keyframes bounceInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateY(-30px);
	}
	
	80% {
		-moz-transform: translateY(10px);
	}
	
	100% {
		-moz-transform: translateY(0);
	}
}

@-o-keyframes bounceInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateY(-30px);
	}
	
	80% {
		-o-transform: translateY(10px);
	}
	
	100% {
		-o-transform: translateY(0);
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateY(-30px);
	}
	
	80% {
		transform: translateY(10px);
	}
	
	100% {
		transform: translateY(0);
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	-moz-animation-name: bounceInUp;
	-o-animation-name: bounceInUp;
	animation-name: bounceInUp;
}
@-webkit-keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
	}
	
	80% {
		-webkit-transform: translateY(-10px);
	}
	
	100% {
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes bounceInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateY(30px);
	}
	
	80% {
		-moz-transform: translateY(-10px);
	}
	
	100% {
		-moz-transform: translateY(0);
	}
}

@-o-keyframes bounceInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateY(30px);
	}
	
	80% {
		-o-transform: translateY(-10px);
	}
	
	100% {
		-o-transform: translateY(0);
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateY(30px);
	}
	
	80% {
		transform: translateY(-10px);
	}
	
	100% {
		transform: translateY(0);
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	-moz-animation-name: bounceInDown;
	-o-animation-name: bounceInDown;
	animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
	}
	
	80% {
		-webkit-transform: translateX(-10px);
	}
	
	100% {
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateX(30px);
	}
	
	80% {
		-moz-transform: translateX(-10px);
	}
	
	100% {
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateX(30px);
	}
	
	80% {
		-o-transform: translateX(-10px);
	}
	
	100% {
		-o-transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateX(30px);
	}
	
	80% {
		transform: translateX(-10px);
	}
	
	100% {
		transform: translateX(0);
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	-moz-animation-name: bounceInLeft;
	-o-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
	}
	
	80% {
		-webkit-transform: translateX(10px);
	}
	
	100% {
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateX(-30px);
	}
	
	80% {
		-moz-transform: translateX(10px);
	}
	
	100% {
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateX(-30px);
	}
	
	80% {
		-o-transform: translateX(10px);
	}
	
	100% {
		-o-transform: translateX(0);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateX(-30px);
	}
	
	80% {
		transform: translateX(10px);
	}
	
	100% {
		transform: translateX(0);
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	-moz-animation-name: bounceInRight;
	-o-animation-name: bounceInRight;
	animation-name: bounceInRight;
}
@-webkit-keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
	}
	
	25% {
		-webkit-transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}	
}

@-moz-keyframes bounceOut {
	0% {
		-moz-transform: scale(1);
	}
	
	25% {
		-moz-transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		-moz-transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		-moz-transform: scale(.3);
	}	
}

@-o-keyframes bounceOut {
	0% {
		-o-transform: scale(1);
	}
	
	25% {
		-o-transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		-o-transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		-o-transform: scale(.3);
	}	
}

@keyframes bounceOut {
	0% {
		transform: scale(1);
	}
	
	25% {
		transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		transform: scale(.3);
	}	
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	-moz-animation-name: bounceOut;
	-o-animation-name: bounceOut;
	animation-name: bounceOut;
}
@-webkit-keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
}

@-moz-keyframes bounceOutUp {
	0% {
		-moz-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-moz-transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
}

@-o-keyframes bounceOutUp {
	0% {
		-o-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-o-transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
}

@keyframes bounceOutUp {
	0% {
		transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		transform: translateY(-2000px);
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	-moz-animation-name: bounceOutUp;
	-o-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}
@-webkit-keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
	}
}

@-moz-keyframes bounceOutDown {
	0% {
		-moz-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-moz-transform: translateY(-20px);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(2000px);
	}
}

@-o-keyframes bounceOutDown {
	0% {
		-o-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-o-transform: translateY(-20px);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(2000px);
	}
}

@keyframes bounceOutDown {
	0% {
		transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		transform: translateY(-20px);
	}
	
	100% {
		opacity: 0;
		transform: translateY(2000px);
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	-moz-animation-name: bounceOutDown;
	-o-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
}

@-moz-keyframes bounceOutLeft {
	0% {
		-moz-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-moz-transform: translateX(20px);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}
}

@-o-keyframes bounceOutLeft {
	0% {
		-o-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-o-transform: translateX(20px);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}
}

@keyframes bounceOutLeft {
	0% {
		transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		transform: translateX(20px);
	}
	
	100% {
		opacity: 0;
		transform: translateX(-2000px);
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	-moz-animation-name: bounceOutLeft;
	-o-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}
}

@-moz-keyframes bounceOutRight {
	0% {
		-moz-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-moz-transform: translateX(-20px);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}
}

@-o-keyframes bounceOutRight {
	0% {
		-o-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-o-transform: translateX(-20px);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}
}

@keyframes bounceOutRight {
	0% {
		transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		transform: translateX(-20px);
	}
	
	100% {
		opacity: 0;
		transform: translateX(2000px);
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	-moz-animation-name: bounceOutRight;
	-o-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}
@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}
@-moz-keyframes rotateIn {
	0% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(-200deg);
		opacity: 0;
	}
	
	100% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}
@-o-keyframes rotateIn {
	0% {
		-o-transform-origin: center center;
		-o-transform: rotate(-200deg);
		opacity: 0;
	}
	
	100% {
		-o-transform-origin: center center;
		-o-transform: rotate(0);
		opacity: 1;
	}
}
@keyframes rotateIn {
	0% {
		transform-origin: center center;
		transform: rotate(-200deg);
		opacity: 0;
	}
	
	100% {
		transform-origin: center center;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	-moz-animation-name: rotateIn;
	-o-animation-name: rotateIn;
	animation-name: rotateIn;
}
@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInUpLeft {
	0% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInUpLeft {
	0% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	-moz-animation-name: rotateInUpLeft;
	-o-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInDownLeft {
	0% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInDownLeft {
	0% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	-moz-animation-name: rotateInDownLeft;
	-o-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInUpRight {
	0% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInUpRight {
	0% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		transform-origin: right bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	-moz-animation-name: rotateInUpRight;
	-o-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInDownRight {
	0% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInDownRight {
	0% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		transform-origin: right bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	-moz-animation-name: rotateInDownRight;
	-o-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(200deg);
		opacity: 0;
	}
}

@-moz-keyframes rotateOut {
	0% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(200deg);
		opacity: 0;
	}
}

@-o-keyframes rotateOut {
	0% {
		-o-transform-origin: center center;
		-o-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-o-transform-origin: center center;
		-o-transform: rotate(200deg);
		opacity: 0;
	}
}

@keyframes rotateOut {
	0% {
		transform-origin: center center;
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		transform-origin: center center;
		transform: rotate(200deg);
		opacity: 0;
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	-moz-animation-name: rotateOut;
	-o-animation-name: rotateOut;
	animation-name: rotateOut;
}
@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		opacity: 0;
	}
}

@-moz-keyframes rotateOutUpLeft {
	0% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(-90deg);
		opacity: 0;
	}
}

@-o-keyframes rotateOutUpLeft {
	0% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		transform-origin: left bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	-moz-animation-name: rotateOutUpLeft;
	-o-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		opacity: 0;
	}
}

@-moz-keyframes rotateOutDownLeft {
	0% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(90deg);
		opacity: 0;
	}
}

@-o-keyframes rotateOutDownLeft {
	0% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		transform-origin: left bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	-moz-animation-name: rotateOutDownLeft;
	-o-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		opacity: 0;
	}
}

@-moz-keyframes rotateOutUpRight {
	0% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(90deg);
		opacity: 0;
	}
}

@-o-keyframes rotateOutUpRight {
	0% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	-moz-animation-name: rotateOutUpRight;
	-o-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
}
@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		opacity: 0;
	}
}

@-moz-keyframes rotateOutDownRight {
	0% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(-90deg);
		opacity: 0;
	}
}

@-o-keyframes rotateOutDownRight {
	0% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	-moz-animation-name: rotateOutDownRight;
	-o-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
}
@-webkit-keyframes hinge {
	0% { -webkit-transform: rotate(0); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }	
	20%, 60% { -webkit-transform: rotate(80deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }	
	40% { -webkit-transform: rotate(60deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }	
	80% { -webkit-transform: rotate(60deg) translateY(0); opacity: 1; -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }	
	100% { -webkit-transform: translateY(700px); opacity: 0; }
}

@-moz-keyframes hinge {
	0% { -moz-transform: rotate(0); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }	
	20%, 60% { -moz-transform: rotate(80deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }	
	40% { -moz-transform: rotate(60deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }	
	80% { -moz-transform: rotate(60deg) translateY(0); opacity: 1; -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }	
	100% { -moz-transform: translateY(700px); opacity: 0; }
}

@-o-keyframes hinge {
	0% { -o-transform: rotate(0); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }	
	20%, 60% { -o-transform: rotate(80deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }	
	40% { -o-transform: rotate(60deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }	
	80% { -o-transform: rotate(60deg) translateY(0); opacity: 1; -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }	
	100% { -o-transform: translateY(700px); opacity: 0; }
}

@keyframes hinge {
	0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }	
	20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; }	
	40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; }	
	80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; }	
	100% { transform: translateY(700px); opacity: 0; }
}

.hinge {
	-webkit-animation-name: hinge;
	-moz-animation-name: hinge;
	-o-animation-name: hinge;
	animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
	0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); }
	100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); }
}

@-moz-keyframes rollIn {
	0% { opacity: 0; -moz-transform: translateX(-100%) rotate(-120deg); }
	100% { opacity: 1; -moz-transform: translateX(0px) rotate(0deg); }
}

@-o-keyframes rollIn {
	0% { opacity: 0; -o-transform: translateX(-100%) rotate(-120deg); }
	100% { opacity: 1; -o-transform: translateX(0px) rotate(0deg); }
}

@keyframes rollIn {
	0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
	100% { opacity: 1; transform: translateX(0px) rotate(0deg); }
}

.rollIn {
	-webkit-animation-name: rollIn;
	-moz-animation-name: rollIn;
	-o-animation-name: rollIn;
	animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
	}

    100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
	}
}

@-moz-keyframes rollOut {
    0% {
		opacity: 1;
		-moz-transform: translateX(0px) rotate(0deg);
	}

    100% {
		opacity: 0;
		-moz-transform: translateX(100%) rotate(120deg);
	}
}

@-o-keyframes rollOut {
    0% {
		opacity: 1;
		-o-transform: translateX(0px) rotate(0deg);
	}

    100% {
		opacity: 0;
		-o-transform: translateX(100%) rotate(120deg);
	}
}

@keyframes rollOut {
    0% {
		opacity: 1;
		transform: translateX(0px) rotate(0deg);
	}

    100% {
		opacity: 0;
		transform: translateX(100%) rotate(120deg);
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	-moz-animation-name: rollOut;
	-o-animation-name: rollOut;
	animation-name: rollOut;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes lightSpeedIn {
	0% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
	60% { -webkit-transform: translateX(-20%) skewX(30deg); opacity: 1; }
	80% { -webkit-transform: translateX(0%) skewX(-15deg); opacity: 1; }
	100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@-moz-keyframes lightSpeedIn {
	0% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
	60% { -moz-transform: translateX(-20%) skewX(30deg); opacity: 1; }
	80% { -moz-transform: translateX(0%) skewX(-15deg); opacity: 1; }
	100% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@-o-keyframes lightSpeedIn {
	0% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
	60% { -o-transform: translateX(-20%) skewX(30deg); opacity: 1; }
	80% { -o-transform: translateX(0%) skewX(-15deg); opacity: 1; }
	100% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@keyframes lightSpeedIn {
	0% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
	60% { transform: translateX(-20%) skewX(30deg); opacity: 1; }
	80% { transform: translateX(0%) skewX(-15deg); opacity: 1; }
	100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    -moz-animation-name: lightSpeedIn;
    -o-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;

    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes lightSpeedOut {
    0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
	100% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@-moz-keyframes lightSpeedOut {
	0% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
	100% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@-o-keyframes lightSpeedOut {
	0% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
	100% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@keyframes lightSpeedOut {
	0% { transform: translateX(0%) skewX(0deg); opacity: 1; }
	100% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    -moz-animation-name: lightSpeedOut;
    -o-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;

    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
    -webkit-animation-duration: 0.25s;
    -moz-animation-duration: 0.25s;
    -o-animation-duration: 0.25s;
    animation-duration: 0.25s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes wiggle {
    0% { -webkit-transform: skewX(9deg); }
    10% { -webkit-transform: skewX(-8deg); }
    20% { -webkit-transform: skewX(7deg); }
    30% { -webkit-transform: skewX(-6deg); }
    40% { -webkit-transform: skewX(5deg); }
    50% { -webkit-transform: skewX(-4deg); }
    60% { -webkit-transform: skewX(3deg); }
    70% { -webkit-transform: skewX(-2deg); }
    80% { -webkit-transform: skewX(1deg); }
    90% { -webkit-transform: skewX(0deg); }
	100% { -webkit-transform: skewX(0deg); }
}

@-moz-keyframes wiggle {
    0% { -moz-transform: skewX(9deg); }
    10% { -moz-transform: skewX(-8deg); }
    20% { -moz-transform: skewX(7deg); }
    30% { -moz-transform: skewX(-6deg); }
    40% { -moz-transform: skewX(5deg); }
    50% { -moz-transform: skewX(-4deg); }
    60% { -moz-transform: skewX(3deg); }
    70% { -moz-transform: skewX(-2deg); }
    80% { -moz-transform: skewX(1deg); }
    90% { -moz-transform: skewX(0deg); }
	100% { -moz-transform: skewX(0deg); }
}

@-o-keyframes wiggle {
    0% { -o-transform: skewX(9deg); }
    10% { -o-transform: skewX(-8deg); }
    20% { -o-transform: skewX(7deg); }
    30% { -o-transform: skewX(-6deg); }
    40% { -o-transform: skewX(5deg); }
    50% { -o-transform: skewX(-4deg); }
    60% { -o-transform: skewX(3deg); }
    70% { -o-transform: skewX(-2deg); }
    80% { -o-transform: skewX(1deg); }
    90% { -o-transform: skewX(0deg); }
	100% { -o-transform: skewX(0deg); }
}

@keyframes wiggle {
    0% { transform: skewX(9deg); }
    10% { transform: skewX(-8deg); }
    20% { transform: skewX(7deg); }
    30% { transform: skewX(-6deg); }
    40% { transform: skewX(5deg); }
    50% { transform: skewX(-4deg); }
    60% { transform: skewX(3deg); }
    70% { transform: skewX(-2deg); }
    80% { transform: skewX(1deg); }
    90% { transform: skewX(0deg); }
	100% { transform: skewX(0deg); }
}

.wiggle {
    -webkit-animation-name: wiggle;
    -moz-animation-name: wiggle;
    -o-animation-name: wiggle;
    animation-name: wiggle;

    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.animated.wiggle {
    -webkit-animation-duration: 0.75s;
    -moz-animation-duration: 0.75s;
    -o-animation-duration: 0.75s;
    animation-duration: 0.75s;
}
/*
 * photoswipe.css
 * Copyright (c) %%year%% by Code Computerlove (http://www.codecomputerlove.com)
 * Licensed under the MIT license
 *
 * Default styles for PhotoSwipe
 * Avoid any position or dimension based styles
 * where possible, unless specified already here.
 * The gallery automatically works out gallery item
 * positions etc.
 */

 
body.ps-active, body.ps-building, div.ps-active, div.ps-building
{
	background: #000;
	overflow: hidden;
}
body.ps-active *, div.ps-active *
{ 
	-webkit-tap-highlight-color:  rgba(255, 255, 255, 0); 
	display: none;
}
body.ps-active *:focus, div.ps-active *:focus 
{ 
	outline: 0; 
}


/* Document overlay */
div.ps-document-overlay 
{
	background: #000;
}


/* UILayer */
div.ps-uilayer { 
	
	background: #000;
	cursor: pointer;
	
}


/* Zoom/pan/rotate layer */
div.ps-zoom-pan-rotate{
	background: #000;
}
div.ps-zoom-pan-rotate *  { display: block; }


/* Carousel */
div.ps-carousel-item-loading 
{ 
	background: url(//p1.q-static.com/images/legacy/photoswipe/loader.gif?1419868763) no-repeat center center; 
}

div.ps-carousel-item-error 
{ 
	background: url(//p1.q-static.com/images/legacy/photoswipe/error.gif?1419868763) no-repeat center center; 
}


/* Caption */
div.ps-caption
{ 
	background: #000000;
	background: -moz-linear-gradient(top, #303130 0%, #000101 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303130), color-stop(100%,#000101));
	border-bottom: 1px solid #42403f;
	color: #ffffff;
	font-size: 13px;
	font-family: "Lucida Grande", Helvetica, Arial,Verdana, sans-serif;
	text-align: center;
}
div.ps-caption *  { display: inline; }

div.ps-caption-bottom
{ 
	border-top: 1px solid #42403f;
	border-bottom: none;
	min-height: 44px;
}

div.ps-caption-content
{
	padding: 13px;
	display: block;
}


/* Toolbar */
div.ps-toolbar
{ 
	background: #000000;
	background: -moz-linear-gradient(top, #303130 0%, #000101 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#303130), color-stop(100%,#000101));
	border-top: 1px solid #42403f;
	color: #ffffff;
	font-size: 13px;
	font-family: "Lucida Grande", Helvetica, Arial,Verdana, sans-serif;
	text-align: center;
	height: 44px;
	display: table;
	table-layout: fixed;
}
div.ps-toolbar * { 
	display: block;
}

div.ps-toolbar-top 
{
	border-bottom: 1px solid #42403f;
	border-top: none;
}

div.ps-toolbar-close, div.ps-toolbar-previous, div.ps-toolbar-next, div.ps-toolbar-play
{
	cursor: pointer;
	display: table-cell;
}

div.ps-toolbar div div.ps-toolbar-content
{
	width: 44px;
	height: 44px;
	margin: 0 auto 0;
	background-image: url(//p1.q-static.com/images/legacy/photoswipe/icons.png?1419868763);
	background-repeat: no-repeat;
}

div.ps-toolbar-close div.ps-toolbar-content
{
	background-position: 0 0;
}

div.ps-toolbar-previous div.ps-toolbar-content
{
	background-position: -44px 0;
}

div.ps-toolbar-previous-disabled div.ps-toolbar-content
{
	background-position: -44px -44px;
}

div.ps-toolbar-next div.ps-toolbar-content
{
	background-position: -132px 0;
}

div.ps-toolbar-next-disabled div.ps-toolbar-content
{
	background-position: -132px -44px;
}

div.ps-toolbar-play div.ps-toolbar-content
{
	background-position: -88px 0;
}

/* Hi-res display */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (-moz-min-device-pixel-ratio: 1.5),
       only screen and (min-resolution: 240dpi)
{
	div.ps-toolbar div div.ps-toolbar-content
	{
		-moz-background-size: 176px 88px;
		-o-background-size: 176px 88px;
		-webkit-background-size: 176px 88px;
		background-size: 176px 88px;
		background-image: url(//p1.q-static.com/images/legacy/photoswipe/icons@2x.png?1419868763);
	}
}


/*******************************
      Quirky Modifications
*******************************/
body div.ps-toolbar-close div.ps-toolbar-content {
	background: url(//p1.q-static.com/images/legacy/photoswipe/close.png?1419868763) no-repeat;
	text-shadow: 0 3px 5px rgba(0, 0, 0, .9);
	width: 50px;
	height: 50px;
}
body div.ps-toolbar-previous,
body div.ps-toolbar-next,
body div.ps-toolbar-play {
  cursor: pointer;
  display: block;
  float: left;
  width: 50%;
	-webkit-transition: background opacity 0.2s ease-out;
	-moz-transition: background opacity 0.2s ease-out;
	-o-transition: background opacity 0.2s ease-out;
	-ms-transition: background opacity 0.2s ease-out;
	transition: background opacity 0.2s ease-out;
}
body .ps-toolbar-previous:hover,
body .ps-toolbar-next:hover {
	background-color: #9DA6AB;
}
body div.ps-uilayer {
	cursor: default;
}
body div.ps-caption-bottom {
    display: none !important;
}
body div.ps-toolbar-close {
    height: 50px;
    opacity: 0.7;
    position: absolute;
    right: 30px;
    width: 50px;
}
body div.ps-toolbar-close:hover {
    opacity: 1;
}

body .ps-toolbar-previous-disabled,
body .ps-toolbar-next-disabled,
body .ps-toolbar-previous-disabled:hover,
body .ps-toolbar-next-disabled:hover {
	cursor: default;
	opacity: 0.2;
	background-color: transparent;
}
/*
Version: 3.0 Timestamp: Tue Jul 31 21:09:16 PDT 2012
*/
.select2-container {
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;

}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input{
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
  -moz-box-sizing: border-box;    /* firefox */
  -ms-box-sizing: border-box;     /* ie */
  -webkit-box-sizing: border-box; /* webkit */
  -khtml-box-sizing: border-box;  /* konqueror */
  box-sizing: border-box;         /* css3 */
}

.select2-container .select2-choice {
    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.5, white));
    background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 50%);
    background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 50%);
    background-image: -o-linear-gradient(bottom, #eeeeee 0%, #ffffff 50%);
    background-image: -ms-linear-gradient(top, #eeeeee 0%, #ffffff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#ffffff', GradientType = 0);
    background-image: linear-gradient(top, #eeeeee 0%, #ffffff 50%);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #aaa;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 26px;
    line-height: 26px;
    padding: 0 0 0 8px;
    color: #444;
    text-decoration: none;
}

.select2-container.select2-drop-above .select2-choice
{
    border-bottom-color: #aaa;
    -webkit-border-radius:0px 0px 4px 4px;
    -moz-border-radius:0px 0px 4px 4px;
    border-radius:0px 0px 4px 4px;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeee), color-stop(0.9, white));
    background-image: -webkit-linear-gradient(center bottom, #eeeeee 0%, white 90%);
    background-image: -moz-linear-gradient(center bottom, #eeeeee 0%, white 90%);
    background-image: -o-linear-gradient(bottom, #eeeeee 0%, white 90%);
    background-image: -ms-linear-gradient(top, #eeeeee 0%,#ffffff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#ffffff',GradientType=0 );
    background-image: linear-gradient(top, #eeeeee 0%,#ffffff 90%);
}

.select2-container .select2-choice span {
    margin-right: 26px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.select2-container .select2-choice abbr {
  display: block;
  position: absolute;
  right: 26px;
  top: 8px;
  width: 12px;
  height: 12px;
  font-size: 1px;
  background: url(//p1.q-static.com/images/legacy/select2/select2.png?1419868763) right top no-repeat;
  cursor: pointer;
  text-decoration: none;
  border:0;
  outline: 0;
}
.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer;
}

.select2-drop {
    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;
    position: absolute;
    top: 100%;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    -o-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    z-index: 9999;
    width:100%;
    margin-top:-1px;

  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
}

.select2-drop.select2-drop-above {
    -webkit-border-radius: 4px 4px 0px 0px;
    -moz-border-radius: 4px 4px 0px 0px;
    border-radius: 4px 4px 0px 0px;
    margin-top:1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
    -o-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-container .select2-choice div {
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background: #ccc;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -o-linear-gradient(bottom, #ccc 0%, #eee 60%);
    background-image: -ms-linear-gradient(top, #cccccc 0%, #eeeeee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#cccccc', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(top, #cccccc 0%, #eeeeee 60%);
    border-left: 1px solid #aaa;
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 18px;
}

.select2-container .select2-choice div b {
    background: url(//p1.q-static.com/images/legacy/select2/select2.png?1419868763) no-repeat 0 1px;
    display: block;
    width: 100%;
    height: 100%;
}

.select2-search {
  display: inline-block;
    white-space: nowrap;
    z-index: 10000;
  min-height: 26px;
  width: 100%;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
}

.select2-search-hidden {
  display: block;
  position: absolute;
  left: -10000px;
}

.select2-search input {
    background: #fff url(//p1.q-static.com/images/legacy/select2/select2.png?1419868763) no-repeat 100% -22px;
    background: url(//p1.q-static.com/images/legacy/select2/select2.png?1419868763) no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
    background: url(//p1.q-static.com/images/legacy/select2/select2.png?1419868763) no-repeat 100% -22px, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
    background: url(//p1.q-static.com/images/legacy/select2/select2.png?1419868763) no-repeat 100% -22px, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
    background: url(//p1.q-static.com/images/legacy/select2/select2.png?1419868763) no-repeat 100% -22px, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
    background: url(//p1.q-static.com/images/legacy/select2/select2.png?1419868763) no-repeat 100% -22px, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
    background: url(//p1.q-static.com/images/legacy/select2/select2.png?1419868763) no-repeat 100% -22px, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
    padding: 4px 20px 4px 5px;
    outline: 0;
    border: 1px solid #aaa;
    font-family: sans-serif;
    font-size: 1em;
    width:100%;
    margin:0;
    height:auto !important;
    min-height: 26px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

.select2-drop.select2-drop-above .select2-search input
{
    margin-top:4px;
}

.select2-search input.select2-active {
    background: #fff url(//p1.q-static.com/images/legacy/select2/spinner.gif?1419868763) no-repeat 100%;
    background: url(//p1.q-static.com/images/legacy/select2/spinner.gif?1419868763) no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, white), color-stop(0.99, #eeeeee));
    background: url(//p1.q-static.com/images/legacy/select2/spinner.gif?1419868763) no-repeat 100%, -webkit-linear-gradient(center bottom, white 85%, #eeeeee 99%);
    background: url(//p1.q-static.com/images/legacy/select2/spinner.gif?1419868763) no-repeat 100%, -moz-linear-gradient(center bottom, white 85%, #eeeeee 99%);
    background: url(//p1.q-static.com/images/legacy/select2/spinner.gif?1419868763) no-repeat 100%, -o-linear-gradient(bottom, white 85%, #eeeeee 99%);
    background: url(//p1.q-static.com/images/legacy/select2/spinner.gif?1419868763) no-repeat 100%, -ms-linear-gradient(top, #ffffff 85%, #eeeeee 99%);
    background: url(//p1.q-static.com/images/legacy/select2/spinner.gif?1419868763) no-repeat 100%, linear-gradient(top, #ffffff 85%, #eeeeee 99%);
}

/*
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
    -moz-box-shadow   : 0 0 5px rgba(0,0,0,.3);
    -o-box-shadow     : 0 0 5px rgba(0,0,0,.3);
    box-shadow        : 0 0 5px rgba(0,0,0,.3);
    border: 1px solid #5897fb;
    outline: none;
}
*/

.select2-dropdown-open .select2-choice {
  border: 1px solid #aaa;
  border-bottom-color: transparent;
  -webkit-box-shadow: 0 1px 0 #fff inset;
  -moz-box-shadow   : 0 1px 0 #fff inset;
  -o-box-shadow     : 0 1px 0 #fff inset;
  box-shadow        : 0 1px 0 #fff inset;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, white), color-stop(0.5, #eeeeee));
  background-image: -webkit-linear-gradient(center bottom, white 0%, #FAFAFA 100%);
  background-image: -moz-linear-gradient(center bottom, white 0%, #FAFAFA 100%);
  background-image: -o-linear-gradient(bottom, white 0%, #FAFAFA 100%);
  background-image: -ms-linear-gradient(top, #ffffff 0%,#FAFAFA 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#FAFAFA',GradientType=0 );
  background-image: linear-gradient(top, #ffffff 0%,#FAFAFA 100%);
  -webkit-border-bottom-left-radius : 0;
  -webkit-border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft : 0;
  -moz-border-radius-bottomright: 0;
  border-bottom-left-radius : 0;
  border-bottom-right-radius: 0;
}

.select2-dropdown-open .select2-choice div {
  background: transparent;
  border-left: none;
}
.select2-dropdown-open .select2-choice div b {
  background-position: -18px 1px;
}

/* results */
.select2-results {
  margin: 4px 4px 4px 0;
  padding: 0 0 0 4px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 200px;
}

.select2-results ul.select2-result-sub {
  margin: 0 0 0 0;
}

.select2-results ul.select2-result-sub > li .select2-result-label { padding-left: 20px }
.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 40px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 60px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 80px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 100px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 110px }
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label { padding-left: 120px }

.select2-results li {
  list-style: none;
  display: list-item;
}

.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold;
}

.select2-results .select2-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
}

.select2-results .select2-highlighted {
  background: #3875d7;
  color: #fff;
}
.select2-results li em {
  background: #feffde;
  font-style: normal;
}
.select2-results .select2-highlighted em {
  background: transparent;
}
.select2-results .select2-no-results {
  background: #f4f4f4;
  display: list-item;
}

.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
}

/*
disabled look for already selected choices in the results dropdown
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}
*/
.select2-results .select2-disabled {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url(//p1.q-static.com/images/legacy/select2/spinner.gif?1419868763) no-repeat 100%;
}

.select2-more-results {
  background: #f4f4f4;
  display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice div {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}


/* multiselect */

.select2-container-multi .select2-choices {
    background-color: #fff;
      background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
      background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
      background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
      background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
      background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
      background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);
      border: 1px solid #aaa;
      margin: 0;
      padding: 0;
      cursor: text;
      overflow: hidden;
      height: auto !important;
      height: 1%;
      position: relative;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.3);
    -moz-box-shadow   : 0 0 5px rgba(0,0,0,.3);
    -o-box-shadow     : 0 0 5px rgba(0,0,0,.3);
    box-shadow        : 0 0 5px rgba(0,0,0,.3);
    border: 1px solid #5897fb;
    outline: none;
}
.select2-container-multi .select2-choices li {
  float: left;
  list-style: none;
}
.select2-container-multi .select2-choices .select2-search-field {
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.select2-container-multi .select2-choices .select2-search-field input {
  color: #666;
  background: transparent !important;
  font-family: sans-serif;
  font-size: 100%;
  height: 15px;
  padding: 5px;
  margin: 1px 0;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow   : none;
  -o-box-shadow     : none;
  box-shadow        : none;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url(//p1.q-static.com/images/legacy/select2/spinner.gif?1419868763) no-repeat 100% !important;
}

.select2-default {
  color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
  -webkit-border-radius: 3px;
  -moz-border-radius   : 3px;
  border-radius        : 3px;
  -moz-background-clip   : padding;
  -webkit-background-clip: padding-box;
  background-clip        : padding-box;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0 );
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
  -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
  -moz-box-shadow   : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
  box-shadow        : 0 0 2px #ffffff inset, 0 1px 0 rgba(0,0,0,0.05);
  color: #333;
  border: 1px solid #aaaaaa;
  line-height: 13px;
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice span {
  cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4;
}

.select2-search-choice-close {
  display: block;
  position: absolute;
  right: 3px;
  top: 4px;
  width: 12px;
  height: 13px;
  font-size: 1px;
  background: url(//p1.q-static.com/images/legacy/select2/select2.png?1419868763) right top no-repeat;
  outline: none;
}

.select2-container-multi .select2-search-choice-close {
  left: 3px;
}


.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px;
}

/* disabled styles */

.select2-container-multi.select2-container-disabled .select2-choices{
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    background-image: none;
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    padding: 3px 5px 3px 5px;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
    display: none;
}
/* end multiselect */

.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-result-selectable .select2-match { text-decoration: underline; }
.select2-result-unselectable .select2-match { text-decoration: none; }

.select2-offscreen { position: absolute; left: -10000px; }


/*******************************
      Quirky Modifications
*******************************/
body .select2-results {
  margin: 0px;
  padding: 0px;
  border-top: 1px solid #EAEAEA;
}
body .select2-results .select2-result-label {
  overflow: hidden;
  padding: 6px 6px;
}
body .select2-search {
  display: none;
}
body .select2-result {
  border-top: 1px solid #EAEAEA;
  -webkit-transition: background-color 0.1s ease-out;
  -moz-transition: background-color 0.1s ease-out;
  -o-transition: background-color 0.1s ease-out;
  -ms-transition: background-color 0.1s ease-out;
  transition: background-color 0.1s ease-out;
}
body .select2-result:first-child {
  border-top: none;
}
body .select2-drop .image {
  display: table-cell;
  float: left;
  background: #EFEFEF url(//p1.q-static.com/images/icon-placeholder-tiny-logo.png?1419868763) no-repeat center center;
  width: 35px;
  height: 35px;
}
body .select2-drop img {
  width: 35px;
  height: 35px;
  vertical-align: top;
}
body .select2-drop .text {
  display: table-cell;
  height: 35px;
  vertical-align: middle;
  font-weight: bold;
  padding-left: 10px;
  color: #333333;
  line-height: 1.2;
}
body .select2-drop .shipping {
  display: block;
  font-size: 10px;
  color: #777777;
}
body .select2-results .select2-highlighted {
  background-color: #5D768D;
  color: #FAFAFA;
}
body .select2-results .select2-highlighted .image {
  background-color: #666666;
}
body .select2-results .select2-highlighted .text {
  color: #FAFAFA;
}
body .select2-results .select2-highlighted .shipping {
  color: #CCCCCC;
}
body .select2-choice em {
  display: inline-block;
  font-size: 10px;
  font-style: normal;
  margin-left: 5px;
  color: #777777;
}

/*!
 *
 * Bootstrap 3 Modal CSS.
 *
 */

.modal-open {
  overflow: hidden;
}
body.modal-open,
.modal-open .navbar-fixed-top,
.modal-open .navbar-fixed-bottom {
  margin-right: 15px;
}
.bootstrap-modal {
  display: none;
  overflow: auto;
  overflow-y: visible;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
}
.bootstrap-modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -moz-transition: -moz-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.bootstrap-modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-dialog {
  margin-left: auto;
  margin-right: auto;
  width: auto;
  padding: 10px;
  z-index: 1050;
}
.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 1em;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.428571429px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.428571429;
}
.modal-body {
  padding: 1em;
  position: relative;
}
.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before,
.modal-footer:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-dialog {
  left: 50%;
  right: auto;
  width: 850px;
  padding-top: 90px;
  padding-bottom: 30px;
}
.modal-dialog > .close {
  cursor: pointer;
  position: absolute;
  font-size: 1.25em;
  color: #FFFFFF;
  top: 72px;
  right: -.7em;
  z-index: 2000;
  background: #01B5AA;
  -moz-border-radius: 20em;
  -webkit-border-radius: 20em;
  border-radius: 20em;
  padding: 0.5em;
  width: 2em;
  height: 2em;
  opacity: 1;
}
.modal-header > h2 {
  margin: 0;
  font-size: 1.5em;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.8);
  }
  
  50% {
    opacity: 1;
  }
  
  100% {
    -webkit-transform: scale(1);
  }
}

@-moz-keyframes scaleIn {
  0% {
    opacity: 0;
    -moz-transform: scale(.8);
  }
  
  50% {
    opacity: 1;
  }
  
  100% {
    -moz-transform: scale(1);
  }
}

@-o-keyframes scaleIn {
  0% {
    opacity: 0;
    -o-transform: scale(.8);
  }
  
  50% {
    opacity: 1;
  }
  
  100% {
    -o-transform: scale(1);
  }
}

@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(.8);
  }
  
  50% {
    opacity: 1;
  }
  
  100% {
    transform: scale(1);
  }
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  -moz-animation-name: scaleIn;
  -o-animation-name: scaleIn;
  animation-name: scaleIn;
}

/* Bottom Bar */

div.ps-carousel {
  background: #000;
}

div.ps-toolbar
{ 
  background: #333333;
  height: 50px;
  background-image: none;
}

/* Hover */
body .ps-toolbar-previous:hover,
body .ps-toolbar-next:hover {
  background-color: #9DA6AB;
}

/* Close Button */
div.ps-toolbar div div.ps-toolbar-content {
  background-image: none !important;
}
div.ps-toolbar div.ps-toolbar-close div.ps-toolbar-content:after
{
  font-family: 'Sketchy Icons';
  content: "\f1aa";
  font-size: 3em;
}
div.ps-toolbar div.ps-toolbar-previous div.ps-toolbar-content:after {
  font-family: 'Sketchy Icons';
  content: "\f10a";
  font-size: 2.75em;
}
div.ps-toolbar div.ps-toolbar-next div.ps-toolbar-content:after {
  font-family: 'Sketchy Icons';
  content: "\f10d";
  font-size: 2.75em;
}
div.ps-toolbar div div.ps-toolbar-content {
  width: 50px;
  height:50px;
}
/* Always Overrides */
.select2-drop {
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  color: #555555;
}
.select2-results {
  max-height: 250px;
}
.select2-container .select2-choice {
  cursor: pointer;
}
.ui.form .select2-container input[type="text"] {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0px;
  border: none;
  font-size: inherit;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
}


/* Overrides on UI elements */
.ui.select2-container,
.select2-drop {
  font-size: 12px;
}
.ui.select2-container {
  min-width: 160px;
  font-size: .75em;
  font-weight: normal;
  color: #555555;
}
.ui.select2-container .select2-choice {
  border-color: #CCCCCC;
  padding-top: 1px;
  padding-bottom: 2px;
  height: 24px;
  -webkit-transition: 0.2s border;
  -moz-transition: 0.2s border;
  -o-transition: 0.2s border;
  -ms-transition: 0.2s border;
  transition: 0.2s border;
}
.select2-dropdown-open .select2-choice,
.ui.select2-container .select2-choice:hover {
  border-color: #BBBBBB;
}
.ui.select2-container .select2-choice div {
  background-image: none;
  background-color: transparent;
  border-left: none;
}
body .select2-results .select2-highlighted {
  background-color: #F0F0F0;
  color: #333333;
}
body .select2-drop {
  border-color: #BBBBBB;
}

body .select2-results .select2-no-results {
  padding: 7px 5px;
}
body .select2-results .select2-result-label {
  padding: 6px 10px;
}


/* Multi UI elements */

.ui.select2-container-multi .select2-choices {
  border-radius: 3px;
  border-color: #CCCCCC;
}
.ui.select2-container-multi .select2-choices .select2-search-choice {
  padding-top: 3px;
  padding-bottom: 3px;
}
.ui.select2-container-multi .select2-search-choice-close {
  top: 4px;
  right: 3px;
}
.ui.select2-container-multi .select2-choices {
  min-height: 26px;
}
.ui.select2-container-multi .select2-choices .select2-search-field input  {
  height: 16px;
  padding: 4px 5px;
}

/* Admin Style */

body .admin.select2-container .select2-choice a,
body .admin.select2-container .select2-choice span {
  font-weight: bold;
  color: #55356A;
}
body .admin.select2-drop {
  color: #555555;
}
body .admin.select2-container i,
body .admin.select2-drop i {
  opacity: 0.8;
  margin-right: 0.1em;
  vertical-align: text-top;
}
/*******************************
          CSS Reset
*******************************/

html, body, div, form, fieldset, legend, label, ul, li, menu, button {
  margin: 0px;
  padding: 0px;
  background: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}
th, td {
  text-align: left;
  vertical-align: top;
}
h1, h2, h3, h4, h5, h6, th, td, caption {
  font-weight:normal;
  margin: 0px;
  padding: 0px;
}
img,
iframe {
  border: 0px;
}
:focus, input:focus, button:focus, button:active, button:hover {
  outline: 0px;
}
button {
  display: block;
  outline: 0px;
  border: 0px;
}
ul, li {
  list-style-type: none;
}
p {
  margin: 0px;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/*! normalize.css v2.1.2 | MIT License | git.io/normalize */

/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined in IE 8/9.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */

audio,
canvas,
video {
    display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */

[hidden] {
    display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */

html {
    font-family: sans-serif; /* 1 */
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
    margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */

a:focus {
    outline: none;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */

a:active,
a:hover {
    outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */

b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */

dfn {
    font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/**
 * Address styling not present in IE 8/9.
 */

mark {
    background: #ff0;
    color: #000;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */

code,
kbd,
pre,
samp {
    font-family: monospace, serif;
    font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */

pre {
    white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */

q {
    quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */

/**
 * Remove border when inside `a` element in IE 8/9.
 */

img {
    border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */

svg:not(:root) {
    overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */

/**
 * Address margin not present in IE 8/9 and Safari 5.
 */

figure {
    margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */

button,
input,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 2 */
    margin: 0; /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

button,
input {
    line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */

button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button; /* 2 */
    cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 */

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */

textarea {
    overflow: auto; /* 1 */
    vertical-align: top; /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/*******************************
           Categories
*******************************/

/* GE Link Lightbulbs Override */
body.ge-link .quirky.shape {
  color: #BED733
}
body.ge-link section.inventor {
  background-color: #BED733;
}
body.ge-link .shop.show h2 {
  color: #BED733;
}


/*--------------
     Header
---------------*/

.logo .shape {
  -webkit-transition:
    color 0.5s ease
  ;
  -moz-transition:
    color 0.5s ease
  ;
  -o-transition:
    color 0.5s ease
  ;
  -ms-transition:
    color 0.5s ease
  ;
  transition:
    color 0.5s ease
  ;
}

/* Default Color */
.quirky.shape {
  color: #46166B;
}

/* Categories */
body.electronics .quirky.shape {
  color: #00B1DB;
}
body.health .quirky.shape {
  color: #F36525;
}
body.home .quirky.shape {
  color: #FFC800;
}
body.kitchen .quirky.shape {
  color: #BED733
}
body.parenting .quirky.shape {
  color: #94297B;
}
body.play .quirky.shape {
  color: #ED3897;
}
body.travel .quirky.shape {
  color: #61bb46;
}
body.wildcard .quirky.shape {
  color: #9DA6AB
}


/*Shop*/
body.electronics .shop.show .featured .video:after {
  background-color: #00B1DB;
}
body.health .shop.show .featured .video:after {
  background-color: #F36525;
}
body.home .shop.show .featured .video:after {
  background-color: #FFC800;
}
body.kitchen .shop.show .featured .video:after {
  background-color: #BED733;
}
body.parenting .shop.show .featured .video:after {
  background-color: #94297B;
}
body.play .shop.show .featured .video:after {
  background-color: #ED3897;
}
body.travel .shop.show .featured .video:after {
  background-color: #61bb46;
}
body.wildcard .shop.show .featured .video:after {
  background-color: #9DA6AB
}


body.electronics section.inventor {
  background-color: #00B1DB;
}
body.health section.inventor {
  background-color: #F36525;
}
body.home section.inventor {
  background-color: #FFC800;
}
body.kitchen section.inventor {
  background-color: #BED733;
}
body.parenting section.inventor {
  background-color: #94297B;
}
body.play section.inventor {
  background-color: #ED3897;
}
body.travel section.inventor {
  background-color: #61bb46;
}
body.wildcard section.inventor {
  background-color: #9DA6AB;
}




body.electronics .shop.show h2 {
  color: #00b1db;
}
body.health .shop.show h2 {
  color: #f36525;
}
body.home .shop.show h2 {
  color: #FFC800;
}
body.kitchen .shop.show h2 {
  color: #8dae29;
}
body.parenting .shop.show h2 {
  color: #94297b;
}
body.play .shop.show h2 {
  color: #ed3d96;
}
body.travel .shop.show h2 {
  color: #61bb46;
}

body.electronics .shop.index .background.image {
  background-color: #00b1db;
}
body.health .shop.index .image.background {
  background-color: #f36525;
}
body.home .shop.index .image.background {
  background-color: #ffd11a;
}
body.kitchen .shop.index .image.background {
  background-color: #BED733;
}
body.parenting .shop.index .image.background {
  background-color: #94297b;
}
body.play .shop.index .image.background {
  background-color: #ed3d96;
}
body.travel .shop.index .image.background {
  background-color: #dac1a4;
}


/* Category Progress */
#ideations .electronics .action-vote .ui.progress .bar,
#ideations.electronics .action-vote .ui.progress .bar {
   background-color: #00B1DB;
}
#ideations .health .action-vote .ui.progress .bar,
#ideations.health .action-vote .ui.progress .bar {
  background-color: #F36525;
}
#ideations .home .action-vote .ui.progress .bar,
#ideations.home .action-vote .ui.progress .bar {
  background-color: #FFC800;
}
#ideations .kitchen .action-vote .ui.progress .bar,
#ideations.kitchen .action-vote .ui.progress .bar {
  background-color: #BED733;
}
#ideations .parenting .action-vote .ui.progress .bar,
#ideations.parenting .action-vote .ui.progress .bar {
  background-color: #94297B;
}
#ideations .play .action-vote .ui.progress .bar,
#ideations.play .action-vote .ui.progress .bar {
  background-color: #ED3897;
}
#ideations .travel .action-vote .ui.progress .bar,
#ideations.travel .action-vote .ui.progress .bar {
  background-color: #61bb46;
}
#ideations .wildcard .action-vote .ui.progress .bar,
#ideations.wildcard .action-vote .ui.progress .bar {
   background-color: #9DA6AB;
}

/*******************************
   Headless (No Header)
*******************************/

body.headless > .content > .placeholder,
body.headless header.main,
body.headless .container {
  width: auto;
}


/*--------------
    Categories
---------------*/

.ui.cards .card .progress .bar,
.ui.card .progress .bar,
.ui.cards .card .progress .bar {
  background-color: #9DA6AB;
}

.ui.cards .kitchen.card .progress .bar,
.ui.kitchen.card .progress .bar,
.ui.kitchen.cards .card .progress .bar {
  background-color: #BED733;
}

.ui.cards .health.card .progress .bar,
.ui.health.card .progress .bar,
.ui.health.cards .card .progress .bar {
  background-color: #F36525;
}

.ui.cards .home.card .progress .bar,
.ui.home.card .progress .bar,
.ui.home.cards .card .progress .bar {
  background-color: #FFC800;
}

.ui.cards .electronics.card .progress .bar,
.ui.electronics.card .progress .bar,
.ui.electronics.cards .card .progress .bar {
  background-color: #00B1DB;
}

.ui.cards .travel.card .progress .bar,
.ui.travel.card .progress .bar,
.ui.travel.cards .card .progress .bar{
  background-color: #61bb46;
}

.ui.cards .parenting.card .progress .bar,
.ui.parenting.card .progress .bar,
.ui.parenting.cards .card .progress .bar {
  background-color: #94297B;
}

.ui.cards .play.card .progress .bar,
.ui.play.card .progress .bar,
.ui.play.cards .card .progress .bar {
  background-color: #ED3897;
}

.ui.cards .wildcard.card .progress .bar,
.ui.wildcard.card .progress .bar,
.ui.wildcard.cards .card .progress .bar{
  background-color: #9DA6AB;
}

/* Search specific shiz */

#search {
  color: #555555;
}

#search .ui.message {
  border: 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: bold;
}

#search h2 {
  margin-top: 0;
  text-align: center;
}

#search #search-results h2 {
  text-align: left;
  clear: both;
  display: block;
  padding-top: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #DCDDDE;
}

#search #search-results h2 span {
  color: #00B1DB;
}

#search .ui.large.form {
  width: 50%;
  margin: 0 auto 2em auto;
}

#search .left.floated {
  float: left;
  line-height: 2.5em;
}

#search .right.floated {
  float: right;
}

#search .clear {
  zoom: 1;
  clear: both;
  padding: 1em 0;
}

#search #search-results {
  padding: 0;
}

#search .clear:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#search ul.results {
  margin: 0;
  width: 100%;
  padding: 1em 0 0 0;
}

#search ul.results li {
  padding: 1em;
  width: 24%;
  float: left;
  box-sizing: border-box;
  border-radius: 0.325em;\
  margin-left: 1.25%;
  margin-bottom: 1.25%;
}

#search ul.results li { color: #333; }
#search ul.results li.electronics strong { color: #00B1DB; }
#search ul.results li.health strong { color: #F36525; }
#search ul.results li.home strong { color: #FFC800; }
#search ul.results li.kitchen strong { color: #BED733; }
#search ul.results li.travel strong { color: #61bb46; }
#search ul.results li.parenting strong { color: #94297B; }
#search ul.results li.play strong { color: #ED2A7B; }

#search ul.results li:hover {
  background: #f8f8f8;
}

#search ul.results li.user img {
  border-radius: 50%;
}

#search ul.results li.hidden { display: block; }

#search ul.results li:nth-child(4n+1) {
  margin-left: 0%;
}

#search ul.results li a {
  display: block;
  min-height: 320px;
  height: 320px;
  overflow: hidden;
}

#search ul.results li a strong {
  font-size: 1.3em;
  padding-top: 1em;
  display: block;
}

#search ul.results li span.nonsale {
  font-style: italic;
  color: #5d6266;
  opacity: 0.7;
  padding: 0.8em 0;
  font-size: 1rem;
  line-height: 1;
  display: block;
}

#search ul.results li span.price {
  display: block;
  color: #5d6266;
  padding: 0.4em 0;
  font-size: 1.4rem;
  line-height: 1;
  display: block;
  height: 1.4rem;
  margin-bottom: 0.5em;
}

#search .search-view-all {
  float: right;
  font-weight: normal;
  font-size: 0.6em;
  margin-top: 10px;
}

#search ul.results li img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

#search #no-results {
  text-align: center;
  padding: 5em 0;
}

#search ul.results .meta {
  color: rgba(0,0,0,0.4);
  margin-bottom: 0;
}

#search ul.results .excerpt {
  margin-top: 0.2em;
  color: #5d6266;
  opacity: 0.7;
  margin-bottom: 0;
}

#search ul.results cite {
  color: rgba(86,79,138,0.3);
  display: none;
}

/*
 * # Semantic Breadcrumb
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
           Breadcrumb
*******************************/

.ui.breadcrumb {
  margin: 1em 0em;
  display: inline-block;
  vertical-align: middle;
}
.ui.breadcrumb:first-child {
  margin-top: 0em;
}
.ui.breadcrumb:last-child {
  margin-bottom: 0em;
}

.ui.breadcrumb .divider {
  display: inline-block;
  opacity: 0.5;
  margin: 0em 0.15em 0em;
  
  font-size: 1em;
  color: rgba(0, 0, 0, 0.3);
}

.ui.breadcrumb a.section {
  cursor: pointer;
}
.ui.breadcrumb .section {
  display: inline-block;
  margin: 0em;
  padding: 0em;
}

/* Loose Coupling */
.ui.breadcrumb.segment {
  display: inline-block;
  padding: 0.5em 1em;
}

/*
 * # Semantic Form
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 22 2013
 */


/*******************************
           Standard
*******************************/

/*--------------------
        Form
---------------------*/

.ui.form {
  position: relative;
  max-width: 100%;
}
.ui.form :first-child {
  margin-top: 0em;
}
.ui.form :last-child {
  margin-bottom: 0em;
}

/*--------------------
        Content
---------------------*/

.ui.form > p {
  margin: 1em 0;
}

/*--------------------
        Field
---------------------*/

.ui.form .field {
  clear: both;
  margin: 0em 0em 1em;
}

/*--------------------
        Labels
---------------------*/

.ui.form .field > label {
  margin: 0em 0em 0.3em;
  display: block;

  color: #555555;
  font-size: 0.875em;
}

/*--------------------
    Standard Inputs
---------------------*/


.ui.form textarea,
.ui.form input[type="text"],
.ui.form input[type="date"],
.ui.form input[type="password"],
.ui.form input[type="url"],
.ui.form .ui.input {
  width: 100%;
}

.ui.form textarea,
.ui.form input[type="text"],
.ui.form input[type="email"],
.ui.form input[type="date"],
.ui.form input[type="password"],
.ui.form input[type="url"] {

  margin: 0em;
  padding: 0.85em 1.2em;
  font-size: 0.875em;

  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  outline: none;


  color: rgba(0, 0, 0, 0.7);

  -webkit-border-radius: 0.3125em;
  -moz-border-radius: 0.3125em;
  border-radius: 0.3125em;

  -webkit-transition:
    background-color 0.3s ease-out,
    box-shadow 0.2s ease,
    border-color 0.2s ease
  ;
  -moz-transition:
    background-color 0.3s ease-out,
    box-shadow 0.2s ease,
    border-color 0.2s ease
  ;
  -o-transition:
    background-color 0.3s ease-out,
    box-shadow 0.2s ease,
    border-color 0.2s ease
  ;
  -ms-transition:
    background-color 0.3s ease-out,
    box-shadow 0.2s ease,
    border-color 0.2s ease
  ;
  transition:
    background-color 0.3s ease-out,
    box-shadow 0.2s ease,
    border-color 0.2s ease
  ;

  -webkit-box-shadow: 0em 0em 0em 0em rgba(0, 0, 0, 0.3) inset;
  -moz-box-shadow: 0em 0em 0em 0em rgba(0, 0, 0, 0.3) inset;
  box-shadow: 0em 0em 0em 0em rgba(0, 0, 0, 0.3) inset;

  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.ui.textarea,
.ui.form textarea {
  line-height: 1.33;
  min-height: 8em;
  height: 12em;
  max-height: 24em;
  resize: vertical;
}
.ui.form select {
  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
}
.ui.form textarea,
.ui.form input[type="checkbox"] {
  vertical-align: top;
}

/*--------------------
       Dividers
---------------------*/

.ui.form .divider {
  clear: both;
  margin: 1em 0em;
}


/*--------------------
   Types of Messages
---------------------*/

.ui.form .info.message,
.ui.form .warning.message,
.ui.form .error.message {
  display: none;
}

/* Assumptions */
.ui.form .message:first-child {
  margin-top: 0px;
}

/*--------------------
   Validation Prompt
---------------------*/

.ui.form .field .prompt.label {
  white-space: nowrap;
}
.ui.form .inline.field .prompt {
  margin-top: 0em;
  margin-left: 1em;
}
.ui.form .inline.field .prompt:before {
  margin-top: -0.3em;
  bottom: auto;
  right: auto;
  top: 50%;
  left: 0em;
}


/*******************************
            States
*******************************/


/*--------------------
        Focus
---------------------*/

.ui.form input[type="text"]:focus,
.ui.form input[type="password"]:focus,
.ui.form textarea:focus {
  color: rgba(0, 0, 0, 0.85);
  border-color: rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;

  -webkit-box-shadow: 0.3em 0em 0em 0em rgba(0, 0, 0, 0.2) inset;
  -moz-box-shadow: 0.3em 0em 0em 0em rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0.3em 0em 0em 0em rgba(0, 0, 0, 0.2) inset;
}

/*--------------------
        Error
---------------------*/

/* On Form */
.ui.form.warning .warning.message {
  display: block;
}

/*--------------------
        Warning
---------------------*/

/* On Form */
.ui.form.error .error.message {
  display: block;
}

/* On Field(s) */
.ui.form .fields.error .field label,
.ui.form .field.error label {
  color: #EF4D6D;
}
.ui.form .fields.error .field textarea,
.ui.form .fields.error .field input[type="text"],
.ui.form .fields.error .field input[type="email"],
.ui.form .fields.error .field input[type="date"],
.ui.form .fields.error .field input[type="password"],
.ui.form .field.error textarea,
.ui.form .field.error input[type="text"],
.ui.form .field.error input[type="email"],
.ui.form .field.error input[type="date"],
.ui.form .field.error input[type="password"] {
  background-color: #FFFAFA;
  border-color: #E7BEBE;
  border-left: none;

  color: #EF4D6D;
  padding-left: 1.2em;

  border-bottom-left-radius: 0;
  border-top-left-radius: 0;

  -webkit-box-shadow: 0.3em 0em 0em 0em #EF4D6D inset;
  -moz-box-shadow: 0.3em 0em 0em 0em #EF4D6D inset;
  box-shadow: 0.3em 0em 0em 0em #EF4D6D inset;

}
.ui.form .field.error textarea:focus,
.ui.form .field.error input[type="text"]:focus,
.ui.form .field.error input[type="email"]:focus,
.ui.form .field.error input[type="password"]:focus {
  border-color: rgba(255, 80, 80, 1);
  color: rgba(255, 80, 80, 1);

  -webkit-box-shadow: 0.3em 0em 0em 0em #FF5050 inset;
  -moz-box-shadow: 0.3em 0em 0em 0em #FF5050 inset;
  box-shadow: 0.3em 0em 0em 0em #FF5050 inset;
}

/*--------------------
  Empty (Placeholder)
---------------------*/

/* browsers require these rules separate */
.ui.form ::-webkit-input-placeholder {
  color: #E0E0E0;
}
.ui.form ::-moz-placeholder {
  color: #333333;
}
.ui.form :focus::-webkit-input-placeholder {
  color: #AAAAAA;
}
.ui.form :focus::-moz-placeholder {
  color: #333333;
}

/* Error Placeholder */
.ui.form .error ::-webkit-input-placeholder {
  color: rgba(255, 80, 80, 0.4);
}
.ui.form .error ::-moz-placeholder {
  color: rgba(255, 80, 80, 0.4);
}
.ui.form .error :focus::-webkit-input-placeholder {
  color: rgba(255, 80, 80, 0.7);
}
.ui.form .error :focus::-moz-placeholder {
  color: rgba(255, 80, 80, 0.7);
}

/*--------------------
       Disabled
---------------------*/

.ui.form .field :disabled,
.ui.form .field.disabled {
  opacity: 0.5;
}
.ui.form .field.disabled label {
  opacity: 0.5;
}
.ui.form .field.disabled :disabled {
  opacity: 1;
}


/*--------------------
     Loading State
---------------------*/

/* On Form */
.ui.form.loading {
  position: relative;
}
.ui.form.loading:after {
  position: absolute;
  top: 0%;
  left: 0%;
  content: '';

  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8) url(../components/semantic/images/loader-large.gif?1419868612) no-repeat 50% 50%;
  visibility: visible;
}


/*******************************
           Variations
*******************************/


/*--------------------
      Fluid Width
---------------------*/

.ui.form.fluid {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}


/*--------------------------
  Input w/ attached Button
---------------------------*/

.ui.form input.attached {
  width: auto;
}

/*--------------------
      Date Input
---------------------*/

.ui.form .date.field > label {
  position: relative;
}
.ui.form .date.field > label:after {
  position: absolute;
  top: 1.4em;
  right: 0.5em;

  font-family: 'Icons';
  content: '📅'; /* '\1f4c5' */
  font-size: 1.5em;
  font-weight: normal;
  color: #CCCCCC;
}


/*--------------------
    Inverted Colors
---------------------*/
.ui.inverted.form label {
  color: #FFFFFF;
}
.ui.inverted.form .field.error textarea,
.ui.inverted.form .field.error input[type="text"] {
  background-color: #FFCCCC;
}

/*--------------------
     Field Groups
---------------------*/

/* Grouped Vertically */
.ui.form .grouped.fields {
  margin: 0em 0em 1em;
}
.ui.form .grouped.fields .field {
  display: block;
  float: none;
  margin: 0.5em 0em;
  padding: 0em;
}


/*--------------------
          Fields
---------------------*/

/* Split fields */
.ui.form .fields {
  clear: both;
}
.ui.form .fields:after {
  content: ' ';
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.ui.form .fields .field {
  clear: none;
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.ui.form .fields .field:first-child {
  border-left: none;
  box-shadow: none;
}

/* Other Combinations */
.ui.form .two.fields .field {
  width: 50%;
  padding-left: 1%;
  padding-right: 1%;
}

.ui.form .three.fields .field {
  width: 33.333%;
  padding-left: 1%;
  padding-right: 1%;
}
.ui.form .four.fields .field {
  width: 25%;
  padding-left: 1%;
  padding-right: 1%;
}
.ui.form .five.fields .field {
  width: 20%;
  padding-left: 1%;
  padding-right: 1%;
}

/* override sides, ie8 no last-child */
.ui.form .fields .field:first-child {
  padding-left: 0%;
}
.ui.form .fields .field:last-child {
  padding-right: 0%;
}


/*--------------------
    Inline Fields
---------------------*/

.ui.form .inline.fields .field {
  margin-right: 0.5em;
}
.ui.form .inline.fields .field > label,
.ui.form .inline.fields .field > p,
.ui.form .inline.fields .field > input,
.ui.form .inline.fields .field > select,
.ui.form .inline.field > label,
.ui.form .inline.field > p,
.ui.form .inline.field > input,
.ui.form .inline.field > select {

  display: inline-block;
  width: auto;

  margin-top: 0em;
  margin-bottom: 0em;

  vertical-align: middle;
  font-size: 1em;
}
.ui.form .inline.fields .field > input,
.ui.form .inline.field > input {
  font-size: 0.875em;
}

.ui.form .inline.fields .field > :first-child,
.ui.form .inline.field > :first-child {
  margin: 0em 0.5em 0em 0em;
}
.ui.form .inline.fields .field > :only-child,
.ui.form .inline.field > :only-child {
  margin: 0em;
}


/*--------------------
        Sizes
---------------------*/

/* Standard */
.ui.small.form {
  font-size: 0.875em;
}
.ui.small.form textarea,
.ui.small.form input[type="text"],
.ui.small.form input[type="password"],
.ui.small.form label {
  font-size: 1em;
}

/* Large */
.ui.large.form {
  font-size: 1.125em;
}


/*
 * # Semantic Grid 
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: May 6 2013
 */

/*******************************
            Grid
*******************************/

.ui.grid {
  display: block;
  text-align: left;

  font-size: 0em;
  margin: 0% -1.5%;
  padding: 0%;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.ui.grid:after,
.ui.row:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/*-------------------
       Columns
--------------------*/

.ui.grid > .column,
.ui.grid > .row > .column {

  display: inline-block;
  text-align: left;
  font-size: 1rem;

  padding-left: 1.5%;
  padding-right: 1.5%;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  vertical-align: top;
}

/*-------------------
        Rows
--------------------*/

.ui.grid > .row {
  display: block;
  width: 100% !important;
  margin-top: 1.5%;
  padding: 1.5% 0% 0%;
  font-size: 0rem;
}
.ui.grid > .row:first-child {
  padding-top: 0rem;
  margin-top: 0rem;
}

/*-------------------
      Content
--------------------*/

.ui.grid > .row > img,
.ui.grid > .row > .column > img {
  max-width: 100%;  
}

.ui.grid .column > .ui.segment:only-child {
  margin: 0em;
}

/*-------------------
    Grids in Grids
--------------------*/

.ui.grid .column > .grid {
  margin-left: -1.5%;
  margin-right: -1.5%;
}


/*******************************
           Variations
*******************************/


/*-------------------
        Page
--------------------*/

.ui.page.grid {
  margin: 0%;
  padding: 0% 2%;
}


/*-------------------
      Responsive
--------------------*/

.ui.responsive.grid {
  margin-left: 0% !important;
  margin-right: 0% !important;
  min-width: 320px;
}

@media only screen and (max-width : 1000px) {
  .ui.responsive.grid {
    padding: 0% 5.55%;
  }
  .ui.responsive.grid > .column,
  .ui.responsive.grid > .row > .column {
  }
}
@media only screen and (min-width : 1000px) {
  .ui.responsive.grid {
    padding: 0% 8%;
  }
  .ui.responsive.grid > .column,
  .ui.responsive.grid > .row > .column {
  }
}
@media only screen and (min-width : 1500px) {
  .ui.responsive.grid {
    padding: 0% 13%;
  }
  .ui.responsive.grid > .column,
  .ui.responsive.grid > .row > .column {
  }
}
@media only screen and (min-width : 1750px) {
  .ui.responsive.grid {
    padding: 0% 18%;
  }
  .ui.responsive.grid > .column,
  .ui.responsive.grid > .row > .column {
  }
}
@media only screen and (min-width : 2000px) {
  .ui.responsive.grid {
    padding: 0% 23%;
  }
  .ui.responsive.grid > .column,
  .ui.responsive.grid > .row > .column {
  }
}

/*-------------------
    Column Width
--------------------*/

/* Sizing Combinations */
.ui.grid .one.wide.column {
  width: 6.25%;
}
.ui.grid .two.wide.column {
  width: 12.5%;
}
.ui.grid .three.wide.column {
  width: 18.75%;
}
.ui.grid .four.wide.column {
  width: 25%;
}
.ui.grid .five.wide.column {
  width: 31.25%;
}
.ui.grid .six.wide.column {
  width: 37.5%;
}
.ui.grid .seven.wide.column {
  width: 43.75%;
}
.ui.grid .eight.wide.column {
  width: 50%;
}
.ui.grid .nine.wide.column {
  width: 56.25%;
}
.ui.grid .ten.wide.column {
  width: 62.5%;
}
.ui.grid .eleven.wide.column {
  width: 68.75%;
}
.ui.grid .twelve.wide.column {
  width: 75%;
}
.ui.grid .thirteen.wide.column {
  width: 81.25%;
}
.ui.grid .fourteen.wide.column {
  width: 87.5%;
}
.ui.grid .fifteen.wide.column {
  width: 93.75%;
}
.ui.grid .sixteen.wide.column {
  width: 100%;
}

/*-------------------
     Column Count
--------------------*/

/* Standard */
.ui.grid > .column,
.ui.grid > .row > .column {
  width: 6.25%;
}

/* Assume full width with one column */
.ui.one.column.grid > .row > .column,
.ui.one.column.grid > .column,
.ui.grid > .one.column.row > .column {
  width: 100%;
}
.ui.two.column.grid > .row > .column,
.ui.two.column.grid > .column,
.ui.grid > .two.column.row > .column {
  width: 50%;
}
.ui.three.column.grid > .row > .column, 
.ui.three.column.grid > .column,
.ui.grid > .three.column.row > .column {
  width: 33.3333%;
}
.ui.four.column.grid > .row > .column, 
.ui.four.column.grid > .column,
.ui.grid > .four.column.row > .column {
  width: 25%;
}
.ui.five.column.grid > .row > .column, 
.ui.five.column.grid > .column,
.ui.grid > .five.column.row > .column {
  width: 20%;
}
.ui.six.column.grid > .row > .column,
.ui.six.column.grid > .column,
.ui.grid > .six.column.row > .column {
  width: 16.66667%;
}
.ui.seven.column.grid > .row > .column, 
.ui.seven.column.grid > .column,
.ui.grid > .seven.column.row > .column {
  width: 14.2857%;
}
.ui.eight.column.grid > .row > .column, 
.ui.eight.column.grid > .column,
.ui.grid > .eight.column.row > .column {
  width: 12.5%;
}
.ui.nine.column.grid > .row > .column, 
.ui.nine.column.grid > .column,
.ui.grid > .nine.column.row > .column {
  width: 11.1111%;
}
.ui.ten.column.grid > .row > .column,
.ui.ten.column.grid > .column,
.ui.grid > .ten.column.row > .column {
  width: 10%;
}
.ui.eleven.column.grid > .row > .column, 
.ui.eleven.column.grid > .column,
.ui.grid > .eleven.column.row > .column {
  width: 9.0909%;
}
.ui.twelve.column.grid > .row > .column, 
.ui.twelve.column.grid > .column,
.ui.grid > .twelve.column.row > .column {
  width: 8.3333%;
}
.ui.thirteen.column.grid > .row > .column, 
.ui.thirteen.column.grid > .column,
.ui.grid > .thirteen.column.row > .column {
  width: 7.6923%;
}
.ui.fourteen.column.grid > .row > .column, 
.ui.fourteen.column.grid > .column,
.ui.grid > .fourteen.column.row > .column {
  width: 7.1428%;
}
.ui.fifteen.column.grid > .row > .column, 
.ui.fifteen.column.grid > .column,
.ui.grid > .fifteen.column.row > .column {
  width: 6.6666%;
}
.ui.sixteen.column.grid > .row > .column, 
.ui.sixteen.column.grid > .column,
.ui.grid > .sixteen.column.row > .column {
  width: 6.25%;
}

/* Assume full width with one column */
.ui.grid > .column:only-child,
.ui.grid > .row > .column:only-child {
  width: 100%;
}


/* Increase Gutters */
/*
.ui.two.column.grid,
.ui.three.column.grid,
.ui.four.column.grid {
  margin-left: -3%;
  margin-right: -3%;
}
.ui.two.column.grid > .row > .column,
.ui.two.column.grid > .column,
.ui.three.column.grid > .row > .column,
.ui.three.column.grid > .column,
.ui.four.column.grid > .row > .column,
.ui.four.column.grid > .column {
  padding-left: 3%;
  padding-right: 3%;
}

.ui.five.column.grid,
.ui.six.column.grid,
.ui.seven.column.grid,
.ui.eight.column.grid {
  margin-left: -2%;
  margin-right: -2%;
}
.ui.five.column.grid > .row > .column,
.ui.five.column.grid > .column,
.ui.six.column.grid > .row > .column,
.ui.six.column.grid > .column,
.ui.seven.column.grid > .row > .column,
.ui.seven.column.grid > .column,
.ui.eight.column.grid > .row > .column,
.ui.eight.column.grid > .column {
  padding-left: 2%;
  padding-right: 2%;
}
*/

/*----------------------
       "Floated"
-----------------------*/

.ui.grid .left.floated.column {
  float: left;
}
.ui.grid .right.floated.column {
  float: right;
}

/*----------------------
       Divided
-----------------------*/

.ui.divided.grid,
.ui.divided.grid > .row {
  display: table;
  width: 100%;
  margin-left: 0% !important;
  margin-right: 0% !important;
}
.ui.divided.grid > .column,
.ui.divided.grid > .row > .column {
  display: table-cell;
  -webkit-box-shadow: 
    -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
    -2px 0px 0px 0px rgba(255, 255, 255, 0.8)
  ;
  -moz-box-shadow: 
    -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
    -2px 0px 0px 0px rgba(255, 255, 255, 0.8)
  ;
  box-shadow: 
    -1px 0px 0px 0px rgba(0, 0, 0, 0.1),
    -2px 0px 0px 0px rgba(255, 255, 255, 0.8)
  ;
}
.ui.divided.grid > .column:first-child,
.ui.divided.grid > .row > .column:first-child {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Vertically Divided */
.ui.vertically.divided.grid > .row {
  -webkit-box-shadow: 
    0px -1px 0px 0px rgba(0, 0, 0, 0.1),
    0px -2px 0px 0px rgba(255, 255, 255, 0.8)
  ;
  -moz-box-shadow: 
    0px -1px 0px 0px rgba(0, 0, 0, 0.1),
    0px -2px 0px 0px rgba(255, 255, 255, 0.8)
  ;
  box-shadow: 
    0px -1px 0px 0px rgba(0, 0, 0, 0.1),
    0px -2px 0px 0px rgba(255, 255, 255, 0.8)
  ;
}
.ui.vertically.divided.grid > .row > .column,
.ui.vertically.divided.grid > .column,
.ui.vertically.divided.grid > .row:first-child {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}


/*----------------------
         Celled
-----------------------*/

.ui.celled.grid {
  display: table;
  width: 100%;
  margin-left: 0% !important;
  margin-right: 0% !important;
  -webkit-box-shadow: 0px 0px 0px 1px #DFDFDF;
  -moz-box-shadow: 0px 0px 0px 1px #DFDFDF;
  box-shadow: 0px 0px 0px 1px #DFDFDF;
}
.ui.celled.grid > .row {
  display: table;
  width: 100%;
  margin-top: 0em;
  padding-top: 0em;
  -webkit-box-shadow: 0px -1px 0px 0px #DFDFDF;
  -moz-box-shadow: 0px -1px 0px 0px #DFDFDF;
  box-shadow: 0px -1px 0px 0px #DFDFDF;
}
.ui.celled.grid > .column,
.ui.celled.grid > .row > .column {
  display: table-cell;
  padding: 0.75em;
  -webkit-box-shadow: -1px 0px 0px 0px #DFDFDF;
  -moz-box-shadow: -1px 0px 0px 0px #DFDFDF;
  box-shadow: -1px 0px 0px 0px #DFDFDF;
}
.ui.celled.grid > .column:first-child,
.ui.celled.grid > .row > .column:first-child {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.ui.celled.repsonsive.grid {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/*----------------------
  Horizontally Centered
-----------------------*/

/* Vertical Centered */
.ui.left.aligned.grid,
.ui.left.aligned.grid > .row > .column,
.ui.left.aligned.grid > .column,
.ui.grid .left.aligned.column,
.ui.grid > .left.aligned.row > .column {
  text-align: left;
}
.ui.center.aligned.grid,
.ui.center.aligned.grid > .row > .column,
.ui.center.aligned.grid > .column,
.ui.grid .center.aligned.column,
.ui.grid > .center.aligned.row > .column {
  text-align: center;
}
.ui.right.aligned.grid,
.ui.right.aligned.grid > .row > .column,
.ui.right.aligned.grid > .column,
.ui.grid .right.aligned.column,
.ui.grid > .right.aligned.row > .column {
  text-align: right;
}


/*----------------------
  Vertically Centered
-----------------------*/

/* Vertical Centered */
.ui.top.aligned.grid,
.ui.top.aligned.grid > .row > .column,
.ui.top.aligned.grid > .column,
.ui.grid .top.aligned.column,
.ui.grid > .top.aligned.row > .column {
  vertical-align: top;
}
.ui.middle.aligned.grid,
.ui.middle.aligned.grid > .row > .column,
.ui.middle.aligned.grid > .column,
.ui.grid .middle.aligned.column,
.ui.grid > .middle.aligned.row > .column {
  vertical-align: middle;
}
.ui.bottom.aligned.grid,
.ui.bottom.aligned.grid > .row > .column,
.ui.bottom.aligned.grid > .column,
.ui.grid .bottom.aligned.column,
.ui.grid > .bottom.aligned.row > .column {
  vertical-align: bottom;
}

/*----------------------
  Equal Height Columns
-----------------------*/

.ui.grid > .equal.height.row {
  display: table;
  width: 100%;
}
.ui.grid > .equal.height.row > .column {
  display: table-cell;
}


/*-------------------
       Stackable
--------------------*/

@media only screen and (max-width : 960px) {
  .ui.stackable.grid {
    display: block !important;
    padding: 0em;
  }
  .ui.stackable.grid .row > .column,
  .ui.stackable.grid > .column {
/*    display: block !important;
    width: auto !important;
    
    margin: 1.5em 5% 0em !important;
    padding: 1.5em 0em 0em !important;

    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;*/
  }
  .ui.stackable.divided.grid .column,
  .ui.stackable.celled.grid .column {
    border-top: 1px dotted rgba(0, 0, 0, 0.1);
  }
  .ui.stackable.grid > .row:first-child > .column:first-child,
  .ui.stackable.grid > .column:first-child {
    margin-top: 0em !important;
    padding-top: 0em !important;
  }
  .ui.stackable.divided.grid > .row:first-child > .column:first-child,
  .ui.stackable.celled.grid > .row:first-child > .column:first-child,
  .ui.stackable.divided.grid > .column:first-child,
  .ui.stackable.celled.grid > .column:first-child {
    border-top: none !important;
  }

  /* Remove pointers from vertical menus 
  .ui.stackable.grid .vertical.pointing.menu .item:after {
    display: none;
  }*/

}
/*
 * # Semantic Menu
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
            Standard
*******************************/

/*--------------
      Menu
---------------*/

.ui.menu {
  margin: 1rem 0rem;
  background-color: #FFFFFF;
  font-size: 0px;

  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);

  -webkit-border-radius: 0.1875rem;
  -moz-border-radius: 0.1875rem;
  border-radius: 0.1875rem;
}
.ui.menu:first-child {
  margin-top: 0rem;
}
.ui.menu:last-child {
  margin-bottom: 0rem;
}


.ui.menu:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}


.ui.menu > .item:first-child {
  border-radius: 0.1875em 0px 0px 0.1875em;
}
.ui.menu > .item:last-child {
  border-radius: 0px 0.1875em 0.1875em 0px;
}
.ui.menu .item,
.ui.menu .item > a {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

  vertical-align: middle;

  line-height: 1;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition:
    opacity 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease
  ;
  -moz-transition:
    opacity 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease
  ;
  -o-transition:
    opacity 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease
  ;
  -ms-transition:
    opacity 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease
  ;
  transition:
    opacity 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease
  ;
}

/*--------------
    Colors
---------------*/

/* Text Color */
.ui.menu .item,
.ui.menu .item > a {
  color: rgba(0, 0, 0, 0.75);
}
.ui.menu .item > a:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.8);
}
.ui.menu .item .item,
.ui.menu .item .item > a {
  color: rgba(30, 30, 30, 0.8);
}
.ui.menu .item .item .item,
.ui.menu .item .item .item > a {
  color: rgba(30, 30, 30, 0.6);
}
.ui.menu .dropdown.item .menu .item,
.ui.menu .dropdown.item .menu .item a {
  color: rgba(0, 0, 0, 0.75);
}
/* Hover */
.ui.menu .item .menu a.item:hover,
.ui.menu .item .menu a.item.hover,
.ui.menu .item .menu .link.item:hover,
.ui.menu .item .menu .link.item.hover {
  color: rgba(35, 35, 35, 0.95);
}
.ui.menu .dropdown.item .menu .item a:hover {
  color: rgba(0, 0, 0, 0.9);
}
/* Active */
.ui.menu .active.item,
.ui.menu .active.item a {
  color: rgba(0, 0, 0, 0.95);

  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

/*--------------
      Items
---------------*/

.ui.menu .item {
  position: relative;
  display: inline-block;

  padding: 0.75em 0.95em;

  border-top: 0em solid rgba(0, 0, 0, 0);

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  user-select: none;
}

.ui.menu .item > a {
  display: block;
  margin: -0.75em -0.95em;
  padding: 0.75em 0.95em;
}

.ui.menu .menu {
  margin: 0em;
}

.ui.menu .menu.left {
  float: left;
}
.ui.menu .menu.right {
  float: right;
}


/*--------------
    Borders
---------------*/

.ui.menu .item:before {
  position: absolute;
  content: '';
  top: 0%;
  right: 0px;
  width: 1px;
  height: 100%;
  background-image: -webkit-linear-gradient(top,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%)
  ;
  background-image: -moz-linear-gradient(top,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%)
  ;
  background-image: -o-linear-gradient(top,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%)
  ;
  background-image: -ms-linear-gradient(top,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%)
  ;
  background-image: linear-gradient(top,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.05) 100%)
  ;
}
.ui.menu .menu.right .item:before,
.ui.menu .item.right:before {
  right: auto;
  left: 0px;
}
.ui.menu .item:last-child::before {
  display: none;
}


/*--------------
  Text Content
---------------*/

.ui.menu .text.item,
.ui.menu .item > p:only-child {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.ui.menu .text.item > *,
.ui.menu .item > p:only-child {
  line-height: 1.3;
  color: rgba(0, 0, 0, 0.6);
}
.ui.menu .item > p:first-child {
  margin-top: 0em;
}
.ui.menu .item > p:last-child {
  margin-bottom: 0em;
}
.ui.menu .item > p:only-child {
  margin: 0em;
}

/*--------------
  Form Content
---------------*/

.ui.menu input {
  margin: 0.25em 0em;
  padding-top: 0.55em;
  padding-bottom: 0.55em;
}

/*--------------
     Header
---------------*/

.ui.menu .header.item {
  background-color: rgba(0, 0, 0, 0.04);
  margin: 0em;
}
.ui.vertical.menu .header.item {
  font-weight: bold;
}


/*--------------
    Dropdowns
---------------*/
.ui.menu .dropdown.item .menu .item {
  color: rgba(0, 0, 0, 0.75);
}
.ui.menu .ui.dropdown .menu .item:before {
  display: none;
}


/*--------------
     Labels
---------------*/

.ui.menu .item > .label,
.ui.menu .item > a > .label {
  font-size: 0.875em;
  margin: -0.3em 0em -0.3em 0.3em;
  padding: 0.3em 0.8em;
  vertical-align: baseline;
  text-transform: none;
}
.ui.menu .item > .floating.label,
.ui.menu .item > a > .floating.label {
  padding: 0.3em 0.8em;
}

/*--------------
      Images
---------------*/

.ui.menu .item > img:only-child {
  display: block;
  max-width: 100%;
  margin: 0em auto;
}

/*******************************
             States
*******************************/

/*--------------
      Hover
---------------*/

/* Pseudo states cautiously used for convenience */
.ui.link.menu .item:hover,
.ui.menu .item.hover,
.ui.menu .link.item:hover,
.ui.menu a.item:hover,
.ui.menu .ui.dropdown .menu .item.hover,
.ui.menu .ui.dropdown .menu .item:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.02);
}

.ui.menu .ui.dropdown.hover,
.ui.menu .ui.dropdown:hover {

  -webkit-border-bottom-right-radius: 0em;
  -moz-border-bottom-right-radius: 0em;
  border-bottom-right-radius: 0em;

  -webkit-border-bottom-left-radius: 0em;
  -moz-border-bottom-left-radius: 0em;
  border-bottom-left-radius: 0em;
}



/*--------------
      Down
---------------*/

.ui.link.menu .item:active,
.ui.menu .item.down,
.ui.menu .link.item:active,
.ui.menu a.item:active,
.ui.menu .item > a:active,
.ui.menu .ui.dropdown .menu .item.down,
.ui.menu .ui.dropdown .menu .item:active {
  background-color: rgba(0, 0, 0, 0.05);

}

/*--------------
     Active
---------------*/

.ui.menu .active.item  {
  padding-top: 0.55em;
  border-top: 0.2em solid rgba(50, 50, 50, 0.8);
  color: rgba(0, 0, 0, 0.95);

  background-color: rgba(0, 0, 0, 0.01);
}
.ui.vertical.menu .active.item {
  border-left: 0.2em solid rgba(50, 50, 50, 0.8);
  padding-top: 0.75em;
  padding-left: 0.76em;

  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
}
.ui.vertical.menu > .active.item:first-child {
  -webkit-border-radius: 0em 0.1875em 0em 0em;
  -moz-border-radius: 0em 0.1875em 0em 0em;
  border-radius: 0em 0.1875em 0em 0em;
}
.ui.vertical.menu > .active.item:last-child {
  -webkit-border-radius: 0em 0em 0.1875em 0em;
  -moz-border-radius: 0em 0em 0.1875em 0em;
  border-radius: 0em 0em 0.1875em 0em;
}
.ui.vertical.menu > .active.item:only-child {
  -webkit-border-radius: 0em 0.1875em 0.1875em 0em;
  -moz-border-radius: 0em 0.1875em 0.1875em 0em;
  border-radius: 0em 0.1875em 0.1875em 0em;
}



.ui.vertical.menu .active.item .menu .active.item {
  border-left: none;
}
.ui.vertical.menu .active.item .menu .active.item {
  padding-left: 1.5rem;
}
.ui.vertical.menu .item .menu .active.item {
  background-color: rgba(0, 0, 0, 0.03);
  border-left: none;
}

/*--------------
     Disabled
---------------*/

.ui.menu .item.disabled,
.ui.menu .item.disabled:hover,
.ui.menu .item.disabled.hover {
  cursor: default;
  color: rgba(0, 0, 0, 0.2);
  background-color: transparent;
}


/*--------------------
     Loading
---------------------*/

/* On Form */
.ui.menu.loading {
  position: relative;
}
.ui.menu.loading:after {
  position: absolute;
  top: 0%;
  left: 0%;
  content: '';

  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8) url(../components/semantic/images/loader-large.gif?1419868612) no-repeat 50% 50%;
  visibility: visible;
}



/*******************************
          Variations
*******************************/

/*--------------
    Vertical
---------------*/

.ui.vertical.menu .item {
  display: block;
  border-top: none;
  border-left: 0em solid rgba(0, 0, 0, 0);
  border-right: none;
}
.ui.vertical.menu > .item:first-child {
  border-radius: 0.1875em 0.1875em 0px 0px;
}
.ui.vertical.menu > .item:last-child {
  border-radius: 0px 0px 0.1875em 0.1875em;
}

.ui.vertical.menu .item > .icon {
  float: right;
  width: 1.22em;
  margin: 0em 0em 0em 0.5em;
}

/*--- Border ---*/
.ui.vertical.menu .item:before {
  position: absolute;
  content: '';
  top: 0%;
  left: 0px;
  width: 100%;
  height: 1px;
  background-image: -webkit-linear-gradient(left,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.1) 1.5em,
    rgba(0, 0, 0, 0.03) 100%)
  ;
  background-image: -moz-linear-gradient(left,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.1) 1.5em,
    rgba(0, 0, 0, 0.03) 100%)
  ;
  background-image: -o-linear-gradient(left,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.1) 1.5em,
    rgba(0, 0, 0, 0.03) 100%)
  ;
  background-image: -ms-linear-gradient(left,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.1) 1.5em,
    rgba(0, 0, 0, 0.03) 100%)
  ;
  background-image: linear-gradient(left,
    rgba(0, 0, 0, 0.03) 0%,
    rgba(0, 0, 0, 0.1) 1.5em,
    rgba(0, 0, 0, 0.03) 100%)
  ;
}

.ui.vertical.menu .item:first-child:before {
  background-image: none;
}
.ui.vertical.menu .item:last-child::before {
  display: block;
}

/*--- Dropdown ---*/
.ui.vertical.menu .dropdown.item > i {
  float: right;
}
.ui.vertical.menu .simple.dropdown.item .menu {
  top: 0% !important;
  left: 100%;
  margin: 0em;
}
.ui.vertical.menu .dropdown.item .menu .item {
  font-size: 0.875em;
  padding: 0.75em 1em;
}
.ui.vertical.menu .dropdown.item .menu .item .icon {
  margin-right: 0em;
}

/*--- Sub Menu ---*/
.ui.vertical.menu .item > .menu {
  margin: 0.5em -0.95em 0em;
}
.ui.vertical.menu .item > .menu > .item {
  padding: 0.5rem 1.5rem;
  font-size: 0.875em;
}
.ui.vertical.menu .item > .menu > .item:before {
  display: none;
}
.ui.vertical.menu .item > .menu > .item > a {
  margin: -0.5rem -1.5rem;
  padding: 0.5rem 1.5rem;
}


/*--------------
     Tiered
---------------*/

.ui.tiered.menu > .menu > .item {
  color: rgba(0, 0, 0, 0.5);
}
.ui.tiered.menu > .menu > .item:hover,
.ui.tiered.menu > .menu > .item.hover {
  color: rgba(0, 0, 0, 0.8);
}
.ui.tiered.menu .item.active {
  box-shadow: 0px 1px 0px 0px #FBFBFB;
  color: rgba(0, 0, 0, 0.8);
}

.ui.tiered.menu {
}
.ui.tiered.menu .sub.menu {
  background-color: rgba(0, 0, 0, 0.01);
  border-radius: 0em;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: none;
  color: #FFFFFF;
}
.ui.tiered.menu .sub.menu .item {
  font-size: 0.875rem;
}
.ui.tiered.menu .sub.menu .item:before {
  background-image: none;
}
.ui.tiered.menu .sub.menu .active.item {
  padding-top: 0.75em;
  background-color: transparent;
  border-radius: 0 0 0 0;
  border-top: medium none;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.7);
}

/* Inverted */
.ui.inverted.tiered.menu > .menu > .item {
  color: rgba(255, 255, 255, 0.5);
}
.ui.inverted.tiered.menu .sub.menu {
  background-color: rgba(0, 0, 0, 0.2);
}
.ui.inverted.tiered.menu .sub.menu .item {
  color: rgba(255, 255, 255, 0.6);
}

.ui.inverted.tiered.menu > .menu > .item:hover,
.ui.inverted.tiered.menu > .menu > .item.hover {
  color: rgba(255, 255, 255, 0.9);
}
.ui.inverted.tiered.menu > .sub.menu > .active.item,
.ui.inverted.tiered.menu > .menu > .active.item {
  color: rgba(255, 255, 255, 1);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/*--------------
    Colors
---------------*/

/*--- Light Colors  ---*/
.ui.menu .green.active.item,
.ui.green.menu .active.item {
  border-color: #A1CF64 !important;
}
.ui.menu .red.active.item,
.ui.red.menu .active.item {
  border-color: #EF4D6D !important;
}
.ui.menu .blue.active.item,
.ui.blue.menu .active.item {
  border-color: #6ECFF5 !important;
}
.ui.menu .purple.active.item,
.ui.purple.menu .active.item {
  border-color: #564F8A !important;
}
.ui.menu .orange.active.item,
.ui.orange.menu .active.item {
  border-color: #F05940 !important;
}
.ui.menu .teal.active.item,
.ui.teal.menu .active.item {
  border-color: #00B5AD !important;
}

/*--------------
    Pagination
---------------*/

.ui.pagination.menu {
  margin: 0em;
  display: inline-block;
}

.ui.pagination.menu .item {
  min-width: 2.7em;
  min-height: 2.55em;
  text-align: center;
}
.ui.pagination.menu.floated {
  display: block;
}

/* active */
.ui.pagination.menu .active.item {
  border-top: none;
  padding-top: 0.75em;
  background-color: rgba(0, 0, 0, 0.05);
}


/*--------------
    Inverted
---------------*/

.ui.inverted.menu {
  background-color: #333333;
  box-shadow: none;
}
.ui.inverted.menu .header.item {
  margin: 0em;

  background-color: rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.ui.inverted.menu .item,
.ui.inverted.menu .item > a {
  color: #FFFFFF;
}
.ui.inverted.menu .item .item,
.ui.inverted.menu .item .item > a {
  color: rgba(255, 255, 255, 0.8);
}
.ui.inverted.menu .item .item > a:hover {
  background-color: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.9);
}
.ui.inverted.menu .item > p:only-child {
  color: rgba(255, 255, 255, 0.75);
}
.ui.inverted.menu .dropdown.item .menu .item,
.ui.inverted.menu .dropdown.item .menu .item a {
  color: rgba(0, 0, 0, 0.75) !important;
}
.ui.inverted.menu .item.disabled,
.ui.inverted.menu .item.disabled:hover,
.ui.inverted.menu .item.disabled.hover {
  color: rgba(255, 255, 255, 0.2);
}



/*--- Border ---*/
.ui.inverted.menu .item:before {
  background-image: -webkit-linear-gradient(top,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 100%)
  ;
  background-image: -moz-linear-gradient(top,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 100%)
  ;
  background-image: -o-linear-gradient(top,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 100%)
  ;
  background-image: -ms-linear-gradient(top,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 100%)
  ;
  background-image: linear-gradient(top,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 100%)
  ;
}
.ui.vertical.inverted.menu .item:before {
  background-image: -webkit-linear-gradient(left,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 100%)
  ;
  background-image: -moz-linear-gradient(left,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 100%)
  ;
  background-image: -o-linear-gradient(left,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 100%)
  ;
  background-image: -ms-linear-gradient(left,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 100%)
  ;
  background-image: linear-gradient(left,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.03) 100%)
  ;
}

/*--- Hover ---*/
.ui.link.inverted.menu .item:hover,
.ui.inverted.menu .item.hover,
.ui.inverted.menu .link.item:hover,
.ui.inverted.menu a.item:hover,
.ui.inverted.menu .dropdown.item.hover,
.ui.inverted.menu .dropdown.item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.ui.inverted.menu a.item:hover,
.ui.inverted.menu .item.hover,
.ui.inverted.menu .item > a:hover,
.ui.inverted.menu .item .menu a.item:hover,
.ui.inverted.menu .item .menu a.item.hover,
.ui.inverted.menu .item .menu .link.item:hover,
.ui.inverted.menu .item .menu .link.item.hover {
  color: rgba(255, 255, 255, 1);
}

/*--- Down ---*/
.ui.inverted.menu .item.down,
.ui.inverted.menu a.item:active,
.ui.inverted.menu .item > a:active,
.ui.inverted.menu .item.down,
.ui.inverted.menu .dropdown.item:active,
.ui.inverted.menu .link.item:active,
.ui.inverted.menu a.item:active {
  background-color: rgba(255, 255, 255, 0.15);
}

/*--- Active ---*/
.ui.inverted.menu .active.item {
  border-color: transparent !important;
  background-color: rgba(255, 255, 255, 0.2);
}
.ui.inverted.menu .active.item,
.ui.inverted.menu .active.item a {
  color: rgba(255, 255, 255, 1);
}
.ui.inverted.vertical.menu .item .menu .active.item {
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 1);
}

/*--- Pointers ---*/
.ui.inverted.pointing.menu .active.item:after {
  background-color: #505050;
  box-shadow: none;
}
.ui.inverted.pointing.menu .active.item:hover:after {
  background-color: #3B3B3B;
}


/*--------------
     Floated
---------------*/

.ui.floated.menu {
  float: left;
  margin: 0rem 0.5rem 0rem 0rem;
}
.ui.right.floated.menu {
  float: right;
  margin: 0rem 0rem 0rem 0.5rem;
}


/*--------------
 Inverted Colors
---------------*/

/*--- Light Colors  ---*/
.ui.grey.menu {
  background-color: #F0F0F0;
}

/*--- Inverted Colors  ---*/
.ui.inverted.green.menu {
  background-color: #A1CF64;
}
.ui.inverted.green.pointing.menu .active.item:after {
  background-color: #A1CF64;
}

.ui.inverted.red.menu {
  background-color: #EF4D6D;
}
.ui.inverted.red.pointing.menu .active.item:after {
  background-color: #F16883;
}

.ui.inverted.blue.menu {
  background-color: #6ECFF5;
}
.ui.inverted.blue.pointing.menu .active.item:after {
  background-color: #6ECFF5;
}

.ui.inverted.purple.menu {
  background-color: #564F8A;
}
.ui.inverted.purple.pointing.menu .active.item:after {
  background-color: #564F8A;
}

.ui.inverted.orange.menu {
  background-color: #F05940;
}
.ui.inverted.orange.pointing.menu .active.item:after {
  background-color: #F05940;
}

.ui.inverted.teal.menu {
  background-color: #00B5AD;
}
.ui.inverted.teal.pointing.menu .active.item:after {
  background-color: #00B5AD;
}


/*--------------
    Text Menu
---------------*/

.ui.text.menu {
  background-color: transparent;

  margin: 1rem -1rem;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.ui.text.menu > .item {
  opacity: 0.6;

  margin: 0em 1em;
  padding: 0em;
  min-height: 0em !important;

  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;

  color: rgba(0, 0, 0, 0.6);

  -webkit-transition:
    opacity 0.2s ease
  ;
  -moz-transition:
    opacity 0.2s ease
  ;
  -o-transition:
    opacity 0.2s ease
  ;
  -ms-transition:
    opacity 0.2s ease
  ;
  transition:
    opacity 0.2s ease
  ;
}
.ui.text.menu > .item:before {
  display: none !important;
}
.ui.text.menu .header.item {
  background-color: transparent;

  opacity: 1;
  color: rgba(50, 50, 50, 0.8);
  font-size: 0.875rem;
  padding: 0em;
  text-transform: uppercase;
  font-weight: bold;
}
.ui.text.menu .header.item > a {
  background-color: transparent;
}

/*--- fluid text ---*/
.ui.text.item.menu .item {
  margin: 0em;
}

/*--- vertical text ---*/
.ui.vertical.text.menu {
  margin: 1rem 0em;
}
.ui.vertical.text.menu:first-child {
  margin-top: 0rem;
}
.ui.vertical.text.menu:last-child {
  margin-bottom: 0rem;
}
.ui.vertical.text.menu .item {
  float: left;
  clear: left;
  margin: 0.5em 0em;
}
.ui.vertical.text.menu .item > .icon {
  float: none;
  margin: 0em 0.75em 0em 0em;
}
.ui.vertical.text.menu .header.item {
  margin: 0.8em 0em;
}

/*--- hover ---*/
.ui.text.menu .item.hover,
.ui.text.menu .item:hover {
  opacity: 1;
  background-color: transparent;
}

/*--- active ---*/
.ui.text.menu .active.item {
  background-color: transparent;
  padding: 0em;
  border: none;
  opacity: 1;
  font-weight: bold;
}

/* disable variations */
.ui.text.pointing.menu .active.item:after {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.ui.text.attached.menu {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* colors */
.ui.green.text.menu .active.item {
  color: #A1CF64;
}
.ui.red.text.menu .active.item {
  color: #EF4D6D;
}
.ui.blue.text.menu .active.item {
  color: #6ECFF5;
}
.ui.purple.text.menu .active.item {
  color: #564F8A;
}
.ui.orange.text.menu .active.item {
  color: #F05940;
}
.ui.teal.text.menu .active.item {
  color: #00B5AD;
}




/*--------------
   Secondary
---------------*/

.ui.secondary.menu {
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;

  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.ui.secondary.menu > .item {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;

  border: none;
  min-height: 0em !important;

  margin: 0em 0.25em;
  padding: 0.5em 1em;

  -webkit-border-radius: 0.3125em;
  -moz-border-radius: 0.3125em;
  border-radius: 0.3125em;
}
.ui.secondary.menu > .item:before {
  display: none;
}

.ui.secondary.menu .link.item,
.ui.secondary.menu a.item {
  color: rgba(0, 0, 0, 0.4);
}


.ui.secondary.menu .header.item {
  background-color: transparent;
  border-right: 0.1em solid rgba(0, 0, 0, 0.1);

  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
}

/* active */
.ui.secondary.menu > .active.item {
  border-top: none;
  padding-top: 0.5em;
  background-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.8);
}
.ui.secondary.vertical.menu > .active.item {
  -webkit-border-radius: 0.3125em;
  -moz-border-radius: 0.3125em;
  border-radius: 0.3125em;
}
.ui.secondary.inverted.menu > .active.item {
  background-color: rgba(255, 255, 255, 0.2);
}

/* disable variations */
.ui.secondary.item.menu > .item {
  margin: 0em;
}
.ui.secondary.attached.menu {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/*---------------------
   Secondary Pointing
-----------------------*/

.ui.secondary.pointing.menu {
  border-bottom: 3px solid rgba(0, 0, 0, 0.1);

}
.ui.secondary.pointing.menu > .item {
  margin: 0em 0em -3px;
  padding: 0.6em 0.95em;

  border-bottom: 3px solid rgba(0, 0, 0, 0);

  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;

  -webkit-transition:
    color 0.2s
  ;
  -moz-transition:
    color 0.2s
  ;
  -o-transition:
    color 0.2s
  ;
  -ms-transition:
    color 0.2s
  ;
  transition:
    color 0.2s
  ;
}
.ui.secondary.pointing.menu > .item:after {
  display: none;
}

/* Hover */
.ui.secondary.pointing.menu > .item.hover,
.ui.secondary.pointing.menu > .item:hover {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* Down */
.ui.secondary.pointing.menu > .item:active,
.ui.secondary.pointing.menu > .item.down {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.2);
}

/* Active */
.ui.secondary.pointing.menu > .item.active {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.4);
}



/*------- Vertical------- */
.ui.secondary.vertical.menu {
}
.ui.secondary.vertical.pointing.menu {
  border: none;
  border-right: 3px solid rgba(0, 0, 0, 0.1);
}
.ui.secondary.vertical.menu > .item {
  border: none;
  margin: 0em 0em 0.3em;
  padding: 0.6em 0.8em;

  -webkit-border-radius: 0.1875em;
  -moz-border-radius: 0.1875em;
  border-radius: 0.1875em;
}
.ui.secondary.vertical.menu > .header.item {
  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
}
.ui.secondary.vertical.pointing.menu > .item {
  margin: 0em -3px 0em 0em;
  border-bottom: none;
  border-right: 3px solid transparent;
  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
}
/* Hover */
.ui.secondary.vertical.pointing.menu > .item.hover,
.ui.secondary.vertical.pointing.menu > .item:hover {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* Down */
.ui.secondary.vertical.pointing.menu > .item:active,
.ui.secondary.vertical.pointing.menu > .item.down {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.2);
}

/* Active */
.ui.secondary.vertical.pointing.menu > .item.active {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.4);
  color: rgba(0, 0, 0, 0.85);
}

/*------- Inverted------- */
.ui.secondary.inverted.pointing.menu {
  border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}
.ui.secondary.inverted.pointing.menu > .item {
  color: rgba(255, 255, 255, 0.7);
}

/* Hover */
.ui.secondary.inverted.pointing.menu > .item.hover,
.ui.secondary.inverted.pointing.menu > .item:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* Down */
.ui.secondary.inverted.pointing.menu > .item:active,
.ui.secondary.inverted.pointing.menu > .item.down {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Active */
.ui.secondary.inverted.pointing.menu > .item.active {
  border-color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 1);
}

/*--------------
 Inverted Sec
---------------*/
.ui.secondary.inverted.vertical.pointing.menu {
  border-right: 3px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
}
/* Down */
.ui.secondary.inverted.vertical.pointing.menu .item:active,
.ui.secondary.inverted.vertical.pointing.menu .item.down {
  box-shadow: 0.2em 0em 0em 0em rgba(255, 255, 255, 0.2);
}

/* Active */
.ui.secondary.inverted.vertical.pointing.menu .item.active {
  box-shadow: 0.2em 0em 0em 0em rgba(255, 255, 255, 0.4);
}



/*--------------
    Icon Only
---------------*/

.ui.icon.menu,
.ui.vertical.icon.menu {
  width: auto;
  display: inline-block;
  min-height: 0em;
}
.ui.icon.menu .item {
  text-align: center;
  color: rgba(60, 60, 60, 0.7);
}
.ui.icon.menu .item .icon {
  display: block;
  float: none;
  opacity: 1;
  margin: 0em auto;
}
.ui.icon.menu .icon:before {
  opacity: 1;
}

/* Item Icon Only */
.ui.menu .icon.item .icon {
  margin: 0em;
}

/*--- inverted ---*/
.ui.inverted.icon.menu .item {
  color: rgba(255, 255, 255, 0.8);
}
.ui.inverted.icon.menu .icon {
  color: rgba(255, 255, 255, 1);
}

/*--------------
   Labeled Icon
---------------*/

.ui.labeled.icon.menu {
  text-align: center;
}
.ui.labeled.icon.menu .icon {
  display: block;
  font-size: 1.5em;
  margin: 0em auto 0.3em;
}


/*--------------
     Fitted
---------------*/

.ui.fitted.menu .item,
.ui.fitted.menu .item > a,
.ui.fitted.menu .item .menu .item,
.ui.fitted.menu .item .menu .item > a,
.ui.menu .fitted.item,
.ui.menu .fitted.item > a {
  padding-top: 0em;
  padding-bottom: 0em;
}

/*--------------
     Tight
---------------*/

.ui.tight.menu .item,
.ui.tight.menu .item > a,
.ui.tight.menu .item .menu .item,
.ui.tight.menu .item .menu .item > a,
.ui.menu .tight.item,
.ui.menu .tight.item > a {
  padding: 0em;
}


/*--------------
   Borderless
---------------*/

.ui.borderless.menu .item:before,
.ui.borderless.menu .item > a:before,
.ui.borderless.menu .item .menu .item:before,
.ui.borderless.menu .item .menu .item > a:before,
.ui.menu .borderless.item:before,
.ui.menu .borderless.item > a:before {
  background-image: none;
}

/*-------------------
       Compact
--------------------*/

.ui.compact.menu {
  display: inline-block;
  margin: 0em;
  vertical-align: middle;
}
.ui.vertical.compact.menu {
  width: auto !important;
}

/*-------------------
        Fluid
--------------------*/

.ui.menu.fluid,
.ui.vertical.menu.fluid {
  display: block !important;
  width: 100%;
}


/*-------------------
      Evenly Sized
--------------------*/

.ui.item.menu,
.ui.item.menu .item {
  width: 100%;
  padding-left: 0px !important;
  padding-right: 0px !important;
  text-align: center;
}

.ui.menu.two.item .item {
  width: 50%;
}
.ui.menu.three.item .item {
  width: 33.333%;
}
.ui.menu.four.item .item {
  width: 25%;
}
.ui.menu.five.item .item {
  width: 20%;
}
.ui.menu.six.item .item {
  width: 16.666%;
}
.ui.menu.seven.item .item {
  width: 14.285%;
}
.ui.menu.eight.item .item {
  width: 12.500%;
}
.ui.menu.nine.item .item {
  width: 11.11%;
}
.ui.menu.ten.item .item {
  width: 10.0%;
}
.ui.menu.eleven.item .item {
  width: 9.09%;
}
.ui.menu.twelve.item .item {
  width: 8.333%;
}

/*--------------
     Fixed
---------------*/

.ui.menu.fixed {
  position: fixed;
  z-index: 10;

  margin: 0em;
  border: none;
  width: 100%;
}
.ui.menu.fixed,
.ui.menu.fixed .item:first-child,
.ui.menu.fixed .item:last-child {
  -webkit-border-radius: 0px !important;
  -moz-border-radius: 0px !important;
  border-radius: 0px !important;
}

.ui.menu.fixed.top {
  top: 0px;
  left: 0px;
  right: auto;
  bottom: auto;
}
.ui.menu.fixed.right {
  top: 0px;
  right: 0px;
  left: auto;
  bottom: auto;
  width: auto;
  height: 100%;
}
.ui.menu.fixed.bottom {
  bottom: 0px;
  left: 0px;
  top: auto;
  right: auto;
}
.ui.menu.fixed.left {
  top: 0px;
  left: 0px;
  right: auto;
  bottom: auto;
  width: auto;
  height: 100%;
}

/*-------------------
       Pointing
--------------------*/

.ui.pointing.menu .active.item:after {
  position: absolute;
  bottom: -0.35em;
  left: 50%;
  content: "";

  margin-left: -0.3em;
  width: 0.6em;
  height: 0.6em;

  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);

  background-image: none;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 2;

  -webkit-transition:
    background 0.2s ease
  ;
  -moz-transition:
    background 0.2s ease
  ;
  -o-transition:
    background 0.2s ease
  ;
  -ms-transition:
    background 0.2s ease
  ;
  transition:
    background 0.2s ease
  ;
}

/* Don't double up pointers */
.ui.pointing.menu .active.item .menu .active.item:after {
  display: none;
}

.ui.vertical.pointing.menu .active.item:after {
  position: absolute;
  top: 50%;
  margin-top: -0.3em;
  right: -0.4em;
  bottom: auto;
  left: auto;

  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

/* Colors */
.ui.pointing.menu .active.item:after {
  background-color: #FCFCFC;
}
.ui.pointing.menu .active.item.hover:after,
.ui.pointing.menu .active.item:hover:after {
  background-color: #FAFAFA;
}

.ui.vertical.pointing.menu .menu .active.item:after {
  background-color: #F4F4F4;
}

.ui.pointing.menu .active.item.down:after,
.ui.pointing.menu .active.item:active:after {
  background-color: #F0F0F0;
}


/*--------------
    Attached
---------------*/

.ui.menu.attached {
  margin: 0rem;
  
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  /* avoid rgba multiplying */
  -moz-box-shadow: 0px 0px 0px 1px #DDDDDD;
  -webkit-box-shadow: 0px 0px 0px 1px #DDDDDD;
  box-shadow: 0px 0px 0px 1px #DDDDDD;
}
.ui.top.attached.menu {
  -moz-border-radius: 0.1875em 0.1875em 0px 0px;
  -webkit-border-radius: 0.1875em 0.1875em 0px 0px;
  border-radius: 0.1875em 0.1875em 0px 0px;
}
.ui.menu.bottom.attached {
  -moz-border-radius: 0px 0px 0.1875em 0.1875em;
  -webkit-border-radius: 0px 0px 0.1875em 0.1875em;
  border-radius: 0px 0px 0.1875em 0.1875em;
}

/*--------------
     Sizes
---------------*/

.ui.vertical.menu .item {
  min-height: 0em !important;
}

.ui.small.menu .item {
  font-size: 0.875rem;
  min-height: 2.25rem;
}
.ui.small.vertical.menu {
  width: 13rem;
}

.ui.menu .item {
  font-size: 1rem;
  min-height: 2.5em;
}
.ui.vertical.menu {
  width: 15rem;
}


.ui.large.menu .item {
  font-size: 1.125rem;
}
.ui.large.vertical.menu {
  width: 18rem;
}
/*
 * # Semantic Text Block - Flat
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 29 2013
 */
 
/*******************************
           Text Block
*******************************/

.ui.message {
  position: relative;
  min-height: 18px;
  margin: 1em 0em;
  border: 1px solid #DCDDDE;

  height: auto;
  background-color: white;
  padding: 1em;

  line-height: 1.33;
  color: rgba(0, 0, 0, 0.6);

  -webkit-transition:
    opacity 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    box-shadow 0.1s ease
  ;
  -moz-transition:
    opacity 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    box-shadow 0.1s ease
  ;
  -o-transition:
    opacity 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    box-shadow 0.1s ease
  ;
  -ms-transition:
    opacity 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    box-shadow 0.1s ease
  ;
  transition:
    opacity 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    box-shadow 0.1s ease
  ;
  
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.ui.segment:first-child {
  margin-top: 0em;
}
.ui.segment:last-child {
  margin-bottom: 0em;
}


/*--------------
     Content
---------------*/

/* block with headers */
.ui.message .header {
  margin: 0em;
  font-size: 1.33em;
  font-weight: bold;
}

/* block with paragraphs */
.ui.message .header + p {
  margin-top: 0em;
}
.ui.message p {
  opacity: 0.85;
  margin: 1em 0em;
}
.ui.message > :first-child {
  margin-top: 0em;
}
.ui.message > :last-child {
  margin-bottom: 0em;
}

/* block with child list */
.ui.message ul.list {
  opacity: 0.85;
  list-style-position: inside;
  margin: 0.2em 0em;
  padding: 0em;
}
.ui.message ul.list li {
  position: relative;
  list-style-type: none;
  font-style: italic;
  margin: 0em 0em 0em 1em;
  padding: 0em;
}
.ui.message ul.list li:before {
  position: absolute;
  content: '\2022';
  top: -0.05em;
  left: -0.8em;

  height: 100%;
  vertical-align: baseline;
  opacity: 0.5;
}
.ui.message ul.list li:first-child {
  margin-top: 0em;
}

/* dismissable block */
.ui.message > .icon.close {
  cursor: pointer;
  position: absolute;
  top: 1em;
  right: 0.5em;
  opacity: 0.7;

  -webkit-transition:
    opacity 0.1s linear
  ;
  -moz-transition:
    opacity 0.1s linear
  ;
  -o-transition:
    opacity 0.1s linear
  ;
  -ms-transition:
    opacity 0.1s linear
  ;
  transition:
    opacity 0.1s linear
  ;
}
.ui.message > .icon.close:hover {
  opacity: 1;
}



/*******************************
            States
*******************************/

.ui.message.visible,
.ui.header.visible {
  display: block !important;
}
.ui.message.hidden,
.ui.header.hidden {
  display: none;
}

/*******************************
            Variations
*******************************/

/*--------------
    Compact
---------------*/

.ui.compact.message {
  display: inline-block;
}


/*--------------
    Attached
---------------*/

.ui.attached.message {
  margin-left: -1px;
  margin-right: -1px;
  margin-bottom: -1px;

  -webkit-border-radius: 0.325em 0.325em 0em 0em;
  -moz-border-radius: 0.325em 0.325em 0em 0em;
  border-radius: 0.325em 0.325em 0em 0em;

  -webkit-box-shadow: 
    0em 0em 0em 1px rgba(0, 0, 0, 0.1) inset
  ;
  -moz-box-shadow: 
    0em 0em 0em 1px rgba(0, 0, 0, 0.1) inset
  ;
  box-shadow: 
    0em 0em 0em 1px rgba(0, 0, 0, 0.1) inset
  ;
}
.ui.bottom.attached.message {
  margin-top: -1px;

  -webkit-border-radius: 0em 0em 0.325em 0.325em;
  -moz-border-radius: 0em 0em 0.325em 0.325em;
  border-radius: 0em 0em 0.325em 0.325em;
}


/*--------------
      Icon
---------------*/

.ui.icon.message {
  display: table;
  width: 100%;
}
.ui.icon.message > .icon {
  display: table-cell;
  vertical-align: middle;
  font-size: 3.8em;
  padding-right: 0.4em;
  opacity: 0.2;
}
.ui.icon.message > .content {
  display: table-cell;
  vertical-align: middle;
}

/*--------------
     Inverted
---------------*/

.ui.inverted.message {
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.95);
}



/*--------------
     Colors
---------------*/

.ui.black.message {
  background-color: #333333;
  color: rgba(255, 255, 255, 0.95);
}



/*--------------
     Types
---------------*/
.ui.blue.message,
.ui.info.message {
  background-color: #E6F4F9;
  color: #4D8796;
}

/* Green Text Block */
.ui.green.message {
  background-color: #DEFCD5;
  color: #52A954;
}

/* Yellow Text Block */
.ui.yellow.message,
.ui.warning.message {
  background-color: #F6F3D5;
  color: #96904D;
}
/* Red Text Block */
.ui.red.message {
  background-color: #F1D7D7;
  color: #A95252;
}

/* Success Text Block */
.ui.success.message,
.ui.positive.message {
  background-color: #5BBD72;
  color: #FFFFFF;
}
/* Error Text Block */
.ui.error.message,
.ui.negative.message {
  background-color: #D95C5C;
  color: #FFFFFF;
}


/*--------------
     Sizes 
---------------*/

.ui.small.message {
  font-size: 0.875em;
}
.ui.message {
  font-size: 1em;
}
.ui.large.message {
  font-size: 1.125em;
}
.ui.huge.message {
  font-size: 1.5em;
}
.ui.massive.message {
  font-size: 2em;
}
/*
 * # Semantic Table - Flat
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 24 2013
 */


/*******************************
             Table
*******************************/

/* Prototype */
.ui.table {
  width: 100%;
  border-collapse: collapse;
}

/* Table Content */
.ui.table th,
.ui.table tr,
.ui.table td {
  border-collapse: collapse;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition: all 0.1s ease-out;
  -moz-transition: all 0.1s ease-out;
  -o-transition: all 0.1s ease-out;
  -ms-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
 .ui.table button {
  float: right;
 }

/* Headers */
.ui.table thead {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.ui.table th {
  cursor: auto;

  background-color: rgba(0, 0, 0, 0.03);

  text-align: left;
  color: rgba(0, 0, 0, 0.8);
  padding: 0.5em 0.7em;
  vertical-align: middle;
}
.ui.table thead th:first-child {
  border-radius: 5px 0px 0px 0px;
}
.ui.table thead th:last-child {
  border-radius: 0px 5px 0px 0px;
}
.ui.table tfoot th:first-child {
  border-radius: 0px 0px 0px 5px;
}
.ui.table tfoot th:last-child {
  border-radius: 0px 0px 5px 0px;
}

/* Table Cells */
.ui.table td {
  padding: 0.40em 0.7em;
  vertical-align: middle;
}

/* Footer */
.ui.table tfoot {
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}
.ui.table tfoot th {
  font-weight: normal;
  font-style: italic;
}

/* Table Striping */
.ui.table tbody tr:nth-child(2n) {
  background-color: rgba(0, 0, 50, 0.02);
}

/* Icons */
.ui.table > .icon {
  vertical-align: baseline;
}
.ui.table > .icon:only-child {
  margin: 0em;
}

/* Table Segment */
.ui.table.segment:after {
  display: none;
}
.ui.table.segment.stacked:after {
  display: block;
}

/*******************************
             States
*******************************/

/*--------------
      Hover
---------------*/

/* Sortable */
.ui.sortable.table thead th:hover {
  background-image: none;
  color: rgba(0, 0, 0, 0.8);
}
.ui.sortable.table th.disabled:hover {
  cursor: auto;
  background-color: rgba(0, 0, 0, 0.1);

  text-align: left;
  font-weight: bold;
  color: #333333;
  color: rgba(0, 0, 0, 0.8);
}


/*--------------
    Positive
---------------*/

.ui.table tr.positive td,
.ui.table td.positive {
  background-color: #F2F8F0 !important;
  color: #119000;
}
.ui.celled.table tr.positive:hover td,
.ui.celled.table tr:hover td.positive,
.ui.table tr.positive:hover td,
.ui.table td:hover.positive,
.ui.table th:hover.positive {
  background-color: #ECF5E9 !important;
  color: #119000;
}

/*--------------
     Negative
---------------*/

.ui.table tr.negative td,
.ui.table td.negative {
  background-color: #F9F4F4;
  color: #CD2929;
}
.ui.celled.table tr.negative:hover td,
.ui.celled.table tr:hover td.negative,
.ui.table tr.negative:hover td,
.ui.table td:hover.negative,
.ui.table th:hover.negative {
  background-color: #F2E8E8 !important;
  color: #CD2929;
}

/*--------------
      Error
---------------*/

.ui.table tr.error td,
.ui.table td.error,
.ui.table th.error {
  background-color: #F9F4F4 !important;
  color: #CD2929;
}
.ui.celled.table tr.error:hover td,
.ui.celled.table tr:hover td.error,
.ui.table tr.error:hover td,
.ui.table td:hover.error,
.ui.table th:hover.error {
  background-color: #F2E8E8 !important;
  color: #CD2929;
}

/*--------------
     Warning
---------------*/

.ui.table tr.warning td,
.ui.table td.warning,
.ui.table th.warning {
  background-color: #FBF6E9;
  /* border-color: #CBB105 !important; */
  color: #7D6C00;
}
.ui.celled.table tr.warning:hover td,
.ui.celled.table tr:hover td.warning,
.ui.table tr.warning:hover td,
.ui.table td:hover.warning,
.ui.table th:hover.warning {
  background-color: #F3EDDC !important;
  color: #7D6C00;
}


/*--------------
     Active 
---------------*/

.ui.table tr.active td,
.ui.table tr td.active {
  background-color: #F0F0F0 !important;
  color: rgba(50, 50, 50, 0.9);
  /* border-color: rgba(0, 0, 0, 0.15) !important; */
}

/*--------------
     Disabled 
---------------*/

.ui.table tr.disabled td,
.ui.table tr td.disabled,
.ui.table tr.disabled:hover td,
.ui.table tr:hover td.disabled {
  color: rgba(150, 150, 150, 0.3);
}

/*******************************
          Variations
*******************************/

/*--------------
  Column Count
---------------*/

.ui.two.column.table td {
  width: 50%;
}
.ui.three.column.table td {
  width: 33.3333%;
}
.ui.four.column.table td {
  width: 25%;
}
.ui.five.column.table td {
  width: 20%;
}
.ui.six.column.table td {
  width: 16.66667%;
}
.ui.seven.column.table td {
  width: 14.2857%;
}
.ui.eight.column.table td {
  width: 12.5%;
}
.ui.nine.column.table td {
  width: 11.1111%;
}
.ui.ten.column.table td {
  width: 10%;
}
.ui.eleven.column.table td {
  width: 9.0909%;
}
.ui.twelve.column.table td {
  width: 8.3333%;
}
.ui.thirteen.column.table td {
  width: 7.6923%;
}
.ui.fourteen.column.table td {
  width: 7.1428%;
}
.ui.fifteen.column.table td {
  width: 6.6666%;
}
.ui.sixteen.column.table td {
  width: 6.25%;
}

/* Column Width */
.ui.table th.one.wide,
.ui.table td.one.wide {
  width: 6.25%;
}
.ui.table th.two.wide,
.ui.table td.two.wide {
  width: 12.5%;
}
.ui.table th.three.wide,
.ui.table td.three.wide {
  width: 18.75%;
}
.ui.table th.four.wide,
.ui.table td.four.wide {
  width: 25%;
}
.ui.table th.five.wide,
.ui.table td.five.wide {
  width: 31.25%;
}
.ui.table th.six.wide,
.ui.table td.six.wide {
  width: 37.5%;
}
.ui.table th.seven.wide,
.ui.table td.seven.wide {
  width: 43.75%;
}
.ui.table th.eight.wide,
.ui.table td.eight.wide {
  width: 50%;
}
.ui.table th.nine.wide,
.ui.table td.nine.wide {
  width: 56.25%;
}
.ui.table th.ten.wide,
.ui.table td.ten.wide {
  width: 62.5%;
}
.ui.table th.eleven.wide,
.ui.table td.eleven.wide {
  width: 68.75%;
}
.ui.table th.twelve.wide,
.ui.table td.twelve.wide {
  width: 75%;
}
.ui.table th.thirteen.wide,
.ui.table td.thirteen.wide {
  width: 81.25%;
}
.ui.table th.fourteen.wide,
.ui.table td.fourteen.wide {
  width: 87.5%;
}
.ui.table th.fifteen.wide,
.ui.table td.fifteen.wide {
  width: 93.75%;
}
.ui.table th.sixteen.wide,
.ui.table td.sixteen.wide {
  width: 100%;
}


/*--------------
     Celled
---------------*/

.ui.celled.table {
  color: rgba(0, 0, 0, 0.8);
}
.ui.celled.table tbody tr,
.ui.celled.table tfoot tr {
  border: none;
}
.ui.celled.table th {
  border: 1px solid #E0E0E0;
}
.ui.celled.table tbody td {
  border: 1px solid #E0E0E0;
}
.ui.celled.table.segment th {
  border: none;
}

/*--------------
    Sortable
---------------*/

.ui.sortable.table thead th {
  cursor: pointer;
  white-space: nowrap;
}
.ui.sortable.table thead th.sorted,
.ui.sortable.table thead th.sorted:hover {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ui.sortable.table thead th:after {
  display: inline-block;
  content: '';
  width: 1em;
  opacity: 0.8;

  margin: 0em 0em 0em 0.5em;

  font-family: 'Icons';
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
}
.ui.sortable.table thead th.ascending:after {
  content: '\25b4';
}
.ui.sortable.table thead th.descending:after {
  content: '\25be';
}

/*--------------
    Inverted
---------------*/

/* Text Color */
.ui.inverted.table td {
  color: rgba(255, 255, 255, 0.9);
}
.ui.inverted.table th {
  background-color: rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

/* Stripes */
.ui.inverted.table tbody tr:nth-child(2n) {
  background-color: rgba(255, 255, 255, 0.06);
}


/*--------------
   Collapsing
---------------*/

.ui.collapsing.table {
  width: auto;
}

/*--------------
      Basic
---------------*/

.ui.basic.table th {
  background-color: transparent;
  padding: 0.5em;
}
.ui.basic.table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.ui.basic.table td {
  padding: 0.8em 0.5em;
}


/*--------------
     Padded
---------------*/

.ui.padded.table th,
.ui.padded.table td {
  padding: 0.8em 1em;
}

.ui.compact.table th {
  padding: 0.3em 0.5em;
}
.ui.compact.table td {
  padding: 0.2em 0.5em;
}

/*--------------
      Sizes
---------------*/

/* Small */
.ui.small.table {
  font-size: 0.875em;
}

/* Standard */
.ui.table {
  font-size: 1em;
}

/* Large */
.ui.large.table {
  font-size: 1.1em;
}
/*
 * # Semantic Button
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
            Button
*******************************/

/* Prototype */
.ui.button {
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;

  min-height: 1em;

  outline: none;
  border: none;
  background-color: #EDEDED;
  color: #999999;

  padding: 0.8em 1.5em;

  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1;
  font-weight: bold;
  font-style: normal;
  text-align: center;
  text-shadow: none;


  -webkit-border-radius: 0.3125em;
  -moz-border-radius: 0.3125em;
  border-radius: 0.3125em;

  -webkit-box-shadow:
    0em -0.185rem 0em rgba(0, 0, 0, 0.1) inset
  ;
  -moz-box-shadow:
    0em -0.185rem 0em rgba(0, 0, 0, 0.1) inset
  ;
  box-shadow:
    0em -0.185rem 0em rgba(0, 0, 0, 0.1) inset
  ;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

  -webkit-transition:
    opacity 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    box-shadow 0.1s ease
  ;
  -moz-transition:
    opacity 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    box-shadow 0.1s ease
  ;
  -o-transition:
    opacity 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    box-shadow 0.1s ease
  ;
  -ms-transition:
    opacity 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    box-shadow 0.1s ease
  ;
  transition:
    opacity 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    box-shadow 0.1s ease
  ;
}

/*--------------
     Icon
---------------*/

.ui.button > .icon {
  margin-right: 0.5em;

  line-height: 1;

  -webkit-transition:
    opacity 0.1s ease
  ;
  -moz-transition:
    opacity 0.1s ease
  ;
  -o-transition:
    opacity 0.1s ease
  ;
  -ms-transition:
    opacity 0.1s ease
  ;
  transition:
    opacity 0.1s ease
  ;
}



/*******************************
             States
*******************************/


/*--------------
     Active
---------------*/

.ui.buttons .button.active,
.ui.button.active {
  opacity: 1 !important;
  background-color: #E6E6E6;

  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.05)));
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
  background-image: linear-gradient(rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);

  -webkit-box-shadow:
    0em 0.125em 0.125em 0em rgba(0, 0, 0, 0.1) inset
  ;
  -moz-box-shadow:
    0em 0.125em 0.125em 0em rgba(0, 0, 0, 0.1) inset
  ;
  box-shadow:
    0em 0.125em 0.125em 0em rgba(0, 0, 0, 0.1) inset
  ;
}
.ui.buttons .button.active,
.ui.buttons .button.active a,
.ui.button.active,
.ui.button.active a {
  color: #666666;
}

/*--------------
      Hover
---------------*/

.ui.button:hover,
.ui.button.hover {
  opacity: 1 !important;
  background-color: #DEDEDE;
  color: #777777;
}
.ui.button:hover .icon,
.ui.button.hover .icon {
  opacity: 0.85;
}

/*--------------
  Down (:active)
---------------*/

/* Down */
.ui.button:active,
.ui.button.down {
  opacity: 1 !important;
  background-color: #D8D8D8;
  color: #777777;
  -webkit-box-shadow: 0em 0em 0.125em 1px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0em 0em 0.125em 1px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0em 0em 0.125em 1px rgba(0, 0, 0, 0.1) inset;
}


/*--------------
     Error
---------------*/

.ui.button.error,
.ui.button.error.hover,
.ui.button.error.down {
  cursor: default;
  
  position: relative !important;
  background-color: #D95C5C !important;
  color: transparent !important;
  text-shadow: none;

  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -o-transition: all 0s linear;
  -ms-transition: all 0s linear;
  transition: all 0s linear;
}
.ui.button.error .icon {
  opacity: 1;
  color: #FFFFFF;
}
.ui.button.error:after {
  position: absolute;
  left: 50%;
  content: "Error";
  margin-left: -1.8em;
  color: #FFFFFF;

  -webkit-animation: button-text 0.5s;
  -moz-animation: button-text 0.5s;
  -ms-animation: button-text 0.5s;
  -o-animation: button-text 0.5s;
  animation: button-text 0.5s;
}
.ui.button.error .icon:before {
  font-family: 'Icons';
  content: '\26a0';
}

/*--------------
     Success
---------------*/

.ui.button.success,
.ui.button.success.hover,
.ui.button.success.down {
  position: relative !important;
  background-color: #5BBD72 !important;
  color: transparent !important;
}
.ui.button.success .icon {
  opacity: 1;
  color: #FFFFFF;
}
.ui.button.success .icon:before {
  font-family: 'Icons';
  content: '\2611';
}
.ui.button.success:after {
  position: absolute;
  left: 50%;
  content: "Success";
  margin-left: -2em;
  color: #FFFFFF;

  -webkit-animation: button-text 0.5s;
  -moz-animation: button-text 0.5s;
  -ms-animation: button-text 0.5s;
  -o-animation: button-text 0.5s;
  animation: button-text 0.5s;
}

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

@-moz-keyframes button-text {
  0% {
    -moz-transform: translateY(100%);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

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

/*--------------
    Loading
---------------*/

.ui.button.loading,
.ui.button.loading.hover {
  position: relative;
  cursor: default;

  background-color: #F3F3F3 !important;
  color: transparent !important;
  text-shadow: none !important;
  background-image: none !important;
  
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;

  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -o-transition: all 0s linear;
  -ms-transition: all 0s linear;
  transition: all 0s linear;
}
.ui.button.loading:after {
  position: absolute;
  top: 0em;
  left: 0em;
  width: 100%;
  height: 100%;
  content: '';
  background: transparent url(../components/semantic/images/loader-mini.gif?1419868612) no-repeat 50% 50%;
}

.ui.labeled.icon.button.loading .icon {
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/*-------------------
      Disabled
--------------------*/

.ui.button.disabled,
.ui.button.disabled.hover,
.ui.button.disabled.down {
  cursor: default;
  color: #DDDDDD;
  background-color: rgba(50, 50, 50, 0.05) !important;
  background-image: none !important;

  text-shadow: none !important;

  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}


/*******************************
           Variations
*******************************/


/*--- Black ---*/
.ui.buttons.black .button,
.ui.button.black {
  background-color: #5C6166;
  color: #FFFFFF;
}
.ui.buttons.black .button.hover,
.ui.buttons.black .button:hover,
.ui.button.black.hover,
.ui.button.black:hover {
  background-color: #4C4C4C;
  color: #FFFFFF;
}
.ui.buttons.black .button.down,
.ui.buttons.black .button:active,
.ui.button.black.down,
.ui.button.black:active {
  background-color: #333333;
  color: #FFFFFF;
}

/*--- Green ---*/
.ui.buttons.green .button,
.ui.button.green {
  background-color: #5BBD72;
  color: #FFFFFF;
}
.ui.buttons.green .button.hover,
.ui.buttons.green .button:hover,
.ui.button.green.hover,
.ui.button.green:hover,
.ui.buttons.green .button.active,
.ui.button.green.active {
  background-color: #58cb73;
  color: #FFFFFF;
}
.ui.buttons.green .button.down,
.ui.buttons.green .button:active,
.ui.button.green.down,
.ui.button.green:active {
  background-color: #4CB164;
  color: #FFFFFF;
}

/*--- Red ---*/
.ui.buttons.red .button,
.ui.button.red {
  background-color: #D95C5C;
  color: #FFFFFF;
}
.ui.buttons.red .button.hover,
.ui.buttons.red .button:hover,
.ui.button.red.hover,
.ui.button.red:hover,
.ui.buttons.red .button.active,
.ui.button.red.active {
  background-color: #E75859;
  color: #FFFFFF;
}
.ui.buttons.red .button.down,
.ui.buttons.red .button:active,
.ui.button.red.down,
.ui.button.red:active {
  background-color: #D24B4C;
  color: #FFFFFF;
}

/*--- Blue ---*/
.ui.buttons.blue .button,
.ui.button.blue {
  background-color: #6ECFF5;
  color: #FFFFFF;
}
.ui.buttons.blue .button.hover,
.ui.buttons.blue .button:hover,
.ui.button.blue.hover,
.ui.button.blue:hover,
.ui.buttons.blue .button.active,
.ui.button.blue.active {
  background-color: #1AB8F3;
  color: #FFFFFF;
}
.ui.buttons.blue .button.down,
.ui.buttons.blue .button:active,
.ui.button.blue.down,
.ui.button.blue:active {
  background-color: #0AA5DF;
  color: #FFFFFF;
}

/*--- Purple ---*/
.ui.buttons.purple .button,
.ui.button.purple {
  background-color: #564F8A;
  color: #FFFFFF;
}
.ui.buttons.purple .button.hover,
.ui.buttons.purple .button:hover,
.ui.button.purple.hover,
.ui.button.purple:hover,
.ui.buttons.purple .button.active,
.ui.button.purple.active {
  background-color: #3E3773;
  color: #FFFFFF;
}
.ui.buttons.purple .button.down,
.ui.buttons.purple .button:active,
.ui.button.purple.down,
.ui.button.purple:active {
  background-color: #2E2860;
  color: #FFFFFF;
}

/*--- Teal ---*/
.ui.buttons.teal .button,
.ui.button.teal {
  background-color: #00B5AD;
  color: #FFFFFF;
}
.ui.buttons.teal .button.hover,
.ui.buttons.teal .button:hover,
.ui.button.teal.hover,
.ui.button.teal:hover,
.ui.buttons.teal .button.active,
.ui.button.teal.active {
  background-color: #009A93;
  color: #FFFFFF;
}
.ui.buttons.teal .button.down,
.ui.buttons.teal .button:active,
.ui.button.teal.down,
.ui.button.teal:active {
  background-color: #00847E;
  color: #FFFFFF;
}

/*---------------
    Positive
----------------*/

.ui.buttons.positive .button,
.ui.button.positive {
  background-color: #5BBD72 !important;
  color: #FFFFFF;
}
.ui.buttons.positive .button.hover,
.ui.buttons.positive .button:hover,
.ui.button.positive.hover,
.ui.button.positive:hover,
.ui.buttons.positive .button.active,
.ui.button.positive.active {
  background-color: #58CB73 !important;
  color: #FFFFFF;
}
.ui.buttons.positive .button.down,
.ui.buttons.positive .button:active,
.ui.button.positive.down,
.ui.button.positive:active {
  background-color: #4CB164 !important;
  color: #FFFFFF;
}


/*---------------
     Negative
----------------*/
.ui.buttons.negative .button,
.ui.button.negative {
  background-color: #D95C5C !important;
  color: #FFFFFF;
}
.ui.buttons.negative .button.hover,
.ui.buttons.negative .button:hover,
.ui.button.negative.hover,
.ui.button.negative:hover,
.ui.buttons.negative .button.active,
.ui.button.negative.active {
  background-color: #E75859 !important;
  color: #FFFFFF;
}
.ui.buttons.negative .button.down,
.ui.buttons.negative .button:active,
.ui.button.negative.down,
.ui.button.negative:active {
  background-color: #D24B4C !important;
  color: #FFFFFF;
}


/*-------------------
        Sizes
--------------------*/

.ui.buttons .button,
.ui.button {
  font-size: 1rem;
}

.ui.buttons.mini .button,
.ui.mini.button {
  font-size: 0.8rem;
  padding: 0.6em 0.8em;
}
.ui.tiny.buttons .button,
.ui.tiny.button {
  font-size: 0.9rem;
  padding: 0.6em 0.8em;
}
.ui.small.buttons .button,
.ui.small.button {
  font-size: 0.9rem;
}
.ui.large.buttons .button,
.ui.large.button {
  font-size: 1.125rem;
}
.ui.big.buttons .button,
.ui.big.button {
  font-size: 1.25rem;
}
.ui.huge.buttons .button,
.ui.huge.button {
  font-size: 1.375rem;
  padding-left: 2em;
  padding-right: 2em;
}
.ui.massive.buttons .button,
.ui.massive.button {
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 2.5em;
  padding-right: 2.5em;
}

/* loading */
.ui.huge.button.loading:after {
  background-image: url(../components/semantic/images/loader-small.gif?1419868612);
}
.ui.massive.buttons .button.loading:after,
.ui.gigantic.buttons .button.loading:after,
.ui.massive.button.loading:after,
.ui.gigantic.button.loading:after {
  background-image: url(../components/semantic/images/loader-medium.gif?1419868612);
}

.ui.huge.button.loading:after,
.ui.huge.button.loading.active:after {
  background-image: url(../components/semantic/images/loader-small.gif?1419868612);
}
.ui.massive.buttons .button.loading:after,
.ui.gigantic.buttons .button.loading:after,
.ui.massive.button.loading:after,
.ui.gigantic.button.loading:after,
.ui.massive.buttons .button.loading.active:after,
.ui.gigantic.buttons .button.loading.active:after,
.ui.massive.button.loading.active:after,
.ui.gigantic.button.loading.active:after {
  background-image: url(../components/semantic/images/loader-medium.gif?1419868612);
}

/*--------------
    Icon Only
---------------*/
.ui.icon.buttons .button,
.ui.icon.button {
  padding: 0.8em;
}
.ui.icon.buttons .button > .icon,
.ui.icon.button > .icon {
  opacity: 1;
  margin: 0em;
  vertical-align: top;
}


/*-------------------
      Ordinality
--------------------*/

.ui.buttons.secondary .button,
.ui.secondary.button {
  font-weight: normal;
  text-transform: none;
  opacity: 1;
}

/*--- Tertiary ---*/
.ui.buttons.tertiary .button,
.ui.tertiary.button {
  border-left: none;
  background-color: transparent;
  background-image: none;
  color: #999999;
  font-weight: normal;
  text-transform: none;
  text-shadow: none;
  box-shadow: none;
}
.ui.buttons.tertiary .button {
  border-left: none;
}
.ui.button.tertiary.active {
  opacity: 0.9 !important;
}
.ui.button.tertiary.hover,
.ui.button.tertiary:hover {
  opacity: 0.8 !important;
}
.ui.button.tertiary.down,
.ui.button.tertiary:active {
  opacity: 1 !important;
}
/*--------------
   Labeled Icon
---------------*/

.ui.labeled.icon.buttons .button,
.ui.labeled.icon.button {
  position: relative;
  padding-left: 4em !important;
  padding-right: 1.4em !important;
}

.ui.labeled.icon.buttons > .button > .icon,
.ui.labeled.icon.button > .icon {
  position: absolute;
  top: 0em;
  left: 0em;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  width: 2.75em;
  height: 100%;
  padding-top: 0.8em;
  background-color: rgba(0, 0, 0, 0.05);
  text-align: center;

  -webkit-border-radius: 0.3125em 0px 0px 0.3125em;
  -moz-border-radius: 0.3125em 0px 0px 0.3125em;
  border-radius: 0.3125em 0px 0px 0.3125em;

  line-height: 1;

  -webkit-box-shadow: -2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
  -moz-box-shadow: -2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
  box-shadow: -2px 0px 0px 0px rgba(0, 0, 0, 0.05) inset;
}

.ui.labeled.icon.buttons .button > .icon {
  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
}
.ui.labeled.icon.buttons .button:first-child > .icon {
  border-top-left-radius: 0.3125em;
  border-bottom-left-radius: 0.3125em;
}
.ui.labeled.icon.buttons .button:last-child > .icon {
  border-top-right-radius: 0.3125em;
  border-bottom-right-radius: 0.3125em;
}
.ui.vertical.labeled.icon.buttons .button:first-child > .icon {
  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
  border-top-left-radius: 0.3125em;
}
.ui.vertical.labeled.icon.buttons .button:last-child > .icon {
  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
  border-bottom-left-radius: 0.3125em;
}

.ui.right.labeled.icon.button {
  padding-left: 1.4em !important;
  padding-right: 4em !important;
}
.ui.left.fluid.labeled.icon.button,
.ui.right.fluid.labeled.icon.button {
  padding-left: 1.4em !important;
  padding-right: 1.4em !important;
}

.ui.right.labeled.icon.button .icon {
  left: auto;
  right: 0em;
}


/*--------------
     Toggle
---------------*/

/* Toggle (Modifies active state to give affordances) */
.ui.toggle.buttons .button.active,
.ui.buttons .button.toggle.active,
.ui.button.toggle.active {
  
  color: #FFFFFF;
}
.ui.buttons.toggle .ui.button.active.hover,
.ui.buttons .ui.button.toggle.active.hover,
.ui.button.toggle.active.hover {
  color: #FFFFFF;
}

/*--------------
     Bubbly
---------------*/

.ui.circular.button {
  -webkit-border-radius: 10em;
  -moz-border-radius: 10em;
  border-radius: 10em;
}


/*--------------
     Attached
---------------*/

.ui.button.attached {
  display: block;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) !important;
}
.ui.button.attached.top {

  -webkit-border-radius: 0.3125em 0.3125em 0em 0em;
  -moz-border-radius: 0.3125em 0.3125em 0em 0em;
  border-radius: 0.3125em 0.3125em 0em 0em;
}
.ui.button.attached.bottom {
  -webkit-border-radius: 0em 0em 0.3125em 0.3125em;
  -moz-border-radius: 0em 0em 0.3125em 0.3125em;
  border-radius: 0em 0em 0.3125em 0.3125em;
}
.ui.button.attached.left {
  display: inline-block;
  border-left: none;

  padding-right: 0.75em;
  text-align: right;

  -webkit-border-radius: 0.3125em 0em 0em 0.3125em;
  -moz-border-radius: 0.3125em 0em 0em 0.3125em;
  border-radius: 0.3125em 0em 0em 0.3125em;
}
.ui.button.attached.right {
  display: inline-block;

  padding-left: 0.75em;
  text-align: left;

  -webkit-border-radius: 0em 0.3125em 0.3125em 0em;
  -moz-border-radius: 0em 0.3125em 0.3125em 0em;
  border-radius: 0em 0.3125em 0.3125em 0em;
}



/*-------------------
      Or Buttons
--------------------*/

.ui.buttons .or {
  position: relative;
  float: left;
  width: 0.3em;
  height: 1em;
  z-index: 3;
}
.ui.buttons .or:before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: 'or';
  background-color: #FFFFFF;

  margin-top: -0.15em;
  margin-left: -0.9em;

  width: 1.8em;
  height: 1.8em;

  line-height: 1.66;
  color: #AAAAAA;
  font-style: normal;
  font-weight: normal;
  text-align: center;

  -moz-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;
  -webkit-box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0px 2px 1px 0px rgba(0, 0, 0, 0.2) inset;

  -moz-border-radius: 500px;
  -webkit-border-radius: 500px;
  border-radius: 500px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.ui.buttons .or:after {
  position: absolute;
  top: 0em;
  left: 0em;
  content: ' ';

  width: 0.3em;
  height: 1.8em;

  background-color: transparent;
  border-top: 0.6em solid #FFFFFF;
  border-bottom: 0.6em solid #FFFFFF;
}

/* Fluid Or */
.ui.fluid.buttons .or {
  width: 0em !important;
}
.ui.fluid.buttons .or:after{
  display: none;
}


/*-------------------
       Attached
--------------------*/

/* Plural Attached */
.attached.ui.buttons {
  margin: 0px;
  -webkit-border-radius: 4px 4px 0px 0px;
  -moz-border-radius: 4px 4px 0px 0px;
  border-radius: 4px 4px 0px 0px;
}
.attached.ui.buttons .button:first-child {
  -webkit-border-radius: 4px 0px 0px 0px;
  -moz-border-radius: 4px 0px 0px 0px;
  border-radius: 4px 0px 0px 0px;
}
.attached.ui.buttons .button:last-child {
  -webkit-border-radius: 0px 4px 0px 0px;
  -moz-border-radius: 0px 4px 0px 0px;
  border-radius: 0px 4px 0px 0px;
}

/* Bottom Side */
.bottom.attached.ui.buttons {
  margin-top: -1px;
  -webkit-border-radius: 0px 0px 4px 4px;
  -moz-border-radius: 0px 0px 4px 4px;
  border-radius: 0px 0px 4px 4px;
}
.bottom.attached.ui.buttons .button:first-child {
  -webkit-border-radius: 0px 0px 0px 4px;
  -moz-border-radius: 0px 0px 0px 4px;
  border-radius: 0px 0px 0px 4px;
}
.bottom.attached.ui.buttons .button:last-child {
  -webkit-border-radius: 0px 0px 4px 0px;
  -moz-border-radius: 0px 0px 4px 0px;
  border-radius: 0px 0px 4px 0px;
}

/* Left Side */
.left.attached.ui.buttons {
  margin-left: -1px;
  -webkit-border-radius: 0px 4px 4px 0px;
  -moz-border-radius: 0px 4px 4px 0px;
  border-radius: 0px 4px 4px 0px;
}
.left.attached.ui.buttons .button:first-child {
  margin-left: -1px;
  -webkit-border-radius: 0px 4px 0px 0px;
  -moz-border-radius: 0px 4px 0px 0px;
  border-radius: 0px 4px 0px 0px;
}
.left.attached.ui.buttons .button:last-child {
  margin-left: -1px;
  -webkit-border-radius: 0px 0px 4px 0px;
  -moz-border-radius: 0px 0px 4px 0px;
  border-radius: 0px 0px 4px 0px;
}
/* Right Side */
.right.attached.ui.buttons,
.right.attached.ui.buttons .button {
  margin-right: -1px;
  -webkit-border-radius: 4px 0px 0px 4px;
  -moz-border-radius: 4px 0px 0px 4px;
  border-radius: 4px 0px 0px 4px;
}
.right.attached.ui.buttons .button:first-child {
  margin-left: -1px;
  -webkit-border-radius: 4px 0px 0px 0px;
  -moz-border-radius: 4px 0px 0px 0px;
  border-radius: 4px 0px 0px 0px;
}
.right.attached.ui.buttons .button:last-child {
  margin-left: -1px;
  -webkit-border-radius: 0px 0px 0px 4px;
  -moz-border-radius: 0px 0px 0px 4px;
  border-radius: 0px 0px 0px 4px;
}



/* Fluid */
.ui.fluid.buttons,
.ui.button.fluid,
.ui.fluid.buttons > .button {
  display: block;
  width: 100%;
}
.ui.two.buttons > .button {
  width: 50%;
}
.ui.three.buttons > .button {
  width: 33.333%;
}
.ui.four.buttons > .button {
  width: 25%;
}
.ui.five.buttons > .button {
  width: 20%;
}
.ui.six.buttons > .button {
  width: 16.666%;
}
.ui.seven.buttons > .button {
  width: 14.285%;
}
.ui.eight.buttons > .button {
  width: 12.500%;
}
.ui.nine.buttons > .button {
  width: 11.11%;
}
.ui.ten.buttons > .button {
  width: 10%;
}
.ui.eleven.buttons > .button {
  width: 9.09%;
}
.ui.twelve.buttons > .button {
  width: 8.3333%;
}

/* Fluid Vertical Buttons */
.ui.fluid.vertical.buttons,
.ui.fluid.vertical.buttons > .button {
  width: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.ui.two.vertical.buttons > .button {
  height: 50%;
}
.ui.three.vertical.buttons > .button {
  height: 33.333%;
}
.ui.four.vertical.buttons > .button {
  height: 25%;
}
.ui.five.vertical.buttons > .button {
  height: 20%;
}
.ui.six.vertical.buttons > .button {
  height: 16.666%;
}
.ui.seven.vertical.buttons > .button {
  height: 14.285%;
}
.ui.eight.vertical.buttons > .button {
  height: 12.500%;
}
.ui.nine.vertical.buttons > .button {
  height: 11.11%;
}
.ui.ten.vertical.buttons > .button {
  height: 10%;
}
.ui.eleven.vertical.buttons > .button {
  height: 9.09%;
}
.ui.twelve.vertical.buttons > .button {
  height: 8.3333%;
}



/*******************************
            Groups
*******************************/

.ui.buttons {

}
.ui.buttons:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.ui.buttons .button {
  float: left;
  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}
.ui.buttons .button:first-child  {
  margin-left: 0em;
  border-top-left-radius: 0.3125em;
  border-bottom-left-radius: 0.3125em;
}
.ui.buttons .button:last-child {
  border-top-right-radius: 0.3125em;
  border-bottom-right-radius: 0.3125em;
}

/* Vertical  Style */
.ui.buttons.vertical {
  display: inline-block;
}
.ui.buttons.vertical .button {
  display: block;
  float: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-left: none;
  box-shadow: none;
}
.ui.buttons.vertical .button:first-child,
.ui.buttons.vertical .mini.button:first-child,
.ui.buttons.vertical .tiny.button:first-child,
.ui.buttons.vertical .small.button:first-child,
.ui.buttons.vertical .massive.button:first-child,
.ui.buttons.vertical .huge.button:first-child {
  margin-top: 0px;
  -moz-border-radius: 0.3125em 0.3125em 0px 0px;
  -webkit-border-radius: 0.3125em 0.3125em 0px 0px;
  border-radius: 0.3125em 0.3125em 0px 0px;
}
.ui.buttons.vertical .button:last-child,
.ui.buttons.vertical .mini.button:last-child,
.ui.buttons.vertical .tiny.button:last-child,
.ui.buttons.vertical .small.button:last-child,
.ui.buttons.vertical .massive.button:last-child,
.ui.buttons.vertical .huge.button:last-child,
.ui.buttons.vertical .gigantic.button:last-child {
  -moz-border-radius: 0px 0px 0.3125em 0.3125em;
  -webkit-border-radius: 0px 0px 0.3125em 0.3125em;
  border-radius: 0px 0px 0.3125em 0.3125em;
}
/*
 * # Dividers
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
            Divider
*******************************/

.ui.divider {
  margin: 1rem 0rem;

  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  height: 0em;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}



.ui.vertical.divider,
.ui.horizontal.divider {
  position: absolute;

  border: none;
  height: 0em;
  margin: 0em;
  background-color: transparent;

  font-size: 0.8rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;

  color: rgba(0, 0, 0, 0.8);
}


/*--------------
    Vertical 
---------------*/

.vertical.ui.divider {    
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;

  margin: 0% 0% 0% -3%;

  width: 6%;
  height: 50%;
  
  line-height: 0;
  padding: 0em;
}

.vertical.ui.divider:before,
.vertical.ui.divider:after {    
  position: absolute;
  left: 50%;
  content: " ";
  z-index: 3;
  
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.8);

  width: 0%;
  height: 80%;
}

.vertical.ui.divider:before {
  top: -100%;
}

.vertical.ui.divider:after {
  top: auto;
  bottom: 0px;
}

/*--------------
    Horizontal 
---------------*/

.horizontal.ui.divider {    
  position: relative;
  top: 0%;
  left: 0%;

  margin: 1rem 0rem;
  width: 100%;
  height: 1em;
  padding: 0em;

  line-height: 1;
}

.horizontal.ui.divider:before,
.horizontal.ui.divider:after {    
  position: absolute;
  top: 50%;
  content: " ";
  z-index: 3;

  width: 45%;
  top: 50%;
  height: 0%;
  
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.horizontal.ui.divider:before {
  left: 0%;
}
.horizontal.ui.divider:after {
  left: auto;
  right: 0%;
}



/*******************************
            Variations
*******************************/


/*--------------
    Inverted 
---------------*/

.ui.divider.inverted {
  color: rgba(255, 255, 255, 1);
}
.ui.vertical.inverted.divider, 
.ui.horizontal.inverted.divider {
  color: rgba(255, 255, 255, 0.9);
}
.ui.divider.inverted,
.ui.divider.inverted:after,
.ui.divider.inverted:before {
  border-top-color: rgba(0, 0, 0, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.15);

  border-left-color: rgba(0, 0, 0, 0.15);
  border-right-color: rgba(255, 255, 255, 0.15);
}

/*--------------
    Fitted 
---------------*/

.ui.fitted.divider {
  margin: 0em;
}

/*--------------
    Clearing 
---------------*/

.ui.clearing.divider {
  clear: both;
}

/*
 * # Semantic Headers - Flat
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 29 2013
 */

/*******************************
            Header
*******************************/

/* Standard */
.ui.header {
  border: none;
  margin: 1em 0em 1rem;
  padding: 0em;
  
  font-size: 1.33em;
  font-weight: bold;
  line-height: 1.33;
}


.ui.header .ui.sub.header,
.ui.header .sub.header {
  font-size: 1rem;
  font-weight: normal;
  margin: 0em;
  padding: 0em;

  line-height: 1.2;
  color: rgba(0, 0, 0, 0.5);
}

.ui.header .content {
  display: inline-block;
  vertical-align: middle;
}
.ui.header .icon {
  margin-right: 0.5em;
}

/* Positioning */
.ui.header:first-child {
  margin-top: 0em;
}
.ui.header:last-child {
  margin-bottom: 0em;
}
.ui.header + p {
  margin-top: 0em;
}


/*--------------
  Page Heading
---------------*/

h1.ui.header {
  min-height: 1rem;
  line-height: 1.33;
  font-size: 2rem;
}
h2.ui.header {
  line-height: 1.33;
  font-size: 1.75rem;
}
h3.ui.header {
  line-height: 1.33;
  font-size: 1.33rem;
}
h4.ui.header {
  line-height: 1.33;
  font-size: 1.1rem;
}
h5.ui.header {
  line-height: 1.2;
  font-size: 1rem;
}

/*--------------
 Content Heading
---------------*/

.ui.huge.header {
  min-height: 1em;
  font-size: 2em;
}
.ui.large.header {
  font-size: 1.75em;
}
.ui.medium.header {
  font-size: 1.33em;
}
.ui.small.header {
  font-size: 1.1em;
}
.ui.tiny.header {
  font-size: 1em;
}

/*******************************
            States
*******************************/

.ui.disabled.header {
  opacity: 0.5;
}


/*******************************
           Variations
*******************************/


/*-------------------
       Colors
--------------------*/

.ui.blue.header {
  color: #6ECFF5 !important;
}
.ui.black.header {
  color: #5C6166 !important;
}
.ui.green.header {
  color: #A1CF64 !important;
}
.ui.red.header {
  color: #EF4D6D !important;
}
.ui.purple.header {
  color: #564F8A !important;
}
.ui.teal.header {
  color: #00B5AD !important;
}

.ui.blue.dividing.header {
  border-bottom: 3px solid #6ECFF5;
}
.ui.black.dividing.header {
  border-bottom: 3px solid #5C6166;
}
.ui.green.dividing.header {
  border-bottom: 3px solid #A1CF64;
}
.ui.red.dividing.header {
  border-bottom: 3px solid #EF4D6D;
}
.ui.purple.dividing.header {
  border-bottom: 3px solid #564F8A;
}
.ui.teal.dividing.header {
  border-bottom: 3px solid #00B5AD;
}

/*-------------------
      Inverted 
--------------------*/

.ui.inverted.header {
  color: #FFFFFF;
}
.ui.inverted.header .sub.header {
  color: rgba(255, 255, 255, 0.85);
}


/*-------------------
   Inverted Colors
--------------------*/

.ui.inverted.black.header {
  background-color: #5C6166 !important;
  color: #FFFFFF !important;
}
.ui.inverted.blue.header {
  background-color: #6ECFF5 !important;
  color: #FFFFFF !important;
}
.ui.inverted.green.header {
  background-color: #A1CF64 !important;
  color: #FFFFFF !important;
}
.ui.inverted.red.header {
  background-color: #EF4D6D !important;
  color: #FFFFFF !important;
}
.ui.inverted.purple.header {
  background-color: #564F8A !important;
  color: #FFFFFF !important;
}
.ui.inverted.teal.header {
  background-color: #00B5AD !important;
  color: #FFFFFF !important;
}

.ui.inverted.block.header {
  border-bottom: none;
}

/*-------------------
       Aligned
--------------------*/

.ui.left.aligned.header {
  text-align: left;
}
.ui.right.aligned.header {
  text-align: right;
}
.ui.center.aligned.header {
  text-align: center;
}

/*-------------------
       Floated
--------------------*/

.ui.floated.header,
.ui.left.floated.header {
  float: left;
  margin-top: 0em;
  margin-right: 0.5em;
}
.ui.right.floated.header {
  float: right;
  margin-top: 0em;
  margin-left: 0.5em;
}

/*-------------------
       Fittted
--------------------*/

.ui.fitted.header {
  padding: 0em;
}


/*-------------------
      Dividing
--------------------*/

.ui.dividing.header {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ui.dividing.header .icon {
  margin-bottom: 0.2em;
}


/*-------------------
        Block
--------------------*/

.ui.block.header {
  background-color: #F5F5F5;
  padding: 0.5em 1em;  
}

/*-------------------
       Attached
--------------------*/

.ui.attached.header {
  padding: 0.5em 1rem;

  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}
.ui.top.attached.header {   
  margin-bottom: 0em;

  -webkit-border-radius: 0.3125em 0.3125em 0em 0em;
  -moz-border-radius: 0.3125em 0.3125em 0em 0em;
  border-radius: 0.3125em 0.3125em 0em 0em;
}
.ui.bottom.attached.header {
  margin-top: 0em;

  -webkit-border-radius: 0em 0em 0.3125em 0.3125em;
  -moz-border-radius: 0em 0em 0.3125em 0.3125em;
  border-radius: 0em 0em 0.3125em 0.3125em;
}


/*-------------------
        Icon
--------------------*/

.ui.icon.header {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.ui.icon.header .icon {
  float: none;
  display: block;
  font-size: 4em;
  margin: 0em auto 0.2em;
}
.ui.icon.header .circular.icon,
.ui.icon.header .square.icon {
  font-size: 2em;
}
.ui.block.icon.header .icon {
  margin-bottom: 0em;
}

.ui.icon.header.aligned {
  display: block;
}
/*
 * # Semantic Icons - Flat
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: May 17 2013
 */


/*******************************
             Icon
*******************************/

@font-face {
  font-family: 'Icons';
  src: url(https://p1.q-static.com/quirky-fonts/icons.eot);
  src:
    url(https://p1.q-static.com/quirky-fonts/icons.eot?#iefix) format('embedded-opentype'),
    url(https://p1.q-static.com/quirky-fonts/icons.woff) format('woff'),
    url(https://p1.q-static.com/quirky-fonts/icons.ttf) format('truetype'),
    url(https://p1.q-static.com/quirky-fonts/icons.svg#icons) format('svg')
  ;

  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: inherit;
  text-transform: none;
}

i.icon {
  display: inline-block;
  opacity: 0.75;

  margin: 0em 0.25em 0em 0em;

  width: 1.23em;
  height: 1em;

  font-family: 'Icons';
  font-style: normal;
  line-height: 1;
  font-weight: normal;
  text-decoration: inherit;
  text-align: center;

  speak: none;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

/* icons available */
i.icon.circle.attention:before { content: '\2757'; } /* '❗' */
i.icon.circle.help:before { content: '\e704'; } /* '' */
i.icon.circle.info:before { content: '\e705'; } /* '' */
i.icon.add:before { content: '\2795'; } /* '➕' */

i.icon.chart:before { content: '📈'; } /* '\1f4c8' */
i.icon.chart.bar:before { content: '📊'; } /* '\1f4ca' */
i.icon.chart.pie:before { content: '\e7a2'; } /* '' */

i.icon.resize.full:before { content: '\e744'; } /* '' */
i.icon.resize.horizontal:before { content: '\2b0d'; } /* '⬍' */
i.icon.resize.small:before { content: '\e746'; } /* '' */
i.icon.resize.vertical:before { content: '\2b0c'; } /* '⬌' */

i.icon.down:before { content: '\2193'; } /* '↓' */
i.icon.down.triangle:before { content: '\25be'; } /* '▾' */
i.icon.down.arrow:before { content: '\e75c'; } /* '' */

i.icon.left:before { content: '\2190'; } /* '←' */
i.icon.left.triangle:before { content: '\25c2'; } /* '◂' */
i.icon.left.arrow:before { content: '\e75d'; } /* '' */

i.icon.right:before { content: '\2192'; } /* '→' */
i.icon.right.triangle:before { content: '\25b8'; } /* '▸' */
i.icon.right.arrow:before { content: '\e75e'; } /* '' */

i.icon.up:before { content: '\2191'; } /* '↑' */
i.icon.up.triangle:before { content: '\25b4'; } /* '▴' */
i.icon.up.arrow:before { content: '\e75f'; } /* '' */

i.icon.folder:before { content: '\e810'; } /* '' */
i.icon.open.folder:before { content: '📂'; } /* '\1f4c2' */

i.icon.globe:before { content: '𝌍'; } /* '\1d30d' */
i.icon.desk.globe:before { content: '🌐'; } /* '\1f310' */

i.icon.star:before { content: '\e801'; } /* '' */
i.icon.star.empty:before { content: '\e800'; } /* '' */
i.icon.star.half:before { content: '\e701'; } /* '' */

i.icon.lock:before { content: '🔒'; } /* '\1f512' */
i.icon.unlock:before { content: '🔓'; } /* '\1f513' */

i.icon.layout.grid:before { content: '\e80c'; } /* '' */
i.icon.layout.block:before { content: '\e708'; } /* '' */
i.icon.layout.list:before { content: '\e80b'; } /* '' */

i.icon.heart.empty:before { content: '\2661'; } /* '♡' */
i.icon.heart:before { content: '\2665'; } /* '♥' */


i.icon.asterisk:before { content: '\2731'; } /* '✱' */
i.icon.attachment:before { content: '📎'; } /* '\1f4ce' */
i.icon.attention:before { content: '\26a0'; } /* '⚠' */
i.icon.trophy:before { content: '🏉'; } /* '\1f3c9' */
i.icon.barcode:before { content: '\e792'; } /* '' */
i.icon.cart:before { content: '\e813'; } /* '' */
i.icon.block:before { content: '🚫'; } /* '\1f6ab' */
i.icon.book:before { content: '📖'; } /* '\1f4d6' */
i.icon.bookmark:before { content: '🔖'; } /* '\1f516' */
i.icon.calendar:before { content: '📅'; } /* '\1f4c5' */
i.icon.cancel:before { content: '\2716'; } /* '✖' */
i.icon.close:before { content: '\e80d'; } /* '' */
i.icon.color:before { content: '\e794'; } /* '' */
i.icon.chat:before { content: '\e720'; } /* '' */
i.icon.check:before { content: '\2611'; } /* '☑' */
i.icon.time:before { content: '🕔'; } /* '\1f554' */
i.icon.cloud:before { content: '\2601'; } /* '☁' */
i.icon.code:before { content: '\e714'; } /* '' */
i.icon.email:before { content: '\40'; } /* '@' */
i.icon.settings:before { content: '\26ef'; } /* '⛯' */
i.icon.setting:before { content: '\2699'; } /* '⚙' */
i.icon.comment:before { content: '\e802'; } /* '' */
i.icon.clockwise.counter:before { content: '\27f2'; } /* '⟲' */
i.icon.clockwise:before { content: '\27f3'; } /* '⟳' */
i.icon.cube:before { content: '\e807'; } /* '' */
i.icon.direction:before { content: '\27a2'; } /* '➢' */
i.icon.doc:before { content: '📄'; } /* '\1f4c4' */
i.icon.docs:before { content: '\e736'; } /* '' */
i.icon.dollar:before { content: '💵'; } /* '\1f4b5' */
i.icon.paint:before { content: '\e7b5'; } /* '' */
i.icon.edit:before { content: '\270d'; } /* '✍' */
i.icon.eject:before { content: '\2ecf'; } /* '⻏' */
i.icon.export:before { content: '\e715'; } /* '' */
i.icon.hide:before { content: '\e80f'; } /* '' */
i.icon.unhide:before { content: '\e70b'; } /* '' */
i.icon.facebook:before { content: '\f301'; } /* '' */
i.icon.fast-forward:before { content: '\e804'; } /* '' */
i.icon.fire:before { content: '🔥'; } /* '\1f525' */
i.icon.flag:before { content: '\2691'; } /* '⚑' */
i.icon.lightning:before { content: '\26a1'; } /* '⚡' */
i.icon.lab:before { content: '\68'; } /* 'h' */
i.icon.flight:before { content: '\2708'; } /* '✈' */
i.icon.forward:before { content: '\27a6'; } /* '➦' */
i.icon.gift:before { content: '🎁'; } /* '\1f381' */
i.icon.github:before { content: '\f308'; } /* '' */
i.icon.globe:before { content: '\e817'; } /* '' */
i.icon.headphones:before { content: '🎧'; } /* '\1f3a7' */
i.icon.question:before { content: '\2753'; } /* '❓' */
i.icon.home:before { content: '\2302'; } /* '⌂' */
i.icon.i:before { content: '\2139'; } /* 'ℹ' */
i.icon.idea:before { content: '💡'; } /* '\1f4a1' */
i.icon.open:before { content: '🔗'; } /* '\1f517' */
i.icon.content:before { content: '\e782'; } /* '' */
i.icon.location:before { content: '\e724'; } /* '' */
i.icon.mail:before { content: '\2709'; } /* '✉' */
i.icon.mic:before { content: '🎤'; } /* '\1f3a4' */
i.icon.minus:before { content: '\2d'; } /* '-' */
i.icon.money:before { content: '💰'; } /* '\1f4b0' */
i.icon.off:before { content: '\e78e'; } /* '' */
i.icon.pause:before { content: '\e808'; } /* '' */
i.icon.photos:before { content: '\e812'; } /* '' */
i.icon.photo:before { content: '🌄'; } /* '\1f304' */
i.icon.pin:before { content: '📌'; } /* '\1f4cc' */
i.icon.play:before { content: '\e809'; } /* '' */
i.icon.plus:before { content: '\2b'; } /* '+' */
i.icon.print:before { content: '\e716'; } /* '' */
i.icon.rss:before { content: '\e73a'; } /* '' */
i.icon.search:before { content: '🔍'; } /* '\1f50d' */
i.icon.shuffle:before { content: '\e803'; } /* '' */
i.icon.tag:before { content: '\e80a'; } /* '' */
i.icon.tags:before { content: '\e70d'; } /* '' */
i.icon.terminal:before { content: '\e7ac'; } /* '' */
i.icon.thumbs.down:before { content: '👎'; } /* '\1f44e' */
i.icon.thumbs.up:before { content: '👍'; } /* '\1f44d' */
i.icon.to-end:before { content: '\e806'; } /* '' */
i.icon.to-start:before { content: '\e805'; } /* '' */
i.icon.top.list:before { content: '🏆'; } /* '\1f3c6' */
i.icon.trash:before { content: '\e729'; } /* '' */
i.icon.twitter:before { content: '\f303'; } /* '' */
i.icon.upload:before { content: '\e711'; } /* '' */
i.icon.user.add:before { content: '\e700'; } /* '' */
i.icon.user:before { content: '👤'; } /* '\1f464' */
i.icon.community:before { content: '\e814'; } /* '' */
i.icon.users:before { content: '👥'; } /* '\1f465' */
i.icon.id:before { content: '\e722'; } /* '' */
i.icon.url:before { content: '🔗'; } /* '\1f517' */
i.icon.zoom.in:before { content: '\e750'; } /* '' */
i.icon.zoom.out:before { content: '\e751'; } /* '' */

/*--------------
   Spacing Fix
---------------*/

/* dropdown arrows are to the right */
i.dropdown.icon {
  margin: 0em 0em 0em 0.5em;
}

/* stars are usually consecutive */
i.icon.star {
  width: auto;
  margin: 0em;
  vertical-align: middle;
}

/* left side icons */
i.icon.left,
i.icon.left,
i.icon.left {
  width: auto;
  margin: 0em 0.5em 0em 0em;
}

/* right side icons */
i.icon.search,
i.icon.up,
i.icon.down,
i.icon.right {
  width: auto;
  margin: 0em 0em 0em 0.5em;
}

/*--------------
     Aliases
---------------*/

/* aliases for convenience */
i.icon.delete:before { content: '\e80d'; } /* '' */
i.icon.dropdown:before { content: '\25be'; } /* '▾' */

i.icon.help:before { content: '\e704'; } /* '' */
i.icon.info:before { content: '\e705'; } /* '' */
i.icon.error:before { content: '\e80d'; } /* '' */

i.icon.dislike:before { content: '\2661'; } /* '♡' */
i.icon.like:before { content: '\2665'; } /* '♥' */

i.icon.eye:before { content: '\e80f'; } /* '' */
i.icon.eye.hidden:before { content: '\e70b'; } /* '' */
i.icon.date:before { content: '📅'; } /* '\1f4c5' */


/*******************************
             States
*******************************/

i.icon.hover {
  opacity: 1;
}

i.icon.active {
  opacity: 1;
}

i.emphasized.icon {
  opacity: 1;
}

i.icon.disabled {
  opacity: 0.3;
}


/*******************************
           Variations
*******************************/

/*-------------------
         Link
--------------------*/

i.link.icon {
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.link.icon:hover {
  opacity: 1 !important;
}

/*-------------------
      Circular
--------------------*/

i.circular.icon {
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;

  padding: 0.5em 0.35em !important;

  -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;

  width: 2em;
  height: 2em;
}
i.circular.icon:before {
  vertical-align: middle;
}
i.circular.inverted.icon {
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}


/*-------------------
        Square
--------------------*/

i.square.icon {
  width: 2em;
  height: 2em;
  padding: 0.5em 0.35em !important;

  -webkit-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0em 0em 0em 0.1em rgba(0, 0, 0, 0.1) inset;

  vertical-align: baseline;
}
i.square.icon:before {
  vertical-align: middle;
}
i.square.inverted.icon {
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}


/*-------------------
      Inverted
--------------------*/

i.inverted.icon {
  background-color: #222222;
  color: #FFFFFF;
}

/*-------------------
       Colors
--------------------*/

i.blue.icon {
  color: #6ECFF5 !important;
}
i.black.icon {
  color: #5C6166 !important;
}
i.green.icon {
  color: #A1CF64 !important;
}
i.red.icon {
  color: #EF4D6D !important;
}
i.purple.icon {
  color: #564F8A !important;
}
i.teal.icon {
  color: #00B5AD !important;
}

/*-------------------
   Inverted Colors
--------------------*/

i.inverted.black.icon {
  background-color: #5C6166 !important;
  color: #FFFFFF !important;
}
i.inverted.blue.icon {
  background-color: #6ECFF5 !important;
  color: #FFFFFF !important;
}
i.inverted.green.icon {
  background-color: #A1CF64 !important;
  color: #FFFFFF !important;
}
i.inverted.red.icon {
  background-color: #EF4D6D !important;
  color: #FFFFFF !important;
}
i.inverted.purple.icon {
  background-color: #564F8A !important;
  color: #FFFFFF !important;
}
i.inverted.teal.icon {
  background-color: #00B5AD !important;
  color: #FFFFFF !important;
}


/*-------------------
        Sizes
--------------------*/

i.small.icon {
  font-size: 0.875em;
}
i.icon {
  font-size: 1em;
}
i.large.icon {
  font-size: 3em;
  margin-right: 0.5em;
  vertical-align: middle;
}
i.huge.icon {
  font-size: 6em;
  margin-right: 0.75em;
  vertical-align: middle;
}
i.massive.icon {
  font-size: 12em;
  margin-right: 1em;
  vertical-align: middle;
}

/*--------------
  Sketchy Sizing
---------------*/

i.sketchy.circular.icon,
i.sketchy.square.icon {
  padding: 0.35em !important;
}

/*
 * # Semantic Image
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
             Image
*******************************/

.ui.image {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
}
img.ui.image {
  display: block;
  background: none;
}
.ui.image img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*******************************
            States
*******************************/


.ui.disabled.image {
  cursor: default;
  opacity: 0.3;
}


/*******************************
          Variations
*******************************/

/*--------------
     Rounded
---------------*/

.ui.rounded.images .image,
.ui.rounded.images img,
.ui.rounded.image img,
.ui.rounded.image {
  -webkit-border-radius: 0.3125em;
  -moz-border-radius: 0.3125em;
  border-radius: 0.3125em;
}

/*--------------
     Circular
---------------*/

.ui.circular.images .image,
.ui.circular.images img,
.ui.circular.image img,
.ui.circular.image {
  -webkit-border-radius: 500em;
  -moz-border-radius: 500em;
  border-radius: 500em;
}

/*--------------
     Avatar
---------------*/


.ui.avatar.images .image,
.ui.avatar.images img,
.ui.avatar.image img,
.ui.avatar.image {
  margin-right: 0.5em;

  display: inline-block;
  width: 2em;
  height: 2em;

  -webkit-border-radius: 500em;
  -moz-border-radius: 500em;
  border-radius: 500em;
}



/*-------------------
       Floated
--------------------*/

.ui.floated.image,
.ui.floated.images {
  float: left;
  margin-right: 0.5em;
}
.ui.right.floated.images,
.ui.right.floated.image {
  float: right;
  margin-left: 0.5em;
}


/*--------------
     Sizes
---------------*/

.ui.tiny.images .image,
.ui.tiny.images img,
.ui.tiny.image {
  width: 20px;
  font-size: 0.7rem;
}
.ui.mini.images .image,
.ui.mini.images img,
.ui.mini.image {
  width: 35px;
  font-size: 0.8rem;
}
.ui.small.images .image,
.ui.small.images img,
.ui.small.image {
  width: 80px;
  font-size: 0.9rem;
}
.ui.medium.images .image,
.ui.medium.images img,
.ui.medium.image {
  width: 300px;
  font-size: 1rem;
}
.ui.large.images .image,
.ui.large.images img,
.ui.large.image {
  width: 450px;
  font-size: 1.1rem;
}
.ui.huge.images .image,
.ui.huge.images img,
.ui.huge.image {
  width: 600px;
  font-size: 1.2rem;
}

/*******************************
              Groups
*******************************/

.ui.images {
  font-size: 0em;
  margin: 0em -0.25rem 0rem;
}

.ui.images .image,
.ui.images img {
  display: inline-block;
  margin: 0em 0.25em 0.5em;
}

/*
 * # Semantic Input
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: May 29 2013
 */


/*******************************
           Standard
*******************************/


/*--------------------
        Inputs
---------------------*/

.ui.input {
  display: inline-block;
  position: relative;
}
.ui.input input {
  width: 100%;
  font-family: "Helvetica Neue", "Helvetica", Arial;
  
  margin: 0em;
  padding: 0.85em 1.2em;
  font-size: 0.875em;

  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.15);
  outline: none;

  color: rgba(0, 0, 0, 0.7);

  -webkit-border-radius: 0.3125em;
  -moz-border-radius: 0.3125em;
  border-radius: 0.3125em;

  -webkit-transition: 
    background-color 0.3s ease-out,
    box-shadow 0.2s ease,
    border-color 0.2s ease
  ;
  -moz-transition: 
    background-color 0.3s ease-out,
    box-shadow 0.2s ease,
    border-color 0.2s ease
  ;
  -o-transition: 
    background-color 0.3s ease-out,
    box-shadow 0.2s ease,
    border-color 0.2s ease
  ;
  -ms-transition: 
    background-color 0.3s ease-out,
    box-shadow 0.2s ease,
    border-color 0.2s ease
  ;
  transition: 
    background-color 0.3s ease-out,
    box-shadow 0.2s ease,
    border-color 0.2s ease
  ;

  -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}


/*--------------------
      Placeholder
---------------------*/

/* browsers require these rules separate */
.ui.input::-web inputkit-input-placeholder {
  color: #E0E0E0;
}
.ui.input::-moz input-placeholder {
  color: #E0E0E0;
}


/*******************************
            States
*******************************/

/*--------------------
        Active
---------------------*/

.ui.input input:active,
.ui.input.down input {
  border-color: rgba(0, 0, 0, 0.3);
  background-color: #FAFAFA;
}

/*--------------------
        Focus
---------------------*/

.ui.input.focus input,
.ui.input input:focus  {
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.85);
}
.ui.input.focus input input::-webkit-input-placeholder,
.ui.input input:focus input::-webkit-input-placeholder {
  color: #AAAAAA;
}
.ui.input.focus input input::-moz-placeholder,
.ui.input input:focus input::-moz-placeholder {
  color: #AAAAAA;
}


/*--------------------
        Error
---------------------*/

.ui.input.error input {
  background-color: #FFFAFA;
  border-color: #E7BEBE;
  color: #EF4D6D;
}

/* Error Placeholder */
.ui.input.error input ::-webkit-input-placeholder {
  color: rgba(255, 80, 80, 0.4);
}
.ui.input.error input ::-moz-placeholder {
  color: rgba(255, 80, 80, 0.4);
}
.ui.input.error input :focus::-webkit-input-placeholder {
  color: rgba(255, 80, 80, 0.7);
}
.ui.input.error input :focus::-moz-placeholder {
  color: rgba(255, 80, 80, 0.7);
}

/*******************************
           Variations
*******************************/


/*--------------------
      Transparent
---------------------*/

.ui.transparent.input input {
  border: none;
  background-color: transparent;
}


/*--------------------
         Icon
---------------------*/

.ui.icon.input > .icon {
  position: absolute;
  opacity: 0.5;
  top: 1px;
  right: 1px;

  margin: 0em;
  
  width: 2.5em;
  height: 2.5em;
  padding-top: 0.75em;

  text-align: center;

  -webkit-border-radius: 0.2em 0em 0em 0.2em;
  -moz-border-radius: 0.2em 0em 0em 0.2em;
  border-radius: 0.2em 0em 0em 0.2em;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
.ui.icon.input input {
  padding-right: 3em !important;
}

.ui.left.icon.input .icon {
  right: auto;
  left: 1px;
}
.ui.left.icon.input input {
  padding-left: 3em !important;
  padding-right: 1.2em !important;
}

.ui.icon.input input:focus ~ .icon {
  opacity: 1;
}

/*--------------------
        Labeled
---------------------*/

.ui.labeled.input .corner.label {
  top: 1px;
  right: 1px;

  font-size: 0.7em;

  -webkit-border-top-right-radius: 0.3125em;
  -moz-border-top-right-radius: 0.3125em;
  border-top-right-radius: 0.3125em;
}
.ui.labeled.input input {
  padding-right: 2.5em !important;
}



/*--------------------
        Action
---------------------*/

.ui.action.input {
  display: table;
}

.ui.action.input > input {
  display: table-cell;
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-right: none;
}
.ui.action.input > .button {
  display: table-cell;
  opacity: 0.9;

  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;

  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1) inset;
  white-space: nowrap;
}

.ui.action.input > input:focus ~ .button {
  opacity: 1;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2) inset;
}
/*
 * # Semantic Label - Flat
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 26 2013
 */

/*******************************
            Label
*******************************/

.ui.label {
  display: inline-block;
  vertical-align: middle;

  margin: -0.5em 0.25em 0em;
  background-color: #E8E8E8;
  padding: 0.5em 0.8em;
  color: rgba(0, 0, 0, 0.65);

  text-transform: uppercase;

  -webkit-border-radius: 0.325em;
  -moz-border-radius: 0.325em;
  border-radius: 0.325em;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition:
    background 0.1s linear
  ;
  -moz-transition:
    background 0.1s linear
  ;
  -o-transition:
    background 0.1s linear
  ;
  -ms-transition:
    background 0.1s linear
  ;
  transition:
    background 0.1s linear
  ;
}
a.ui.label {
  cursor: pointer;
}
.ui.label.disabled {
  opacity: 0.5;
}

.ui.label .detail {
  display: inline-block;
  margin-left: 0.5em;
  font-weight: bold;
  opacity: 0.8;
}
.ui.label .icon.close {
  cursor: pointer;
  margin-left: 0.5em;
  opacity: 0.7;

  -webkit-transition:
    background 0.1s linear
  ;
  -moz-transition:
    background 0.1s linear
  ;
  -o-transition:
    background 0.1s linear
  ;
  -ms-transition:
    background 0.1s linear
  ;
  transition:
    background 0.1s linear
  ;
}

/*******************************
             States
*******************************/

/*-------------------
        Hover
--------------------*/

a.ui.labels .label:hover,
a.ui.label:hover {
  background-color: #E0E0E0;
  color: rgba(0, 0, 0, 0.7);
}
.ui.labels a.label:hover:before,
a.ui.label:hover:before {
  background-color: #E0E0E0;
  color: rgba(0, 0, 0, 0.7);
}

.ui.label .icon.close:hover {
  opacity: 0.99;
}



/*******************************
           Variations
*******************************/


/*-------------------
         Tag
--------------------*/

.ui.tag.labels .label,
.ui.tag.label {
  margin-left: 1em;
  position: relative;
  padding: 0.33em 1.3em 0.33em 1.4em;

  -webkit-border-radius: 0px 3px 3px 0px;
  -moz-border-radius: 0px 3px 3px 0px;
  border-radius: 0px 3px 3px 0px;
}
.ui.tag.labels .label:before,
.ui.tag.label:before {
    position: absolute;
    top: 0.3em;
    left: 0.3em;
    content: '';

    margin-left: -1em;
    background-image: none;

    width: 1.5em;
    height: 1.5em;

    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);

    -webkit-transition:
      background 0.1s linear
    ;
    -moz-transition:
      background 0.1s linear
    ;
    -o-transition:
      background 0.1s linear
    ;
    -ms-transition:
      background 0.1s linear
    ;
    transition:
      background 0.1s linear
    ;
}


.ui.tag.labels .label:after,
.ui.tag.label:after {
  position: absolute;
  content: '';
  top: 50%;
  left: -0.25em;

  margin-top: -0.3em;
  background-color: #FFFFFF;
  width: 0.55em;
  height: 0.55em;

  -webkit-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.3);

  -moz-border-radius: 100px 100px 100px 100px;
  -webkit-border-radius: 100px 100px 100px 100px;
  border-radius: 100px 100px 100px 100px;
}

/*-------------------
       Attached
--------------------*/

.ui.top.attached.label,
.ui.attached.label {
  width: 100%;
  position: absolute;
  margin: 0em;
  top: 0em;
  left: 0em;
  -webkit-border-radius: 4px 4px 0em 0em;
  -moz-border-radius: 4px 4px 0em 0em;
  border-radius: 4px 4px 0em 0em;  
}
.ui.bottom.attached.label {
  top: auto;
  bottom: 0em;

  -webkit-border-radius: 0em 0em 4px 4px;
  -moz-border-radius: 0em 0em 4px 4px;
  border-radius: 0em 0em 4px 4px;  
}

.ui.top.left.attached.label {
  width: auto;
  margin-top: 0em !important;

  -webkit-border-radius: 4px 0em 4px 0em;
  -moz-border-radius: 4px 0em 4px 0em;
  border-radius: 4px 0em 4px 0em;  
}

.ui.top.right.attached.label {
  width: auto;
  left: auto;
  right: 0em;

  -webkit-border-radius: 0em 4px 0em 4px;
  -moz-border-radius: 0em 4px 0em 4px;
  border-radius: 0em 4px 0em 4px;
}
.ui.bottom.left.attached.label {
  width: auto;
  top: auto;
  bottom: 0em;

  -webkit-border-radius: 4px 0em 0em 4px;
  -moz-border-radius: 4px 0em 0em 4px;
  border-radius: 4px 0em 0em 4px;
}
.ui.bottom.right.attached.label {
  width: auto;
  -webkit-border-radius: 4px 0em 4px 0em;
  -moz-border-radius: 4px 0em 4px 0em;
  border-radius: 4px 0em 4px 0em;
}

/*-------------------
    Corner Label
--------------------*/

.ui.corner.label {
  background-color: transparent;
  position: absolute;
  top: 0em;
  right: 0em;
  z-index: 10;
  margin: 0em;

  font-size: 0.9em;
  width: 1.75em;
  height: 1.75em;
  padding: 0em;

  text-align: center;

  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.ui.corner.label:after {
  position: absolute;
  content: "";
  right: 0em;
  top: 0em;
  z-index: -1;

  width: 0em;
  height: 0em;

  border-color: transparent #E8E8E8 transparent transparent;
  border-style: solid;
  border-width: 0em 2.75em 2.75em 0em;

  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.ui.corner.label .icon {
  margin: 0.35em 0em;
  vertical-align: top;
}
.ui.corner.label .text {
  display: inline-block;
  margin: 0.7em 0em 0em 0em;
  width: 2.5em;

  font-size: 0.7em;
  text-align: center;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Left Corner */
.ui.left.corner.label,
.ui.left.corner.label:after {
  right: auto;
  left: 0em;
}
.ui.left.corner.label:after {
  border-width: 2.75em 2.75em 0em 0em;
  border-color: #E8E8E8 transparent transparent;
}
.ui.left.corner.label .text {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}



/* Hover */
.ui.corner.label:hover {
  background-color: transparent;
}
a.ui.corner.label:hover::after {
  border-right-color: #E0E0E0;
}
a.ui.left.corner.label:hover::after {
  border-right-color: transparent;
  border-top-color: #E0E0E0;
}



/*-------------------
       Fluid
--------------------*/

.ui.label.fluid,
.ui.fluid.labels > .label {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*-------------------
       Inverted
--------------------*/

.ui.inverted.labels .label,
.ui.inverted.label {
  color: #FFFFFF !important;
}

/*-------------------
       Colors
--------------------*/

/*--- Black ---*/
.ui.black.labels .label,
.ui.black.label {
  background-color: #5C6166 !important;
  color: #FFFFFF !important;
}
.ui.labels .black.label:before,
.ui.black.labels .label:before,
.ui.black.label:before {
  background-color: #5C6166 !important;
}
/* Hover */
a.ui.black.labels .label:hover,
a.ui.black.label:hover {
  background-color: #888888 !important;
}
.ui.labels a.black.label:hover:before,
.ui.black.labels a.label:hover:before,
a.ui.black.label:hover:before {
  background-color: #888888 !important;
}

/*--- Green ---*/
.ui.green.labels .label,
.ui.green.label {
  background-color: #A1CF64 !important;
  color: #FFFFFF !important;
}
.ui.labels .green.label:before,
.ui.green.labels .label:before,
.ui.green.label:before {
  background-color: #A1CF64 !important;
}

/* Hover */
a.ui.green.labels .label:hover,
a.ui.green.label:hover {
  background-color: #89B84C !important;
}
.ui.labels a.green.label:hover:before,
.ui.green.labels a.label:hover:before,
a.ui.green.label:hover:before {
  background-color: #89B84C !important;
}


/*--- Red ---*/
.ui.red.labels .label,
.ui.red.label {
  background-color: #EF4D6D !important;
  color: #FFFFFF !important;
}
.ui.labels .red.label:before,
.ui.red.labels .label:before,
.ui.red.label:before {
  background-color: #EF4D6D !important;
}
/* Corner */
.ui.red.corner.label {
  background-color: transparent;
}

/* Hover */
a.ui.red.labels .label:hover,
a.ui.red.label:hover{
  background-color: #DE3859 !important;
  color: #FFFFFF !important;
}
.ui.labels a.red.label:hover:before,
.ui.red.labels a.label:hover:before,
a.ui.red.label:hover:before {
  background-color: #DE3859 !important;
}


/*--- Blue ---*/
.ui.blue.labels .label,
.ui.blue.label {
  background-color: #6ECFF5 !important;
  color: #FFFFFF !important;
}
.ui.labels .blue.label:before,
.ui.blue.labels .label:before,
.ui.blue.label:before {
  background-color: #6ECFF5 !important;
}

/* Hover */
a.ui.blue.labels .label:hover,
.ui.blue.labels a.label:hover,
a.ui.blue.label:hover {
  background-color: #1AB8F3 !important;
  color: #FFFFFF !important;
}
.ui.labels a.blue.label:hover:before,
.ui.blue.labels a.label:hover:before,
a.ui.blue.label:hover:before {
  background-color: #1AB8F3 !important;
}

/*--- Purple ---*/
.ui.purple.labels .label,
.ui.purple.label {
  background-color: #564F8A !important;
  color: #FFFFFF !important;
}
.ui.labels .purple.label:before,
.ui.purple.labels .label:before,
.ui.purple.label:before {
  background-color: #564F8A !important;
}

/* Hover */
a.ui.purple.labels .label:hover,
.ui.purple.labels a.label:hover,
a.ui.purple.label:hover {
  background-color: #3E3773 !important;
  color: #FFFFFF !important;
}
.ui.labels a.purple.label:hover:before,
.ui.purple.labels a.label:hover:before,
a.ui.purple.label:hover:before {
  background-color: #3E3773 !important;
}

/*--- Pink ---*/
.ui.teal.labels .label,
.ui.teal.label {
  background-color: #00B5AD !important;
  color: #FFFFFF !important;
}
.ui.labels .teal.label:before,
.ui.teal.labels .label:before,
.ui.teal.label:before {
  background-color: #00B5AD !important;
}
/* Hover */
a.ui.teal.labels .label:hover,
.ui.teal.labels a.label:hover,
a.ui.teal.label:hover {
  background-color: #009A93 !important;
  color: #FFFFFF !important;
}
.ui.labels a.teal.label:hover:before,
.ui.teal.labels a.label:hover:before,
a.ui.teal.tag.label:hover:before {
  background-color: #009A93 !important;
}

/*-------------------
       Circular
--------------------*/

.ui.circular.label {
    margin-right: 0.5em;
    margin-top: -1em;
    
    width: 2em;
    height: 2em;

    padding: 0.5em;

    line-height: 1em;
    text-align: center;
}

/*-------------------
       Pointing
--------------------*/

.ui.pointing.label {
  position: relative;
}
.ui.attached.pointing.label {
  position: absolute;
}

.ui.pointing.label:before {
  position: absolute;
  content: "";

  width: 0.6em;
  height: 0.6em;

  background-image: none;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 2;

  -webkit-transition:
    background 0.1s linear
  ;
  -moz-transition:
    background 0.1s linear
  ;
  -o-transition:
    background 0.1s linear
  ;
  -ms-transition:
    background 0.1s linear
  ;
  transition:
    background 0.1s linear
  ;
}
/*--- Above ---*/
.ui.pointing.label:before {
  background-color: #E8E8E8;
}
.ui.pointing.label,
.ui.pointing.above.label {
  margin-top: 1em;
}
.ui.pointing.label:before,
.ui.pointing.above.label:before {
  margin-left: -0.3em;
  top: -0.3em;
  left: 50%;
}
/*--- Below ---*/
.ui.pointing.below.label {
  margin-top: 0em;
  margin-bottom: 1em;
}
.ui.pointing.below.label:before {
  margin-left: -0.3em;
  top: auto;
  right: auto;
  bottom: -0.3em;
  left: 50%;
}
/*--- Left ---*/
.ui.pointing.left.label {
  margin-top: 0em;
  margin-left: 1em;
}
.ui.pointing.left.label:before {
  margin-top: -0.3em;
  bottom: auto;
  right: auto;
  top: 50%;
  left: 0em;
}
/*--- Right ---*/
.ui.pointing.right.label {
  margin-top: 0em;
  margin-right: 1em;
}
.ui.pointing.right.label:before {
  margin-top: -0.3em;
  right: -0.3em;
  top: 50%;
  bottom: auto;
  left: auto;
}

/*------------------
   Floating Label
-------------------*/

.ui.floating.label {
  position: absolute;
  z-index: 100;
  top: -1em;
  left: 100%;
  margin: 0em 0em 0em -1.5em !important;
}

/*-------------------
        Sizes
--------------------*/

.ui.label {
  font-size: 0.8rem;
}
.ui.small.labels .label,
.ui.small.label {
  font-size: 0.7rem;
}
.ui.large.labels .label,
.ui.large.label {
  font-size: 1rem;
}
/*
 * # Semantic Loader
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */
/*******************************
            Loader
*******************************/
/* Standard Size */
.ui.loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0px 0px -16px;
  z-index: 1000;
}
.ui.dimmer .loader {
  display: block;
}
/*-------------------
        Text
--------------------*/
/* Text Styles */
.ui.loader.text {
  width: auto !important;
  height: auto !important;
  text-align: center;
  font-style: normal;
  margin-top: -28px;
  min-width: 32px;
  padding-top: 40px;
  font-size: 0.875em;
}
.ui.loader.text.mini {
  margin-top: -16px;
  min-width: 16px;
  padding-top: 20px;
  font-size: 0.875em;
}
.ui.loader.text.small {
  margin-top: -23px;
  min-width: 24px;
  padding-top: 32px;
  font-size: 0.875em;
}
.ui.loader.text.large {
  margin-top: -46px;
  min-width: 64px;
  padding-top: 80px;
  font-size: 1em;
}
/*******************************
            States
*******************************/
.ui.loader.active,
.ui.loader.visible {
  display: block;
}
.ui.loader.disabled,
.ui.loader.hidden {
  display: none;
}
/*******************************
            Variations
*******************************/
/*-------------------
       Inverted
--------------------*/
.ui.dimmer .ui.text.loader,
.ui.inverted.text.loader {
  color: rgba(255, 255, 255, 0.8);
}
.ui.inverted.dimmer .ui.text.loader {
  color: rgba(0, 0, 0, 0.8);
}
/* Tiny Size */
.ui.dimmer .mini.ui.loader,
.ui.inverted .mini.ui.loader {
  background-image: url(../components/semantic/images/loader-mini-inverted.gif?1419868612);
}
/* Small Size */
.ui.dimmer .small.ui.loader,
.ui.inverted .small.ui.loader {
  background-image: url(../components/semantic/images/loader-small-inverted.gif?1419868612);
}
/* Standard Size */
.ui.dimmer .ui.loader,
.ui.inverted.loader {
  background-image: url(../components/semantic/images/loader-medium-inverted.gif?1419868612);
}
/* Large Size */
.ui.dimmer .large.ui.loader,
.ui.inverted .large.ui.loader {
  background-image: url(../components/semantic/images/loader-large-inverted.gif?1419868612);
}
/*-------------------
        Sizes
--------------------*/
/* Tiny Size */
.ui.inverted.dimmer .ui.loader.mini,
.ui.loader.mini {
  width: 16px;
  height: 16px;
  background-image: url(../components/semantic/images/loader-mini.gif?1419868612);
  margin: -8px 0px 0px -8px;
}
/* Small Size */
.ui.inverted.dimmer .ui.loader.small,
.ui.loader.small {
  width: 24px;
  height: 24px;
  background-image: url(../components/semantic/images/loader-small.gif?1419868612);
  margin: -12px 0px 0px -12px;
}
.ui.inverted.dimmer .ui.loader,
.ui.loader {
  width: 32px;
  height: 32px;
  background: url(../components/semantic/images/loader-medium.gif?1419868612) no-repeat;
  background-position: 48% 0px;
}
/* Large Size */
.ui.inverted.dimmer .ui.loader.large,
.ui.loader.large {
  width: 64px;
  height: 64px;
  background-image: url(../components/semantic/images/loader-large.gif?1419868612);
  margin: -32px 0px 0px -32px;
}
/*-------------------
       Inline
--------------------*/
.ui.inline.loader {
  position: static;
  vertical-align: middle;
  margin: 0em;
}
.ui.inline.loader.active,
.ui.inline.loader.visible {
  display: inline-block;
}

/*
 * # Semantic Progress Bar
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: Nay 14, 2013
 */
/*******************************
         Progress Bar
*******************************/
.ui.progress {
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 35px;
  background-color: #FAFAFA;
  padding: 5px;
  -webkit-border-radius: 0.3125em;
  -moz-border-radius: 0.3125em;
  border-radius: 0.3125em;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.ui.progress .bar {
  display: inline-block;
  height: 100%;
  background-color: #CCCCCC;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: width 1s ease-in-out, background-color 1s ease-out;
  -moz-transition: width 1s ease-in-out, background-color 1s ease-out;
  -ms-transition: width 1s ease-in-out, background-color 1s ease-out;
  -o-transition: width 1s ease-in-out, background-color 1s ease-out;
  transition: width 1s ease-in-out, background-color 1s ease-out;
}
/*******************************
            States
*******************************/
/*--------------
  Successful
---------------*/
.ui.successful.progress .bar {
  background-color: #73E064 !important;
}
.ui.successful.progress .bar,
.ui.successful.progress .bar::after {
  -webkit-animation: none !important;
  -moz-animation: none !important;
  animation: none !important;
}
/*--------------
     Failed
---------------*/
.ui.failed.progress .bar {
  background-color: #DF9BA4 !important;
}
.ui.failed.progress .bar,
.ui.failed.progress .bar::after {
  -webkit-animation: none !important;
  -moz-animation: none !important;
  animation: none !important;
}
/*--------------
     Active
---------------*/
.ui.active.progress .bar {
  position: relative;
}
.ui.active.progress .bar::after {
  content: '';
  opacity: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #FFFFFF;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-animation: progress-active 2s ease-out infinite;
  -moz-animation: progress-active 2s ease-out infinite;
  animation: progress-active 2s ease-out infinite;
}
@-webkit-keyframes progress-active {
  0% {
    opacity: 0;
    width: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    width: 95%;
  }
}
@-moz-keyframes progress-active {
  0% {
    opacity: 0;
    width: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    width: 100%;
  }
}
@keyframes progress-active {
  0% {
    opacity: 0;
    width: 0;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    width: 100%;
  }
}
/*--------------
    Disabled
---------------*/
.ui.disabled.progress {
  opacity: 0.35;
}
.ui.disabled.progress .bar,
.ui.disabled.progress .bar::after {
  -webkit-animation: none !important;
  -moz-animation: none !important;
  animation: none !important;
}
/*******************************
           Variations
*******************************/
/*--------------
    Attached
---------------*/
/* bottom attached */
.ui.progress.attached {
  position: relative;
  border: none;
}
.ui.progress.attached,
.ui.progress.attached .bar {
  display: block;
  height: 3px;
  padding: 0px;
  overflow: hidden;
  -webkit-border-radius: 0em 0em 0.3125em 0.3125em;
  -moz-border-radius: 0em 0em 0.3125em 0.3125em;
  border-radius: 0em 0em 0.3125em 0.3125em;
}
.ui.progress.attached .bar {
  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
}
/* top attached */
.ui.progress.top.attached,
.ui.progress.top.attached .bar {
  top: -2px;
  -webkit-border-radius: 0.3125em 0.3125em 0em 0em;
  -moz-border-radius: 0.3125em 0.3125em 0em 0em;
  border-radius: 0.3125em 0.3125em 0em 0em;
}
.ui.progress.top.attached .bar {
  -webkit-border-radius: 0em;
  -moz-border-radius: 0em;
  border-radius: 0em;
}
/*--------------
     Colors
---------------*/
.ui.blue.progress .bar {
  background-color: #6ECFF5;
}
.ui.black.progress .bar {
  background-color: #5C6166;
}
.ui.green.progress .bar {
  background-color: #A1CF64;
}
.ui.red.progress .bar {
  background-color: #EF4D6D;
}
.ui.purple.progress .bar {
  background-color: #564F8A;
}
.ui.teal.progress .bar {
  background-color: #00B5AD;
}
/*--------------
    Striped
---------------*/
.ui.progress.striped .bar {
  -webkit-background-size: 30px 30px;
  -moz-background-size: 30px 30px;
  background-size: 30px 30px;
  background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.ui.progress.active.striped .bar:after {
  -webkit-animation: none;
  -moz-animation: none;
  -ms-animation: none;
  -o-animation: none;
  animation: none;
}
.ui.progress.active.striped .bar {
  -webkit-animation: progress-striped 3s linear infinite;
  -moz-animation: progress-striped 3s linear infinite;
  animation: progress-striped 3s linear infinite;
}
@-webkit-keyframes progress-striped {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 60px 0;
  }
}
@-moz-keyframes progress-striped {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 60px 0;
  }
}
@keyframes progress-striped {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 60px 0;
  }
}
/*--------------
     Sizes
---------------*/
.ui.small.progress .bar {
  height: 14px;
}

/*
 * # Semantic Segment - Flat
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: May 17 2013
 */


/*******************************
            Segment
*******************************/

.ui.segment {
  position: relative;
  background-color: #FFFFFF;

  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);

  margin: 1em 0em;
  padding: 1em;

  -webkit-border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

}

.ui.segment:first-child {
  margin-top: 0em;
}

.ui.segment:last-child {
  margin-bottom: 0em;
}

.ui.segment:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.ui.vertical.segment {
  margin: 0em;
  padding-left: 0em;
  padding-right: 0em;

  background-color: transparent;

  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  -webkit-box-shadow:
    0px 1px 0px rgba(0, 0, 0, 0.1)
  ;
  -moz-box-shadow:
    0px 1px 0px rgba(0, 0, 0, 0.1)
  ;
  box-shadow:
    0px 1px 0px rgba(0, 0, 0, 0.1)
  ;
}
.ui.vertical.segment:first-child {
  padding-top: 0em;
}

.ui.horizontal.segment {
  margin: 0em;
  padding-top: 0em;
  padding-bottom: 0em;

  background-color: transparent;

  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;

  -webkit-box-shadow:
    1px 0px 0px rgba(0, 0, 0, 0.1)
  ;
  -moz-box-shadow:
    1px 0px 0px rgba(0, 0, 0, 0.1)
  ;
  box-shadow:
    1px 0px 0px rgba(0, 0, 0, 0.1)
  ;
}
.ui.horizontal.segment:first-child {
  padding-left: 0em;
}

/*-------------------
    Loose Coupling
--------------------*/

.ui.pointing.menu + .ui.attached.segment {
  top: 1px;
}

/* No padding on edge content */
.ui.segment > :first-child {
  margin-top: 0em;
}
.ui.segment > :last-child {
  margin-bottom: 0em;
}
.ui.segment > :only-child {
  margin: 0em;
}

/* Padding on next content after a label */
.ui.segment > .attached.label:first-child + * {
  margin-top: 2em;
}
.ui.segment > .bottom.attached.label:first-child ~ :last-child {
  margin-top: 0em;
  margin-bottom: 2em;
}

/*******************************
            States
*******************************/

.ui.disabled.segment {
  opacity: 0.8;
  color: #DDDDDD;
}


/*******************************
           Variations
*******************************/


/*-------------------
       Basic
--------------------*/

.ui.basic.segment {
  position: relative;
  background-color: transparent;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;

  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.ui.basic.segment:first-child {
  padding-top: 0em;
}
.ui.basic.segment:last-child {
  padding-bottom: 0em;
}


/*-------------------
       Fittted
--------------------*/

.ui.fitted.segment {
  padding: 0em;
}


/*-------------------
       Colors
--------------------*/

.ui.blue.segment {
  border-top: 0.2em solid #6ECFF5;
}
.ui.green.segment {
  border-top: 0.2em solid #A1CF64;
}
.ui.red.segment {
  border-top: 0.2em solid #EF4D6D;
}
.ui.purple.segment {
  border-top: 0.2em solid #564F8A;
}
.ui.teal.segment {
  border-top: 0.2em solid #00B5AD;
}

/*-------------------
   Inverted Colors
--------------------*/

.ui.inverted.black.segment {
  background-color: #5C6166 !important;
  color: #FFFFFF !important;
}
.ui.inverted.blue.segment {
  background-color: #6ECFF5 !important;
  color: #FFFFFF !important;
}
.ui.inverted.green.segment {
  background-color: #A1CF64 !important;
  color: #FFFFFF !important;
}
.ui.inverted.red.segment {
  background-color: #EF4D6D !important;
  color: #FFFFFF !important;
}
.ui.inverted.purple.segment {
  background-color: #564F8A !important;
  color: #FFFFFF !important;
}
.ui.inverted.teal.segment {
  background-color: #00B5AD !important;
  color: #FFFFFF !important;
}


/*-------------------
       Aligned
--------------------*/

.ui.left.aligned.segment {
  text-align: left;
}
.ui.right.aligned.segment {
  text-align: right;
}
.ui.center.aligned.segment {
  text-align: center;
}

/*-------------------
       Floated
--------------------*/

.ui.floated.segment,
.ui.left.floated.segment {
  float: left;
}
.ui.right.floated.segment {
  float: right;
}


/*-------------------
        Piled
--------------------*/

.ui.piled.segment {
  margin: 2em 0em;
  -webkit-box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.15)
  ;
  -moz-box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.15)
  ;
  -ms-box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.15)
  ;
  -o-box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.15)
  ;
  box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.15)
  ;
}
.ui.piled.segment:first-child {
  margin-top: 0em;
}
.ui.piled.segment:last-child {
  margin-bottom: 0em;
}
.ui.piled.segment:after,
.ui.piled.segment:before {
  background-color: #FFFFFF;
  visibility: visible;
  content: "";
  display: block;
  height: 100%;
  left: -1px;
  position: absolute;
  width: 100%;

  -webkit-box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.1)
  ;
  -moz-box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.1)
  ;
  box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.1)
  ;
}
.ui.piled.segment:after {
  -webkit-transform: rotate(1.2deg);
  -moz-transform: rotate(1.2deg);
  -ms-transform: rotate(1.2deg);
  -o-transform: rotate(1.2deg);
  transform: rotate(1.2deg);
  top: 0;
  z-index: -1;
}
.ui.piled.segment:before {
  -webkit-transform: rotate(-1.2deg);
  -moz-transform: rotate(-1.2deg);
  -ms-transform: rotate(-1.2deg);
  -o-transform: rotate(-1.2deg);
  transform: rotate(-1.2deg);
  top: 0;
  z-index: -2;
}

/*-------------------
       Stacked
--------------------*/

.ui.stacked.segment {
  padding-bottom: 1.7em;
}
.ui.stacked.segment:after,
.ui.stacked.segment:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0%;

  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.02);

  width: 100%;
  height: 5px;
  visibility: visible;
}
.ui.stacked.segment:before {
  bottom: 0px;
}

/* Inverted */
.ui.stacked.inverted.segment:after,
.ui.stacked.inverted.segment:before {
  background-color: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

/*-------------------
       Raised
--------------------*/

.ui.raised.segment {
  -webkit-box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1);
}

/*-------------------
      Inverted
--------------------*/

.ui.inverted.segment {
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.ui.inverted.segment,
.ui.primary.inverted.segment {
  background-color: #555555;
  color: #FFFFFF;
}

/*-------------------
     Ordinality
--------------------*/

.ui.primary.segment {
  background-color: #FFFFFF;
  color: #555555;
}

.ui.secondary.segment {
  background-color: #F5F5F5;
  color: #777777;
}

.ui.tertiary.segment {
  background-color: #EBEBEB;
  color: #B0B0B0;
}

.ui.secondary.inverted.segment {
  background-color: #555555;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0.3)));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  background-image: linear-gradient(rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  color: #FAFAFA;
}
.ui.tertiary.inverted.segment {
  background-color: #555555;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0.6)));
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
  background-image: linear-gradient(rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.6) 100%);
  color: #EEEEEE;
}


/*-------------------
      Attached
--------------------*/

.ui.segment.attached {
  top: -1px;
  bottom: -1px;

  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;

  margin: 0em;

  -moz-box-shadow: 0px 0px 0px 1px #DDDDDD;
  -webkit-box-shadow: 0px 0px 0px 1px #DDDDDD;
  box-shadow: 0px 0px 0px 1px #DDDDDD;
}
.ui.top.attached.segment {
  top: 0px;
  bottom: -1px;

  margin-top: 1em;
  margin-bottom: 0em;

  -moz-border-radius: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
  border-radius: 5px 5px 0px 0px;
}
.ui.segment.bottom.attached {
  top: -1px;
  bottom: 0px;

  margin-top: 0em;
  margin-bottom: 1em;

  -moz-border-radius: 0px 0px 5px 5px;
  -webkit-border-radius: 0px 0px 5px 5px;
  border-radius: 0px 0px 5px 5px;
}

/*
 * # Semantic Steps
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */
/*******************************
            Step
*******************************/
.ui.step,
.ui.steps .step {
  display: inline-block;
  position: relative;
  padding: 1em 2em 1em 3em;
  vertical-align: top;
  background-color: #FFFFFF;
  color: #888888;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
.ui.step:after,
.ui.steps .step:after {
  position: absolute;
  z-index: 2;
  content: '';
  top: 0em;
  right: -1.48em;
  border-bottom: 1.5em solid transparent;
  border-left: 1.5em solid #FFFFFF;
  border-top: 1.5em solid transparent;
  width: 0em;
  height: 0em;
}
.ui.step,
.ui.steps .step,
.ui.steps .step:after {
  -webkit-transition: opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
  -moz-transition: opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
  -o-transition: opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
  -ms-transition: opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
  transition: opacity 0.1s ease, color 0.1s ease, box-shadow 0.1s ease;
}
/*******************************
            Group
*******************************/
.ui.steps {
  cursor: pointer;
  display: inline-block;
  font-size: 0em;
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  line-height: 1;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 0.3125rem;
  -webkit-border-radius: 0.3125rem;
  border-radius: 0.3125rem;
}
.ui.steps .step:first-child {
  padding-left: 1.35em;
  -webkit-border-radius: 0.3125em 0em 0em 0.3125em;
  -moz-border-radius: 0.3125em 0em 0em 0.3125em;
  border-radius: 0.3125em 0em 0em 0.3125em;
}
.ui.steps .step:last-child {
  -webkit-border-radius: 0em 0.3125em 0.3125em 0em;
  -moz-border-radius: 0em 0.3125em 0.3125em 0em;
  border-radius: 0em 0.3125em 0.3125em 0em;
}
.ui.steps .step:only-child {
  -webkit-border-radius: 0.3125em;
  -moz-border-radius: 0.3125em;
  border-radius: 0.3125em;
}
.ui.steps .step:last-child {
  margin-right: 0em;
}
.ui.steps .step:last-child:after {
  display: none;
}
/*******************************
             States
*******************************/
/* Hover */
.ui.step:hover,
.ui.step.hover {
  background-color: #F7F7F7;
  color: rgba(0, 0, 0, 0.8);
}
.ui.steps .step.hover:after,
.ui.steps .step:hover:after,
.ui.step:hover,
.ui.step.hover::after {
  border-left-color: #F7F7F7;
}
/* Hover */
.ui.steps .step.down,
.ui.steps .step:active,
.ui.step.down,
.ui.step:active {
  background-color: #F0F0F0;
}
.ui.steps .step.down:after,
.ui.steps .step:active:after,
.ui.steps.down::after,
.ui.steps:active::after {
  border-left-color: #F0F0F0;
}
/* Active */
.ui.steps .step.active,
.ui.active.step {
  cursor: auto;
  background-color: #555555;
  color: #FFFFFF;
  font-weight: bold;
}
.ui.steps .step.active:after,
.ui.active.steps:after {
  border-left-color: #555555;
}
/* Disabled */
.ui.steps .disabled.step,
.ui.disabled.step {
  cursor: auto;
  background-color: #FFFFFF;
  color: #CBCBCB;
}
.ui.disabled.step:after {
  border: none;
  background-color: #FFFFFF;
  top: 0.42em;
  right: -1em;
  width: 2.15em;
  height: 2.15em;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-box-shadow: -1px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: -1px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
  box-shadow: -1px -1px 0px 0px rgba(0, 0, 0, 0.1) inset;
}
/*******************************
           Variations
*******************************/
/* Attached */
.attached.ui.steps {
  margin: 0em;
  -webkit-border-radius: 0.3125em 0.3125em 0em 0em;
  -moz-border-radius: 0.3125em 0.3125em 0em 0em;
  border-radius: 0.3125em 0.3125em 0em 0em;
}
.attached.ui.steps .step:first-child {
  -webkit-border-radius: 0.3125em 0em 0em 0em;
  -moz-border-radius: 0.3125em 0em 0em 0em;
  border-radius: 0.3125em 0em 0em 0em;
}
.attached.ui.steps .step:last-child {
  -webkit-border-radius: 0em 0.3125em 0em 0em;
  -moz-border-radius: 0em 0.3125em 0em 0em;
  border-radius: 0em 0.3125em 0em 0em;
}
/* Bottom Side */
.bottom.attached.ui.steps {
  margin-top: -1px;
  -webkit-border-radius: 0em 0em 0.3125em 0.3125em;
  -moz-border-radius: 0em 0em 0.3125em 0.3125em;
  border-radius: 0em 0em 0.3125em 0.3125em;
}
.bottom.attached.ui.steps .step:first-child {
  -webkit-border-radius: 0em 0em 0em 0.3125em;
  -moz-border-radius: 0em 0em 0em 0.3125em;
  border-radius: 0em 0em 0em 0.3125em;
}
.bottom.attached.ui.steps .step:last-child {
  -webkit-border-radius: 0em 0em 0.3125em 0em;
  -moz-border-radius: 0em 0em 0.3125em 0em;
  border-radius: 0em 0em 0.3125em 0em;
}
/* Fluid  */
.ui.one.steps > .step {
  width: 100%;
}
.ui.two.steps > .step {
  width: 50%;
}
.ui.three.steps > .step {
  width: 33.333%;
}
.ui.four.steps > .step {
  width: 25%;
}
.ui.five.steps > .step {
  width: 20%;
}
.ui.six.steps > .step {
  width: 16.666%;
}
.ui.seven.steps > .step {
  width: 14.285%;
}
.ui.eight.steps > .step {
  width: 12.500%;
}
/*******************************
             Sizes
*******************************/
.ui.small.step,
.ui.small.steps .step {
  font-size: 0.8rem;
}
.ui.step,
.ui.steps .step {
  font-size: 1rem;
}
.ui.large.step,
.ui.large.steps .step {
  font-size: 1.25rem;
}

/*
 * # Semantic Accordion
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
            Button
*******************************/

.ui.accordion {
  width: 600px;
  max-width: 100%;
  overflow: hidden;

  font-size: 1rem;
  border-radius: 0.3125em;

  background-color: #FFFFFF;

  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}

.ui.accordion .title {
  cursor: pointer;

  margin: 0em;
  padding: 0.75em 1em;

  color: rgba(0, 0, 0, 0.6);

  border-top: 1px solid rgba(0, 0, 0, 0.05);

  -webkit-transition: 
    background-color 0.2s ease-out
  ;
  -moz-transition: 
    background-color 0.2s ease-out
  ;
  -o-transition: 
    background-color 0.2s ease-out
  ;
  -ms-transition: 
    background-color 0.2s ease-out
  ;
  transition: 
    background-color 0.2s ease-out
  ;
}
.ui.accordion .title:first-child {
  border-top: none;
}


/* Content */
.ui.accordion .content {
  display: none;
  margin: 0em;
  padding: 1.3em 1em;
}


/*--------------
 Loose Coupling
---------------*/

.ui.basic.accordion.menu {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
}
.ui.basic.accordion.menu .title,
.ui.basic.accordion.menu .content {
  padding: 0em;
}


/*******************************
            States
*******************************/


/*--------------
      Hover
---------------*/

.ui.accordion .title:hover,
.ui.accordion .title.active {
  color: rgba(0, 0, 0, 0.8);
}


/*--------------
      Active
---------------*/
.ui.accordion .title.active {
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.8);
}
.ui.accordion .content.active {
  display: block;
}


/*******************************
            Variations
*******************************/

.ui.basic.accordion {
  background-color: transparent;
  
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.ui.basic.accordion .title {
  background-color: transparent;
  border-top: none;
}

.ui.basic.accordion .title,
.ui.basic.accordion .content {
  padding-left: 0em;
  padding-right: 0em;
}
/*
 * # Semantic Carousel
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: June 03, 2013
 */
/*******************************
            Carousel
*******************************/
.ui.carousel {
  position: relative;
  overflow: hidden;
}
.ui.carousel .arrow {
  position: absolute;
  font-size: 1.5em;
  top: 50%;
  left: 0%;
  margin-top: -0.5em;
  z-index: 10;
}
.ui.carousel .right.arrow {
  left: auto;
  right: 0%;
}
.ui.carousel .slides {
  position: relative;
  width: 200%;
  width: 9999px;
  overflow: hidden;
  font-size: 0em;
}
.ui.carousel .slides .slide {
  display: inline-block;
  height: 100%;
  font-size: 1rem;
}
.ui.carousel .slides .slide > img {
  display: block;
  width: 100%;
}
/*--------------------
     Loading State
---------------------*/
/* On Form */
.ui.carousel.loading {
  position: relative;
}
.ui.carousel.loading:after {
  position: absolute;
  top: 0%;
  left: 0%;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8) url(../components/semantic/images/loader-large.gif?1419868612) no-repeat 50% 50%;
  visibility: visible;
}

/*******************************
           Chat Room
*******************************/
.ui.chat {
  background-color: #FFFFFF;
  width: 330px;
  height: 370px;
  padding: 0px;
  font-size: 14px;
}
.ui.chat .room {
  position: relative;
  overflow: hidden;
  height: 286px;
  border: 1px solid #DCDDDE;
  border-top: none;
  border-bottom: none;
}
/* Chat Room Actions */
.ui.chat .actions {
  overflow: hidden;
  background-color: #F0F0F0;
  padding: 2px 4px;
  border: 1px solid #DCDDDE;
  -moz-border-radius: 5px 5px 0px 0px;
  -webkit-border-radius: 5px 5px 0px 0px;
  border-radius: 5px 5px 0px 0px;
}
.ui.chat .actions .button {
  float: right;
  margin-left: 3px;
}
/* Online User Count */
.ui.chat .actions .message {
  float: left;
  margin-left: 6px;
  font-size: 14px;
  color: #AAAAAA;
  line-height: 32px;
}
/* Chat Room Text Log */
.ui.chat .log {
  float: left;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
}
.ui.chat .log .message {
  padding: 3px 0px;
}
.ui.chat .log .message:first-child {
  border-top: none;
}
/* status event */
.ui.chat .status {
  padding: 5px 0px;
  color: #AAAAAA;
  font-size: 12px;
  font-style: italic;
  line-height: 1.33;
  border-top: 1px dotted #DADADA;
}
.ui.chat .log .status:first-child {
  border-top: none;
}
.ui.chat .log .flag {
  float: left;
}
.ui.chat .log p {
  margin-left: 0px;
}
.ui.chat .log .author {
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  -ms-transition: color 0.3s ease-out;
  transition: color 0.3s ease-out;
}
.ui.chat .log a.author:hover {
  opacity: 0.8;
}
.ui.chat .log .message.admin p {
  margin: -1px 0px 1px 23px;
}
.ui.chat .log .divider:after,
.ui.chat .log .divider:before {
  width: 15%;
}
.ui.chat .log .divider {
  font-size: 11px;
}
/* Chat Room User List */
.ui.chat .room .user-list {
  position: relative;
  overflow: auto;
  overflow-x: hidden;
  overflow-y: auto;
  float: left;
  background-color: #FFFFFF;
  border-left: 1px solid #DDDDDD;
}
.ui.chat .room .user-list .user {
  display: table;
  padding: 3px 7px;
}
.ui.chat .room .user-list .user:hover {
  background-color: #F8F8F8;
}
.ui.chat .room .user-list .image {
  display: table-cell;
  vertical-align: middle;
  width: 25px;
}
.ui.chat .room .user-list .image img {
  width: 25px;
  height: 25px;
  border-radius: 500px;
  vertical-align: middle;
}
.ui.chat .room .user-list p {
  display: table-cell;
  vertical-align: middle;
  padding-left: 7px;
  padding-right: 14px;
  line-height: 1.2;
}
.ui.chat .room .user-list a:hover {
  opacity: 0.8;
}
/* Chat Room Talk Input */
.ui.chat .talk {
  border: 1px solid #DCDDDE;
  padding: 5px 0px 0px;
  background-color: #F0F0F0;

  -webkit-border-radius: 0px 0px 5px 5px;
  -moz-border-radius: 0px 0px 5px 5px;
  border-radius: 0px 0px 5px 5px;
}
.ui.chat .talk .avatar,
.ui.chat .talk input,
.ui.chat .talk .button {
  float: left;
}
.ui.chat .talk .avatar {
  width: 30px;
  height: 30px;
  margin: 1px 5px 0px 5px;
}
.ui.chat .talk .avatar img {
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 4px;
}
.ui.chat .talk input {
  border-radius: 4px 0px 0px 4px;
  border: 1px solid #DCDDDE;
  margin: 0px;
  width: 196px;
  height: 14px;
  padding: 8px 5px;
  color: #555555;
}
.ui.chat .talk input.focus {
  border: 1px solid #BBBBBB;
}
.ui.chat .send {
  margin-left: -2px;
  width: 78px;
  height: 32px;
  line-height: 23px;
  font-size: 12px;
  padding: 4px 12px;
  -moz-box-shadow: -2px 0 2px -2px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: -2px 0 2px -2px rgba(0, 0, 0, 0.3);
  box-shadow: -2px 0 2px -2px rgba(0, 0, 0, 0.3);
  border-radius: 0px 5px 5px 0px;
}
.ui.chat .talk .log-in.button {
  display: block;
  float: none;
  margin-top: -6px;
  padding-top: 15px;
  height: 47px;
  border-radius: 0px 0px 4px 4px;
}
/* Quirky Flags */
.ui.chat .log .team.flag {
  width: 18px;
}
/* Standard Size */
.ui.chat {
  width: 330px;
  height: 370px;
}
.ui.chat .room .container {
  width: 3000px;
}
.ui.chat .log {
  width: 314px;
  height: 278px;
  padding: 4px 7px;
}
.ui.chat .room .user-list {
  width: 124px;
  height: 278px;
  padding: 4px 0px;
}
.ui.chat .room .user-list .user {
  width: 110px;
}
.ui.chat .talk {
  height: 40px;
}
/* Full Width (Based off 960) */
/*
.ui.chat.expand {
	width: 665px;
	height: 368px;
}
.ui.chat.expand .room {
	width: 663px;
	height: 283px;
}
.ui.chat.expand .room .user-list,
.ui.chat.expand .room .log {
	height: 275px;
}
.ui.chat.expand .room .log {
	width: 650px;
}
.ui.chat.expand .talk input {
	width: 530px;
}
.ui.chat.expand .send {
	width: 50px;
}

.ui.chat.massive {
	width: 960px;
	height: 415px;
}
.ui.chat.massive .room {
	width: 958px;
	height: 330px;
}
.ui.chat.massive .room .user-list,
.ui.chat.massive .room .log {
	height: 321px;
}
.ui.chat.massive .room .log {
	width: 944px;
}
.ui.chat.massive .talk input {
	width: 830px;
}
.ui.chat.massive .send {
	width: 50px;
}

*/
/*******************************
           UI Checkbox
*******************************/

/*--------------
    Standard
---------------*/


/*--- Content ---*/
.ui.checkbox {
  position: relative;
  display: inline-block;
  outline: none;

  margin-right: 0.5em;
  vertical-align: middle;
}
.ui.checkbox input {
  display: block;
  
  width: 100%;
  height: 100%;

  margin: 0em;
  padding: 0em;
  
  visibility: hidden;
  outline: none;
}


/*--- Box ---*/
.ui.checkbox .box,
.ui.checkbox label {
  outline: none;
  cursor: pointer;
  position: absolute;

  line-height: 1;
  width: 1em;
  height: 1em;
  bottom: 0em;
  left: 0em;
  border-radius: 4px;

  -webkit-box-shadow: 0em 0em 0em 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0em 0em 0em 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0em 0em 0em 1px rgba(0, 0, 0, 0.2);
  
  background: #FFFFFF;

  -webkit-transition: 
    background-color 0.1s ease-out,
    box-shadow 0.1s ease-out
  ;
  -moz-transition: 
    background-color 0.1s ease-out,
    box-shadow 0.1s ease-out
  ;
  -o-transition: 
    background-color 0.1s ease-out,
    box-shadow 0.1s ease-out
  ;
  -ms-transition: 
    background-color 0.1s ease-out,
    box-shadow 0.1s ease-out
  ;
  transition: 
    background-color 0.1s ease-out,
    box-shadow 0.1s ease-out
  ;
}

/*--- Checkbox ---*/
.ui.checkbox .box:after,
.ui.checkbox label:after {
  position: absolute;
  content: '';

  filter: alpha(opacity=0);
  opacity: 0;

  background: transparent;
  border: 0.2em solid #333333;

  border-top: none;
  border-right: none;

  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.ui.checkbox .box:after,
.ui.checkbox label:after {
  width: 0.5em;
  height: 0.2em;
  top: 0.25em;
  left: 0.2em;  
}

/*--- Label ---*/
.ui.checkbox + label {
  cursor: pointer;
  opacity: 0.85;
}
.ui.checkbox + label:hover {
  opacity: 1;
}

/*******************************
           States
*******************************/


/*--- Hover ---*/
.ui.checkbox .box:hover,
.ui.checkbox label:hover {
  background-color: #FAFAFA;
  -webkit-box-shadow: 0em 0em 0em 1px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0em 0em 0em 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0em 0em 0em 1px rgba(0, 0, 0, 0.3);
}


/*--- Down ---*/
.ui.checkbox .box:active,
.ui.checkbox label:active {
  background-color: #F5F5F5;
}


/*--- Active ---*/
.ui.checkbox input:checked + .box:after,
.ui.checkbox input:checked + label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}


/*--- Disabled ---*/
.ui.disabled.checkbox + .box:after,
.ui.checkbox input[disabled] + .box:after,
.ui.disabled.checkbox label,
.ui.checkbox input[disabled] + label {
  opacity: 0.4;
}


/*******************************
          Variations
*******************************/


/*--------------
     Radio
---------------*/

.ui.radio.checkbox {
  width: 14px;
  height: 16px;
}
.ui.radio.checkbox .box,
.ui.radio.checkbox label {
  width: 14px;
  height: 14px;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
}
.ui.radio.checkbox .box:after,
.ui.radio.checkbox label:after {
  top: 3px;
  left: 3px;
 
  border: none;
  width: 8px;
  height: 8px;
 
  background-color: #555555;
 
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
}

/*--------------
     Sizes
---------------*/

.ui.checkbox {
  width: 1em;
  height: 1em;
}
.ui.checkbox,
.ui.checkbox .box,
.ui.checkbox label {
  font-size: 1em;
}

.ui.large.checkbox {
  width: 1.25em;
  height: 1.25em;
}
.ui.large.checkbox,
.ui.large.checkbox .box,
.ui.large.checkbox label {
  font-size: 1.25em;
}
.ui.huge.checkbox {
  width: 1.5em;
  height: 1.5em;
}
.ui.huge.checkbox,
.ui.huge.checkbox .box,
.ui.huge.checkbox label {
  font-size: 1.5em;
}

/*--------------
     Colors
---------------*/

.ui.round.blue.checkbox label:after {
  background: -webkit-linear-gradient(top, #016286 0%, #00506E 100%);
  background: -moz-linear-gradient(top, #016286 0%, #00506E 100%);
  background: -o-linear-gradient(top, #016286 0%, #00506E 100%);
  background: -ms-linear-gradient(top, #016286 0%, #00506E 100%);
  background: linear-gradient(top, #016286 0%, #00506E 100%);
}


/*--------------
     Rounded
---------------*/

/* Alternate Round Style */
.ui.round.checkbox {
  width: 20px;
  height: 20px;
  margin: 0px auto;


  background: #FCFFF4;
  background: -webkit-linear-gradient(top, #FCFFF4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -moz-linear-gradient(top, #FCFFF4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -o-linear-gradient(top, #FCFFF4 0%, #dfe5d7 40%, #b3bead 100%);
  background: -ms-linear-gradient(top, #FCFFF4 0%, #dfe5d7 40%, #b3bead 100%);
  background: linear-gradient(top, #FCFFF4 0%, #dfe5d7 40%, #b3bead 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FCFFF4', endColorstr='#b3bead',GradientType=0 );

  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;

  -webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
  -moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
  position: relative;
}

.ui.round.checkbox .box,
.ui.round.checkbox label {
  cursor: pointer;
  position: absolute;
  width: 14px;
  height: 14px;

  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
  left: 3px;
  top: 3px;

  -webkit-box-shadow: 
    0px 1px 1px rgba(0, 0, 0, 0.5) inset,
    0px 1px 0px rgba(255,255,255,1)
  ;
  -moz-box-shadow: 
    0px 1px 1px rgba(0, 0, 0, 0.5) inset,
    0px 1px 0px rgba(255,255,255,1)
  ;
  box-shadow: 
    0px 1px 1px rgba(0, 0, 0, 0.5) inset,
    0px 1px 0px rgba(255,255,255,1)
  ;

  background: -webkit-linear-gradient(top, #222222 0%, #4D4D4D 100%);
  background: -moz-linear-gradient(top, #222222 0%, #4D4D4D 100%);
  background: -o-linear-gradient(top, #222222 0%, #4D4D4D 100%);
  background: -ms-linear-gradient(top, #222222 0%, #4D4D4D 100%);
  background: linear-gradient(top, #222222 0%, #4D4D4D 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#222222', endColorstr='#4D4D4D',GradientType=0 );
}

.ui.round.checkbox .box:after,
.ui.round.checkbox label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #B6B6B6;

  background: -webkit-linear-gradient(top, #B6B6B6 0%, #929292 100%);
  background: -moz-linear-gradient(top, #B6B6B6 0%, #929292 100%);
  background: -o-linear-gradient(top, #B6B6B6 0%, #929292 100%);
  background: -ms-linear-gradient(top, #B6B6B6 0%, #929292 100%);
  background: linear-gradient(top, #B6B6B6 0%, #929292 100%);

  border: none;
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
  top: 2px;
  left: 2px;

  -webkit-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
  -moz-box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
  box-shadow: inset 0px 1px 1px white, 0px 1px 3px rgba(0,0,0,0.5);
}
.ui.round.checkbox .box:hover:after,
.ui.round.checkbox label:hover:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
  filter: alpha(opacity=30);
  opacity: 0.3;
}
.ui.round.checkbox input:checked + .box:after,
.ui.round.checkbox input:checked + label:after {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1;
}

/*
 * # Semantic Dimmer
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */
/*******************************
            Dimmer
*******************************/
.ui.dimmable {
  position: relative;
}
.ui.dimmer {
  position: absolute;
  top: 0em !important;
  left: 0em !important;
  text-align: center;
  vertical-align: middle;
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  line-height: 1;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition: background-color 0.5s linear;
  -moz-transition: background-color 0.5s linear;
  -o-transition: background-color 0.5s linear;
  -ms-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1000;
}
.ui.dimmable.dimmed > :not(.dimmer) {
  /*  
  -webkit-transition:
    filter 0.5s ease
  ;
  -moz-transition:
    filter 0.5s ease
  ;
  -o-transition:
    filter 0.5s ease
  ;
  -ms-transition:
    filter 0.5s ease
  ;
  transition:
    filter 0.5s ease
  ;
  */

}
/* Dimmer Content */.ui.dimmer .content {
  width: 100%;
  height: 100%;
  display: table;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}
.ui.dimmer .content > * {
  display: table-cell;
  vertical-align: middle;
}
/* Loose Coupling */
.ui.segment > .ui.dimmer {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.ui.horizontal.segment > .ui.dimmer,
.ui.vertical.segment > .ui.dimmer {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
/*******************************
            States
*******************************/
.ui.dimmable.dimmed > :not(.dimmer) {
  -webkit-filter: blur(5px) grayscale(0.7);
  -moz-filter: blur(5px) grayscale(0.7);
}
body.dimmable.dimmed {
  overflow: hidden;
}
.ui.dimmable.dimmed > .ui.dimmer,
.ui.dimmer.active {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.ui.disabled.dimmer {
  width: 0em !important;
  height: 0em !important;
}
/*******************************
           Variations
*******************************/
/*--------------
      Page
---------------*/
.ui.page.dimmer {
  position: fixed;
}
body.ui.dimmable.dimmed > :not(.dimmer) {
  -webkit-filter: blur(15px) grayscale(0.7);
  -moz-filter: blur(15px) grayscale(0.7);
}
/*--------------
    Aligned
---------------*/
.ui.dimmer .top.aligned.content > * {
  vertical-align: top;
}
.ui.dimmer .bottom.aligned.content > * {
  vertical-align: bottom;
}
/*--------------
    Inverted
---------------*/
.ui.inverted.dimmer {
  background-color: rgba(255, 255, 255, 0.85);
}
/*--------------
     Simple
---------------*/
/* Displays without javascript */
.ui.simple.dimmer {
  display: block;
  overflow: hidden;
  opacity: 1;
  z-index: -100;
  background-color: rgba(0, 0, 0, 0);
}
.ui.dimmable.dimmed > .ui.simple.dimmer {
  overflow: visible;
  opacity: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1;
}
.ui.simple.inverted.dimmer {
  background-color: rgba(255, 255, 255, 0);
}
.ui.dimmable.dimmed > .ui.simple.inverted.dimmer {
  background-color: rgba(255, 255, 255, 0.85);
}
/*******************************
           Animations
*******************************/
.ui.dimmer.show {
  width: 100%;
  height: 100%;
  -webkit-animation: dimmer-show 0.5s;
  -moz-animation: dimmer-show 0.5s;
  animation: dimmer-show 0.5s;
}
@-webkit-keyframes dimmer-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes dimmer-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes dimmer-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ui.dimmer.hide {
  -webkit-animation: dimmer-hide 0.5s;
  -moz-animation: dimmer-hide 0.5s;
  animation: dimmer-hide 0.5s;
}
@-webkit-keyframes dimmer-hide {
  0% {
    opacity: 1;
  }
  99% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  100% {
    opacity: 0;
    height: 0em;
    width: 0em;
  }
}
@-moz-keyframes dimmer-hide {
  0% {
    opacity: 1;
  }
  99% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  100% {
    opacity: 0;
    height: 0em;
    width: 0em;
  }
}
@keyframes dimmer-hide {
  0% {
    opacity: 1;
  }
  99% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  100% {
    opacity: 0;
    height: 0em;
    width: 0em;
  }
}

/*
 * # Semantic Dropdown
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
            Dropdown
*******************************/

.ui.dropdown {
  position: relative;
  display: inline-block;

  line-height: 1;

  -webkit-transition:
    border-radius 0.1s ease,
    width 0.2s ease
  ;
  -moz-transition:
    border-radius 0.1s ease,
    width 0.2s ease
  ;
  -o-transition:
    border-radius 0.1s ease,
    width 0.2s ease
  ;
  -ms-transition:
    border-radius 0.1s ease,
    width 0.2s ease
  ;
  transition:
    border-radius 0.1s ease,
    width 0.2s ease
  ;
}

.ui.dropdown .menu {
  position: absolute;
  display: none;
  top: 100%;
  background-color: #FFFFFF;
  min-width: 100%;
  white-space: nowrap;

  text-shadow: none;

  -webkit-box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.1),
    0px -2px 0px 0px rgba(0, 0, 0, 0.1) inset
  ;
  -moz-box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.1),
    0px -2px 0px 0px rgba(0, 0, 0, 0.1) inset
  ;
  box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.1),
    0px -2px 0px 0px rgba(0, 0, 0, 0.1) inset
  ;

  -moz-border-radius: 0px 0px 0.325em 0.325em;
  -webkit-border-radius: 0px 0px 0.325em 0.325em;
  border-radius: 0px 0px 0.325em 0.325em;

  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  z-index: 11;
}
.ui.dropdown > .dropdown.icon {
  width: auto;
}
.ui.dropdown > .text {
  display: inline-block;

  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  -ms-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

/* Flyout Direction */
.ui.dropdown .menu {
  left: 0px;
}
.ui.menu .dropdown:last-child .menu,
.ui > .ui.dropdown:last-child .menu {
  left: auto;
  right: 0px;
}

.ui.dropdown .menu .item {
  cursor: pointer;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.05);

  font-size: 0.875em;
  display: block;
  color: rgba(0, 0, 0, 0.75);

  padding: 0.85em 1em !important;
  font-size: 0.9rem;
  text-transform: none;
  font-weight: normal;
  text-align: left;

  -webkit-touch-callout: none;
}
.ui.dropdown .menu .item:before {
  display: none;
}
.ui.dropdown .menu .item .icon {
  margin-right: 0.75em;
}

.ui.dropdown .menu .item:first-child {
  border-top: none;
}


/*******************************
            States
*******************************/

.ui.dropdown.visible {
  border-bottom-left-radius: 0em !important;
  border-bottom-right-radius: 0em !important;
}
.ui.dropdown.visible .menu {
  display: block;
}

.ui.dropdown .menu .item:hover {
  background-color: rgba(0, 0, 0, 0.02);
  z-index: 12;
}
.ui.dropdown .menu .active.item {
  background-color: rgba(0, 0, 0, 0.04);
  border-left: none;
  z-index: 12;
}

/* Default Text */
.ui.dropdown > .default.text,
.ui.default.dropdown > .text {
  color: rgba(0, 0, 0, 0.5);
}
.ui.dropdown:hover > .default.text,
.ui.default.dropdown:hover > .text {
  color: rgba(0, 0, 0, 0.8);
}



/*******************************
           Variations
*******************************/

/*--------------
     Simple
---------------*/
/* Displays without javascript */

.ui.simple.dropdown .menu:before,
.ui.simple.dropdown .menu:after {
  display: none;
}
.ui.simple.dropdown .menu {
  display: block;
  overflow: hidden;
  top: -9999px !important;
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.ui.simple.dropdown.visible,
.ui.simple.dropdown:hover {
  border-bottom-left-radius: 0em !important;
  border-bottom-right-radius: 0em !important;
}

.ui.simple.dropdown.visible .menu,
.ui.simple.dropdown:hover .menu {
  overflow: visible;
  width: auto;
  height: auto;
  top: 100% !important;
  opacity: 1;
}
.ui.simple.disabled.dropdown:hover .menu {
  height: 0px;
  width: 0px;
  overflow: hidden;
}


/*--------------
    Selection
---------------*/
/* Displays like a select box */

.ui.selection.dropdown {
  cursor: pointer;
  display: inline-block;

  background-color: #FFFFFF;
  padding: 0.5em 1em;

  line-height: 1.33;
  color: rgba(0, 0, 0, 0.8);

  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);

  -webkit-border-radius: 0.3125em !important;
  -moz-border-radius: 0.3125em !important;
  border-radius: 0.3125em !important;
}
.ui.selection.dropdown > .dropdown.icon {
  float: right;

  opacity: 0.7;
  margin: 0.2em 0em 0.2em 1.25em;

  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.ui.selection.dropdown,
.ui.selection.dropdown .menu {
  top: 100%;
  -webkit-transition: box-shadow 0.2s ease-out;
  -moz-transition: box-shadow 0.2s ease-out;
  -o-transition: box-shadow 0.2s ease-out;
  -ms-transition: box-shadow 0.2s ease-out;
  transition: box-shadow 0.2s ease-out;
}

.ui.selection.dropdown .menu {
  max-height: 312px;
  
  overflow-x: hidden;
  overflow-y: auto;
  
  -webkit-box-shadow: 0px 1px 0px 1px #EEEEEE;
  -moz-box-shadow: 0px 1px 0px 1px #EEEEEE;
  box-shadow: 0px 1px 0px 1px #EEEEEE;

  -moz-border-radius: 0px 0px 0.325em 0.325em;
  -webkit-border-radius: 0px 0px 0.325em 0.325em;
  border-radius: 0px 0px 0.325em 0.325em;
}
.ui.selection.dropdown .menu img {
  height: 2.5em;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5em;
}

/* Hover */
.ui.selection.dropdown:hover,
.ui.selection.dropdown.hover {
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.2);
}
.ui.selection.dropdown:hover > .dropdown.icon {
  opacity: 1;
}

/* Visible */
.ui.selection.dropdown.visible {
  -webkit-border-radius: 0.3125em 0.3125em 0em 0em !important;
  -moz-border-radius: 0.3125em 0.3125em 0em 0em !important;
  border-radius: 0.3125em 0.3125em 0em 0em !important;
}
.ui.selection.dropdown.visible > .dropdown.icon {
  opacity: 1;
}
.ui.selection.dropdown.visible .menu {
  -webkit-box-shadow: 0px 1px 0px 1px #D3D3D3;
  -moz-box-shadow: 0px 1px 0px 1px #D3D3D3;
  box-shadow: 0px 1px 0px 1px #D3D3D3;
}

/*--------------
      Fluid
---------------*/

.ui.fluid.dropdown {
  display: block;
}

/*--------------
     Pointing
---------------*/


.ui.pointing.dropdown .menu {
  top: 100%;
  margin-top: 0.75em;
  -moz-border-radius: 0.325em;
  -webkit-border-radius: 0.325em;
  border-radius: 0.325em;
}

.ui.pointing.dropdown .menu:after {
  position: absolute;
  pointer-events: none;
  content: " ";


  width: 0.5em;
  height: 0.5em;

  -moz-box-shadow: -1px -1px 0px 1px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: -1px -1px 0px 1px rgba(0, 0, 0, 0.05);
  box-shadow: -1px -1px 0px 1px rgba(0, 0, 0, 0.05);

  background-image: none;
  background-color: #FFFFFF;

  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 2;
}

.ui.pointing.dropdown .menu .item.active:first-child {
  background: transparent -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.03));
  background: transparent -moz-linear-gradient(transparent, rgba(0, 0, 0, 0.03));
  background: transparent -o-linear-gradient(transparent, rgba(0, 0, 0, 0.03));
  background: transparent -ms-linear-gradient(transparent, rgba(0, 0, 0, 0.03));
  background: transparent linear-gradient(transparent, rgba(0, 0, 0, 0.03));
}

/* Directions */

.ui.pointing.dropdown .menu:after {
  top: -0.25em;
  left: 50%;
  margin: 0em 0em 0em -0.25em;
}
.ui.top.left.pointing.dropdown .menu {
  top: 100%;
  bottom: auto;
  left: 0%;
  right: auto;
  margin: 0.75em 0em 0em;
}
.ui.top.left.pointing.dropdown .menu:after {
  top: -0.25em;
  left: 1em;
  right: auto;
  margin: 0em;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.ui.top.right.pointing.dropdown .menu {
  top: 100%;
  bottom: auto;
  right: 0%;
  left: auto;
  margin: 0.75em 0em 0em;
}
.ui.top.right.pointing.dropdown .menu:after {
  top: -0.25em;
  left: auto;
  right: 1em;
  margin: 0em;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.ui.left.pointing.dropdown .menu {
  top: 0%;
  left: 100%;
  right: auto;
  margin: 0em 0em 0em 0.75em;
}
.ui.left.pointing.dropdown .menu:after {
  top: 1em;
  left: -0.25em;
  margin: -0.1em 0em 0em 0em;

  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.ui.right.pointing.dropdown .menu {
  top: 0%;
  left: auto;
  right: 100%;
  margin: 0em 0.75em 0em 0em;
}
.ui.right.pointing.dropdown .menu:after {
  top: 1em;
  left: auto;
  right: -0.25em;
  margin: -0.1em 0em 0em 0em;

  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* States */
.ui.pointing.dropdown.visible,
.ui.pointing.dropdown.visible .menu {
  -moz-border-radius: 0.325em !important;
  -webkit-border-radius: 0.325em !important;
  border-radius: 0.325em !important;
}

/*******************************
          Modal Styles
*******************************/
.ui.modal {
  display: none;
  position: absolute;
  z-index: 1100;
  top: 50%;
  left: 50%;
  margin-left: -400px;
  width: 800px;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.ui.page.modal {
  position: fixed;
}
/*--------------
  Close Button
---------------*/
.ui.modal > .close {
  cursor: pointer;
  position: absolute;
  font-size: 1.25em;
  color: #FFFFFF;
  top: -1.75em;
  right: -1.75em;
  opacity: 0.8;
}
.ui.modal > .close:hover {
  opacity: 1;
}
/*--------------
     Header
---------------*/
.ui.modal > .header {
  background-color: #442359;
  padding: 1em 2em;
  -webkit-border-radius: 0.325em 0.325em 0px 0px;
  -moz-border-radius: 0.325em 0.325em 0px 0px;
  border-radius: 0.325em 0.325em 0px 0px;
}
.ui.modal > .header h2 {
  margin: 0px;
  font-size: 1.5em;
  font-weight: bold;
  color: #FFFFFF;
}
.ui.modal > .content {
  position: relative;
  overflow: hidden;
  padding: 2em;
  background-color: #FAFAFA;
  -webkit-border-radius: 0px 0px 0.325em 0.325em;
  -moz-border-radius: 0px 0px 0.325em 0.325em;
  border-radius: 0px 0px 0.325em 0.325em;
}
.ui.modal > .content .left {
  float: left;
  width: 50%;
}
.ui.modal > .content .right {
  float: right;
  width: 50%;
}
.ui.modal.fixed {
  position: fixed;
}
/* Static In-Page Modal */
.ui.modal.static {
  display: block;
  position: relative;
  overflow: hidden;
  top: 0px;
  left: 0px;
  border: 1px solid #CCCCCC;
  width: auto;
  height: auto;
  margin: 0px auto;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  color: #555555;
  z-index: 2;
  -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
}
.ui.modal.static > .header,
.ui.modal.static > .content {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~ FULLSCREEN ~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


.bootstrap-modal.fullscreen {
  overflow: visible;
}

.bootstrap-modal.fullscreen h4 {
  font-weight: normal;
}

.bootstrap-modal.fullscreen .modal-content {
  text-align: center;
  color: #FFFFFF;
  background-color: transparent !important;
  border: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-clip: none !important;
  outline: none !important;
}

.bootstrap-modal.fullscreen .icon.close {
  background: none !important;
}

.bootstrap-modal.fullscreen .actions {
  padding: 20px 0;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~ VOTING ~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.bootstrap-modal.fullscreen.voting .center .image {
  opacity: 0.0;
  margin: 0 auto;
  bottom: -300px;
  padding: 20px 0 20px;
  position: relative;
}

.bootstrap-modal.fullscreen.voting .center .image img {
  -webkit-box-shadow: 0px 0px 62px -22px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 62px -22px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 62px -22px rgba(0,0,0,0.75);
}

.bootstrap-modal.fullscreen.voting .callout.view-full {
  opacity: 0.0;
  position: absolute;
  top: 23%;
  left: -1%;
}

.bootstrap-modal.fullscreen.voting .callout.pass {
  opacity: 0.0;
  position: absolute;
  top: 51%;
  right: 2%;
}

.bootstrap-modal.fullscreen.voting .callout.vote {
  opacity: 0.0;
  position: absolute;
  top: 46%;
  left: 6%;
}

.bootstrap-modal.fullscreen.voting .actions {
  opacity: 0.0;
}

.bootstrap-modal.fullscreen .actions .ui.button {
  width: 240px;
  margin: 0 auto;
  display: block;
}

.bootstrap-modal.fullscreen .actions a {
  padding-top: 10px;
  display: block;
  text-decoration: underline !important;
  color: #FFFFFF !important;
}

@media only screen and (max-height:520px) {
  .bootstrap-modal.fullscreen {
    position: absolute !important;
  }
}

@media only screen and (max-width:768px) {
  .bootstrap-modal.fullscreen {
    position: absolute;
    top: -50px !important;
  }
  .bootstrap-modal.fullscreen .actions {opacity: 1.0;}
  .bootstrap-modal.fullscreen.voting .image img {width: 90%; max-width: 250px;} 
  .bootstrap-modal.fullscreen h3 {font-size: 18px;}
  .bootstrap-modal.fullscreen.voting .callout {display: none;}
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~ INFLUENCE ~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.bootstrap-modal.fullscreen.onboarding {
  top: 10%;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~ SUBSCRIBER MODAL ~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.bootstrap-modal.fullscreen.subscription.email,
.bootstrap-modal.fullscreen.subscription.facebook {
  top: 20%;
}

.bootstrap-modal.fullscreen.subscription .subscribe-form,
.bootstrap-modal.fullscreen.subscription .registration-form {
  width: 430px;
  margin: 0 auto;
}
.bootstrap-modal.fullscreen.subscription .registration-form .ui.horizontal.divider {
  color: #FFFFFF;
}
.bootstrap-modal.fullscreen.subscription .registration-form .field.password {
  margin-bottom: 0 !important;
}
.bootstrap-modal.fullscreen.subscription .registration-form .action.button {
  width: 100%;
}
.bootstrap-modal.fullscreen.subscription #email-collection-form input {
  float: left;
  width: 60% !important;
  padding: 0.65em 1.2em !important;
  margin-bottom: 20px;
}
.bootstrap-modal.fullscreen.subscription #email-collection-form button {
  float: right;
  width: 40%;
}
.bootstrap-modal.fullscreen.subscription .image {
  width: 350px;
  margin: 0 auto;
  text-align: center;
}
.bootstrap-modal.fullscreen.subscription .image img {
  padding: 20px 0 0;
  display: block;
}
.bootstrap-modal.fullscreen.subscription .terms {
  text-align: center;
  font-size: 16px;
  color: #FFFFFF !important;
}
.bootstrap-modal.fullscreen.subscription .terms a {
  text-decoration: underline;
  color: #FFFFFF !important;
}
.bootstrap-modal.fullscreen.subscription .registration-form .no-thanks {padding-top:20px;}
.bootstrap-modal.fullscreen.subscription .registration-form .no-thanks a {
  text-decoration: underline;
  color: #FFFFFF !important;
  font-size: 20px;
}
@-webkit-keyframes rot-one {
  from {-webkit-transform: rotate(0deg) translate(-1400px) rotate(-40deg);}
  to {-webkit-transform: rotate(360deg) translate(-1400px) rotate(-40deg);}
}
@-moz-keyframes rot-one {
  from {-moz-transform: rotate(0deg) translate(-1400px) rotate(-40deg);}
  to {-moz-transform: rotate(360deg) translate(-1400px) rotate(-40deg);}
}

.bootstrap-modal.fullscreen.subscription .easter-egg {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: -900px;
  left: 80%;
  margin: -20px;
}

.bootstrap-modal.fullscreen.subscription .easter-egg.one {
  -webkit-animation: rot-one 8s 1 linear;
  -webkit-animation-delay: 2s;
  -moz-animation: rot-one 8s 1 linear;
  -moz-animation-delay: 2s;
}

@media only screen and (max-width:640px) {
  .bootstrap-modal.fullscreen.subscription img {
    display: none !important;
  }
  .bootstrap-modal.fullscreen.subscription .easter-egg.one {
    -webkit-animation: none !important;
    -webkit-animation-delay: none !important;
    -moz-animation: none !important;
    -moz-animation-delay: none !important;
  }
  .bootstrap-modal.fullscreen.subscription .registration-form,
  .bootstrap-modal.fullscreen.subscription .subscribe-form {
    width: 90% !important;
    margin: 0 auto !important;
  }
  .bootstrap-modal.fullscreen.subscription #email-collection-form button {
    float: none !important;
    width: 100%;
  }
  .bootstrap-modal.fullscreen.subscription #email-collection-form input {
    float: none !important;
    width: 100% !important;
  }
}




/*
 * # Semantic Nag
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
             Nag
*******************************/

.ui.nag {
  display: none;
  opacity: 0.95;

  position: relative;
  top: 0px;
  left: 0%;
  z-index: 101;

  min-height: 0;
  width: 100%;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  margin: 0em;
  line-height: 3em;
  padding: 0em 1em;

  background-color: #555555;

  -webkit-box-shadow:
    0px 1px 2px 0px rgba(0, 0, 0, 0.2)
  ;
  -moz-box-shadow:
    0px 1px 2px 0px rgba(0, 0, 0, 0.2)
  ;
  box-shadow:
    0px 1px 2px 0px rgba(0, 0, 0, 0.2)
  ;
  
  font-size: 1em;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);

  -webkit-border-radius: 0px 0px 5px 5px;
  -moz-border-radius: 0px 0px 5px 5px;
  border-radius: 0px 0px 5px 5px;

  -webkit-transition: 0.2s background;
  -moz-transition: 0.2s background;
  -o-transition: 0.2s background;
  -ms-transition: 0.2s background;
  transition: 0.2s background;
}

a.ui.nag {
  cursor: pointer;
}

.ui.nag > .title {
  display: inline-block;
  margin: 0em 0.5em;
  color: #FFFFFF;
}


.ui.nag > .close.icon {
  cursor: pointer;
  opacity: 0.4;

  position: absolute;
  top: 50%;
  right: 1em;

  margin-top: -0.5em;
  color: #FFFFFF;

  -webkit-transition: 0.1s opacity;
  -moz-transition: 0.1s opacity;
  -o-transition: 0.1s opacity;
  -ms-transition: 0.1s opacity;
  transition: 0.1s opacity;
}



/*******************************
             States
*******************************/

/* Hover */
.ui.nag:hover {
  opacity: 1;
}

.ui.nag .close:hover {
  opacity: 1;
}


/*******************************
           Variations
*******************************/


/*--------------
     Static
---------------*/

.ui.overlay.nag {
  position: absolute;
  display: block;
}

/*--------------
     Fixed
---------------*/

.ui.fixed.nag {
  position: fixed;
}

/*--------------
     Bottom
---------------*/

.ui.botton.nag {
  -webkit-border-radius: 5px 5px 0px 0px;
  -moz-border-radius: 5px 5px 0px 0px;
  border-radius: 5px 5px 0px 0px;
}
.ui.fixed.bottom.nags,
.ui.fixed.bottom.nag {
  top: auto;
  bottom: 0px;
}


/*--------------
     White
---------------*/

.ui.white.nags .nag,
.ui.white.nag {
  background-color: #F1F1F1;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
  color: #ACACAC;
}
.ui.white.nags .nag .close,
.ui.white.nags .nag .title,
.ui.white.nag .close,
.ui.white.nag .title {
  color: #333333;
}


/*******************************
           Groups
*******************************/

.ui.nags .nag {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
/*
 * # Semantic Popup
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */
/*******************************
            Popup
*******************************/
.ui.popup {
  display: none;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 900;

  border: 1px solid #DCDDDE;
  max-width: 250px;
  background-color: #FFFFFF;
  
  padding: 0.8em 1.2em;
  font-size: 0.875rem;
  font-weight: normal;
  font-style: normal;
  color: rgba(0, 0, 0, 0.7);

  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  border-radius: 0.2em;

  -webkit-box-shadow: 0px 1px 1px #DCDDDE;
  -moz-box-shadow: 0px 1px 1px #DCDDDE;
  box-shadow: 0px 1px 1px #DCDDDE;
}
.ui.popup .header {
  margin: -0.8em -1.2em 0.8em;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.8em 1.2em;
  line-height: 1;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 0.2em 0.2em 0em 0em;
  -moz-border-radius: 0.2em 0.2em 0em 0em;
  border-radius: 0.2em 0.2em 0em 0em;
}
/* Default Interactions */
.ui.popup .ui.button,
.ui.popup form.ui input .ui.popup form.ui textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
/*--------------
     Spacing
---------------*/
.ui.popup {
  margin: 0em;
}
.ui.popup.bottom {
  margin: 0.75em 0em 0em;
}
.ui.popup.top {
  margin: 0em 0em 0.75em;
}
.ui.popup.left.center {
  margin: 0em 0.75em 0em 0em;
}
.ui.popup.right.center {
  margin: 0em 0em 0em 0.75em;
}
.ui.popup.center {
  margin-left: -1.25em;
}
/*--------------
     Pointer
---------------*/
.ui.popup:before {
  position: absolute;
  content: "";
  width: 0.75em;
  height: 0.75rem;
  background-image: none;
  background-color: #FFFFFF;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 1px 1px 1px #DCDDDE;
  -moz-box-shadow: 1px 1px 1px #DCDDDE;
  box-shadow: 1px 1px 1px #DCDDDE;
}
/*--- Below ---*/
.ui.bottom.center.popup:before {
  margin-left: -0.4em;
  top: -0.4em;
  left: 50%;
  right: auto;
  bottom: auto;
  -webkit-box-shadow: -1px -1px 1px #dcddde;
  -moz-box-shadow: -1px -1px 1px #dcddde;
  box-shadow: -1px -1px 1px #dcddde;
}
.ui.bottom.left.popup:before {
  top: -0.4em;
  left: 1em;
  right: auto;
  bottom: auto;
  margin-left: 0em;
  -webkit-box-shadow: -1px -1px 1px #dcddde;
  -moz-box-shadow: -1px -1px 1px #dcddde;
  box-shadow: -1px -1px 1px #dcddde;
}
.ui.bottom.right.popup:before {
  top: -0.4em;
  right: 1em;
  bottom: auto;
  left: auto;
  margin-left: 0em;
  -webkit-box-shadow: -1px -1px 1px #dcddde;
  -moz-box-shadow: -1px -1px 1px #dcddde;
  box-shadow: -1px -1px 1px #dcddde;
}
/*--- Above ---*/
.ui.top.center.popup:before {
  top: auto;
  right: auto;
  bottom: -0.4em;
  left: 50%;
  margin-left: -0.4em;
}
.ui.top.left.popup:before {
  bottom: -0.4em;
  left: 1em;
  top: auto;
  right: auto;
  margin-left: 0em;
}
.ui.top.right.popup:before {
  bottom: -0.4em;
  right: 1em;
  top: auto;
  left: auto;
  margin-left: 0em;
}
/*--- Left ---*/
.ui.left.center.popup:before {
  top: 50%;
  right: -0.35em;
  bottom: auto;
  left: auto;
  margin-top: -0.4em;
  -moz-box-shadow: 1px -1px 1px #dcddde;
  -webkit-box-shadow: 1px -1px 1px #dcddde;
  box-shadow: 1px -1px 1px #dcddde;
}
/*--- Right ---*/
.ui.right.center.popup:before {
  top: 50%;
  left: -0.35em;
  bottom: auto;
  right: auto;
  margin-top: -0.4em;
  -moz-box-shadow: -1px 1px 1px #dcddde;
  -webkit-box-shadow: -1px 1px 1px #dcddde;
  box-shadow: -1px 1px 1px #dcddde;
}
/*******************************
            States
*******************************/
.ui.popup.loading {
  display: block;
  visibility: hidden;
}
.ui.popup.active {
  display: block;
}
/*******************************
            Variations
*******************************/
/*--------------
      Size
---------------*/
.ui.small.popup {
  font-size: 0.75rem;
}
.ui.large.popup {
  font-size: 1rem;
}
/*--------------
     Colors
---------------*/
/* Black  */
.ui.inverted.popup {
  background-color: #333333;
  border: none;
  color: #FFFFFF;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.ui.inverted.popup .header {
  background-color: rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}
.ui.inverted.popup:before {
  background-color: #333333;
  
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/*
 * # Semantic Reveal
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: June 28, 2013
 */


/*******************************
            Reveal
*******************************/

.ui.reveal  {
  position: relative !important;
  z-index: 2 !important;
}

.ui.reveal > .visible.content {
  -webkit-transition:
    all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
  -moz-transition:
    all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
  -ms-transition:
    all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
  transition:
    all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
}

.ui.reveal > .visible.content {
  position: absolute !important;
  top: 0em !important;
  left: 0em !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 4 !important;
  -webkit-transition:
    all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
  -moz-transition:
    all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
  -ms-transition:
    all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
  transition:
    all 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
}
.ui.reveal > .hidden.content {
  position: relative !important;
  z-index: 3 !important;
}

/*------------------
   Loose Coupling
-------------------*/

.ui.reveal.button {
  overflow: hidden;
}



/*******************************
              Types
*******************************/


/*--------------
      Slide
---------------*/

.ui.slide.reveal {
  position: relative !important;
  display: block !important;
  overflow: hidden !important;

  white-space: nowrap;
}

.ui.slide.reveal > .content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  margin: 0em;
  padding: 0em 1em;
  -webkit-transition:
    top 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    left 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    right 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    bottom 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
  -moz-transition:
    top 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    left 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    right 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    bottom 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
  -ms-transition:
    top 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    left 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    right 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    bottom 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
  transition:
    top 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    left 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    right 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s,
    bottom 0.8s cubic-bezier(0.175, 0.885, 0.320, 1) 0.15s
  ;
}
.ui.slide.reveal > .visible.content {
  position: relative !important;
}
.ui.slide.reveal > .hidden.content {
  display: inline-block;
  position: absolute !important;
  top: 0% !important;
  left: 100% !important;
  width: 100% !important;
}
.ui.slide.reveal:hover > .visible.content {
  left: -100% !important;
}
.ui.slide.reveal:hover > .hidden.content {
  left: 0% !important;
}

.ui.right.slide.reveal > .visible.content {
  left: 0%;
}
.ui.right.slide.reveal > .hidden.content {
  left: auto !important;
  right: 100% !important;
}
.ui.right.slide.reveal:hover > .visible.content {
  left: 100% !important;
  right: auto !important;
}
.ui.right.slide.reveal:hover > .hidden.content {
  left: auto !important;
  right: 0% !important;
}

.ui.up.slide.reveal > .visible.content {
  top: 0% !important;
  left: 0% !important;
  right: auto !important;
  bottom: auto !important;
}
.ui.up.slide.reveal > .hidden.content {
  top: 100% !important;
  left: 0% !important;
  right: auto !important;
  bottom: auto !important;
}
.ui.slide.up.reveal:hover > .visible.content {
  top: -100% !important;
  left: 0% !important;
}
.ui.slide.up.reveal:hover > .hidden.content {
  top: 0% !important;
  left: 0% !important;
}

.ui.down.slide.reveal > .visible.content {
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  bottom: 0% !important;
}
.ui.down.slide.reveal > .hidden.content {
  top: auto !important;
  right: auto !important;
  bottom: 100% !important;
  left: 0% !important;
}
.ui.slide.down.reveal:hover > .visible.content {
  left: 0% !important;
  bottom: -100% !important;
}
.ui.slide.down.reveal:hover > .hidden.content {
  left: 0% !important;
  bottom: 0% !important;
}



/*--------------
      Fade
---------------*/

.ui.fade.reveal > .visible.content {
  opacity: 1;
}
.ui.fade.reveal:hover > .visible.content {
  opacity: 0;
}


/*--------------
      Move
---------------*/

.ui.move.reveal > .visible.content,
.ui.move.left.reveal > .visible.content {
  left: auto !important;
  top: auto !important;
  bottom: auto !important;
  right: 0% !important;
}
.ui.move.reveal:hover > .visible.content,
.ui.move.left.reveal:hover > .visible.content {
  right: 100% !important;
}

.ui.move.right.reveal > .visible.content {
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  left: 0% !important;
}
.ui.move.right.reveal:hover > .visible.content {
  left: 100% !important;
}

.ui.move.up.reveal > .visible.content {
  right: auto !important;
  left: auto !important;
  top: auto !important;

  bottom: 0% !important;
}
.ui.move.up.reveal:hover > .visible.content {
  bottom: 100% !important;
}

.ui.move.down.reveal > .visible.content {
  right: auto !important;
  left: auto !important;
  bottom: auto !important;

  top: 0% !important;
  bottom: auto !important;
}
.ui.move.down.reveal:hover > .visible.content {
  top: 100% !important;
}


/*--------------
     Rotate
---------------*/

.ui.rotate.reveal > .visible.content {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  transition-duration: 0.8s;

  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.ui.rotate.reveal > .visible.content,
.ui.rotate.right.reveal > .visible.content {
  -webkit-transform-origin: bottom right;
  -moz-transform-origin: bottom right;
  -o-transform-origin: bottom right;
  -ms-transform-origin: bottom right;
  transform-origin: bottom right;
}
.ui.rotate.reveal:hover > .visible.content,
.ui.rotate.right.reveal:hover > .visible.content {
  -webkit-transform: rotate(110deg);
  -moz-transform: rotate(110deg);
  -o-transform: rotate(110deg);
  -ms-transform: rotate(110deg);
  transform: rotate(110deg);
}

.ui.rotate.left.reveal > .visible.content {
  -webkit-transform-origin: bottom left;
  -moz-transform-origin: bottom left;
  -o-transform-origin: bottom left;
  -ms-transform-origin: bottom left;
  transform-origin: bottom left;
}
.ui.rotate.left.reveal:hover > .visible.content {
  -webkit-transform: rotate(-110deg);
  -moz-transform: rotate(-110deg);
  -o-transform: rotate(-110deg);
  -ms-transform: rotate(-110deg);
  transform: rotate(-110deg);
}


/*******************************
           Variations
*******************************/

/*--------------
     Masked
---------------*/

.ui.masked.reveal {
  overflow: hidden;
}

/*--------------
     Instant
---------------*/

.ui.instant.reveal > .content {
  -webkit-transition-delay: 0s !important;
  -moz-transition-delay: 0s !important;
  -o-transition-delay: 0s !important;
  -ms-transition-delay: 0s !important;
  transition-delay: 0s !important;
}
/*
 * # Semantic Search
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
             Search
*******************************/
.ui.search {
  position: relative;

  text-shadow: none;
  font-style: normal;
  font-weight: normal;
}

.ui.search input {
  -webkit-border-radius: 500em;
  -moz-border-radius: 500em;
  border-radius: 500em;
}

/*--------------
     Button
---------------*/

.ui.search > .button {
  position: relative;
  z-index: 2;
  float: right;
  margin: 0px 0px 0px -15px;
  padding: 6px 15px 7px;
  -webkit-border-radius: 0px 15px 15px 0px;
  -moz-border-radius: 0px 15px 15px 0px;
  border-radius: 0px 15px 15px 0px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/*--------------
    Results
---------------*/

.ui.search .results {
  display: none;

  position: absolute;
  z-index: 999;
  top: 100%;
  left: 0px;
  
  overflow: hidden;
  background-color: #FFFFFF;

  margin-top: 0.5em;
  width: 380px;
  font-size: 0.875em;
  line-height: 1.2;
  color: #555555;

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;

  -webkit-box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.1),
    0px -2px 0px 0px rgba(0, 0, 0, 0.1) inset
  ;
  -moz-box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.1),
    0px -2px 0px 0px rgba(0, 0, 0, 0.1) inset
  ;
  box-shadow:
    0px 0px 1px 1px rgba(0, 0, 0, 0.1),
    0px -2px 0px 0px rgba(0, 0, 0, 0.1) inset
  ;
}
.ui.search .result {
  cursor: pointer;
  overflow: hidden;
  padding: 0.5em 1em;
}
.ui.search .result:first-child {
  border-top: none;
}
.ui.search .result .image {
  background: #F0F0F0;
  margin-right: 10px;
  float: left;
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  width: 38px;
  height: 38px;
}
.ui.search .result .image img {
  display: block;
  width: 38px;
  height: 38px;
}
.ui.search .result .image ~ .info {
  float: none;
  margin-left: 50px;
}

.ui.search .result .info {
  float: left;
}
.ui.search .result .title {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8);
}
.ui.search .result .description {
  color: rgba(0, 0, 0, 0.6);
}
.ui.search .result .price {
  float: right;
  color: #5BBD72;
  font-weight: bold;
}

/*--------------
    Message
---------------*/

.ui.search .message {
  padding: 1em;
}
.ui.search .message .header {
  margin: 0em 0em 0.5rem;

  font-size: 1.25rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.8);
}
.ui.search .message .description {
  margin: 0em;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.5);
}


/*--------------
    Categories
---------------*/

.ui.search .results .category {
  background-color: #FAFAFA;

  border-top: 1px solid rgba(0, 0, 0, 0.1);

  -webkit-transition: background 0.2s ease-in;
  -moz-transition: background 0.2s ease-in;
  -o-transition: background 0.2s ease-in;
  -ms-transition: background 0.2s ease-in;
  transition: background 0.2s ease-in;
}
.ui.search .results .category:first-child {
  border-top: none;
}

.ui.search .results .category > .name {
  float: left;
  padding: 12px 0px 0px 8px;
  font-weight: bold;
  color: #777777;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
}
.ui.search .results .category .result {
  background-color: #FFFFFF;
  margin-left: 80px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

/* View All Results */
.ui.search .all {
  display: block;

  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #FAFAFA;
  height: 2.5em;
  line-height: 2.5em;
  color: rgba(0, 0, 0, 0.5);
  
  font-weight: bold;
  text-align: center;
}


/*******************************
            States
*******************************/

/*--------------
      Hover
---------------*/

.ui.search .result:hover,
.ui.search .category .result:hover {
  background-color: #F8F8F8;
}
.ui.search .all:hover {
  background-color: #F0F0F0;
}

/*--------------
     Loading
---------------*/

.ui.search.loading .input .icon {
  background: url(../components/semantic/images/loader-mini.gif?1419868612) no-repeat 50% 50%;
}
.ui.search.loading .input .icon:before,
.ui.search.loading .input .icon:after {
  display: none;
}


/*--------------
      Active
---------------*/

.ui.search .results .category.active {
  background-color: #F1F1F1;
}
.ui.search .results .category.active > .name {
  color: #333333;
}

.ui.search .result.active,
.ui.search .category .result.active {
  background-color: #FBFBFB;
}
.ui.search .result.active .title {
  color: #000000;
}
.ui.search .result.active .description {
  color: #555555;
}



/*******************************
           Variations
*******************************/



/* Large */
.ui.search .large.result .image,
.ui.search .large.result .image img {
  width: 50px;
  height: 50px;
}
.ui.search .large.results .indented.info {
  margin-left: 65px;
}
.ui.search .large.results .info .title {
  font-size: 16px;
}
.ui.search .large.results .info .description {
  font-size: 11px;
}


/*******************************
             Shape
*******************************/
.ui.shape {
  position: relative;
  -webkit-perspective: 2000px;
  -moz-perspective: 2000px;
  -ms-perspective: 2000px;
  perspective: 2000px;
}
.ui.shape .sides {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.ui.shape .side {
  opacity: 1;
  width: 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
/*---------------
    States
----------------*/
/* Standard */
.ui.shape .side {
  display: none;
}
/* Animating */
.ui.shape.animating .sides {
  position: absolute;
}
.ui.shape .animating.side {
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 100;
}
.ui.shape .hidden.side {
  opacity: 0.3;
}
/* css animation */
.ui.shape.css {
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.ui.shape.css .sides {
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}
.ui.shape.css .side {
  -webkit-transition: opacity 0.6s ease-in-out;
  -moz-transition: opacity 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out;
  -ms-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}
/* Active */
.ui.shape .active.side {
  display: block;
}

/*******************************
           Star Rating
*******************************/
.star.module {
  min-width: 88px;
  height: 42px;
  unicode-bidi: bidi-override;
  direction: rtl;
  font-size: 26px;
}
.star.module i,
.ui.star {
  cursor: default;
  float: left;
  padding: 2px 1px;
  font-style: normal;
  font-weight: normal;
  content: "\2605";
  color: transparent;
}
/* Non Selected Star */
.star.module i:after,
.ui.star:after {
  content: "\2605";
  color: #8C8C8C;
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  -o-transition: all 0.25s;
  -ms-transition: all 0.25s;
  transition: all 0.25s;
}
/*--------------
     States
---------------*/
/* Initialized is now clickable */
.star.module.initialize,
.star.module.initialize i {
  cursor: pointer;
}
/* Current Star Rating */
.star.module i.active:after {
  color: #FFCB08;
}
.star.module.hover i.active:after {
  opacity: 0.5;
}
/* Hover */
.star.module i.hover:after,
.star.module i.hover.active:after {
  opacity: 1;
  color: #FFB70A;
  text-shadow: 0px 0px 7px #FFCB08;
}

/*
 * # Semantic Button
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
           UI Tabs 
*******************************/

.ui.tab {
  display: none;
}
.ui.tab.active,
.ui.tab.open {
  display: block;
}

/*******************************
             States
*******************************/


/*--------------------
       Loading
---------------------*/

.ui.tab.loading {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 250px;
  text-indent: -10000px;
}
.ui.tab.loading * {
  position: relative !important;
  left: -10000px !important;
}
.ui.tab.loading:after {
  position: absolute;
  top: 50px;
  left: 50%;
  content: 'Loading...';
  margin-left: -32px;
  text-indent: 5px;
  color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  padding-top: 75px;
  background: url(../components/semantic/images/loader-large.gif?1419868612) no-repeat 0px 0px;
  visibility: visible;
}

/*
 * # Semantic Video
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: July 30, 2013
 */


/*******************************
            Video
*******************************/

.ui.video {
  position: relative;
  max-width: 100%;
}

/*--------------
     Content
---------------*/

/* Placeholder Image */
.ui.video .placeholder {
  background-color: #333333;
}

/* Play Icon Overlay */
.ui.video .play {
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;

  width: 100%;
  height: 100%;
  
  -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  opacity: 0.6;

  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.ui.video .play.icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 11;

  font-size: 6rem;
  margin: -3rem 0em 0em -3rem;
  color: #FFFFFF;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.4);
}

.ui.video .placeholder {
  display: block;
  width: 100%;
}

/* IFrame Embed */
.ui.video .embed {
  display: none;
}

/*******************************
            States
*******************************/

/*--------------
    Hover
---------------*/

.ui.video .play:hover {
  opacity: 1;
}


/*--------------
     Active
---------------*/

.ui.video.active .play,
.ui.video.active .placeholder {
  display: none;
}
.ui.video.active .embed {
  display: block;
}

/*******************************
          Breadcrumb
*******************************/

.ui.breadcrumb .divider {
  color: #DCDDDE;
  margin: 0em;
}

.ui.breadcrumb .slash.divider {
  position: relative;
  top: -0.1em;
  font-size: 1.5em;
  width: 1.5rem;
  vertical-align: top;
}
.ui.message > .close.icon {
	font-size: 1.2em
}
.ui.button {
  background-color: #9DA6AB;
  color: #FFFFFF;

  background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  background-image: -moz-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  background-image: -o-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  background-image: -ms-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.05));

  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px -3px 0em rgba(0, 0, 0, 0.1) inset;
  -moz-box-shadow: 0px -3px 0px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px -3px 0px rgba(0, 0, 0, 0.1) inset;
}

.ui.attached.button {
  -webkit-box-shadow: 0px 0px 0px 1px #DCDDDE !important;
  -moz-box-shadow: 0px 0px 0px 1px #DCDDDE !important;
  box-shadow: 0px 0px 0px 1px #DCDDDE !important;
}
.ui.buttons .button.hover,
.ui.buttons .button:hover,
.ui.button.hover,
.ui.button:hover, .ui.toggle.buttons .button.active,
.ui.buttons .button.toggle.active,
.ui.button.toggle.active {
  background-color: #9DA6AB;
  color: #FFFFFF;
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.1));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.1));
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.1));
  background-image: -ms-linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.1));
  background-image: linear-gradient(rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.1));
}

.ui.buttons .button:active,
.ui.buttons .button.down,
.ui.button:active,
.ui.button.down, .ui.buttons.toggle .ui.button.active.hover,
.ui.buttons .ui.button.toggle.active.hover,
.ui.button.toggle.active.hover  {
  background-color: #9DA6AB;
  color: #FFFFFF;
  text-shadow:
    0px -1px 0px rgba(0, 0, 0, 0.25),
    0px 1px 0px rgba(255, 255, 255, 0.1)
  ;
  background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12));
  background-image: -moz-linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12));
  background-image: -o-linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12));
  background-image: -ms-linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12));
  background-image: linear-gradient(rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12));

  -webkit-box-shadow: 0px 0px 0px -1px rgba(0, 0, 0, 0.1) inset;
  -box-shadow: 0px 0px 0px -1px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 0px 0px -1px rgba(0, 0, 0, 0.1) inset;
}
.ui.buttons .button.active,
.ui.button.active {
  background-color: #D2D2D2;
  color: #FFFFFF;
}
.button .positive {
  background-color: #5BBD72;
}

.ui.button.disabled, .ui.button.disabled.hover, .ui.button.disabled.down {
  color: #fff;
  background-color: #dcddde !important;
}


/*******************************
           Variations
*******************************/

.ui.success.button,
.ui.error.button,
.ui.loading.button,
.ui.secondary.button,
.ui.tertiary.button {
  text-shadow: none !important;
}

/* Submit Button */
.ui.submit.button {
  background-color: #21B3A8;
  color: #FFFFFF;
}

/* CTA Button */
.ui.action.button {
  background-color: #E96633;
}

/* Facebook Button */
.ui.facebook.button {
  background-color: #3b579d;
  color: #FFFFFF;
}

/* Twitter Button */
.ui.twitter.button {
  background-color: #00aced;
  color: #FFFFFF;
}

/* Pinterest Button */
.ui.pinterest.button {
  background-color: #cb2027;
  color: #FFFFFF;
}

/*---------------
   Quirky Flags
----------------*/

.ui.flag {
  position: absolute;
  top: 0px;
  left: 0px;
  background-image: url(//p1.q-static.com/images/flags.png?1419868763);
  background-repeat: no-repeat;
}
.ui.flag.new {
  left: auto;
  top: 8px;
  right: 8px;
  background-position: 0px 0px;
  width: 65px;
  height: 25px;
}
.ui.flag.on-sale {
  background-position: 0px -100px;
  width: 71px;
  height: 71px;
}
.ui.flag.making-this {
  background-position: 0px -200px;
  width: 75px;
  height: 75px;
}
.ui.flag.pro {
  position: static;
  display: inline-block;
  background-position: 0px -300px;
  width: 24px;
  height: 18px;
}
.ui.flag.team {
  position: static;
  display: inline-block;
  background-position: -100px -300px;
  width: 53px;
  height: 18px;
}
.ui.flag.logo {
  position: static;
  display: inline-block;
  background-position: -100px -300px;
  width: 17px;
  height: 18px;
}
.ui.flag.live {
  position: static;
  display: inline-block;
  vertical-align: middle;
  width: 39px;
  height: 18px;
  background-position: -100px 0px;
}
.ui.flag.live.emphasis {
  position: static;
  display: inline-block;
  width: 103px;
  height: 35px;
  background-position: -100px -100px;
}

/*-----------------
 UI Notification 
 (Unread Count etc)
-------------------*/

.ui.notification.hidden {
  display: none;
}
.ui.notification {
  position: absolute;
  top: 0px;
  right: 0px;

  background-color: #EEEEEE;
  padding: 3px 5px;

  background: -webkit-linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
  background: -moz-linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
  background: -o-linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
  background: -ms-linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);
  background: linear-gradient(top, #FFFFFF 0%, #DDDDDD 100%);

  border: 1px solid #DDDDDD;

  border-radius: 5px;

  box-shadow:
    1px 1px 1px rgba(0, 0, 0, 0.3),
    0px 1px 0px rgba(255, 255, 255, 0.6) inset
  ;

  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
  color: #555555;
  z-index: 100;
}
/*--------------------
      Placeholder
---------------------*/

.ui.form input::-webkit-input-placeholder {
  color: #9da6ab;
}
.ui.form input:-moz-input-placeholder, .ui.form input::-moz-input-placeholder {
  color: #9da6ab;
}
.ui.form input:-ms-input-placeholder {
  color: #9da6ab;
}
/*--- Red ---*/
.ui.red.labels .label,
.ui.red.label {
  background-color: #D95C5C !important;
  color: #FFFFFF !important;
}
.ui.labels .red.label:before,
.ui.red.labels .label:before,
.ui.red.label:before {
  background-color: #D95C5C !important;
}

/* Hover */
a.ui.red.labels .label:hover,
a.ui.red.label:hover{
  background-color: #DE3859 !important;
  color: #FFFFFF !important;
}
.ui.labels a.red.label:hover:before,
.ui.red.labels a.label:hover:before,
a.ui.red.label:hover:before {
  background-color: #DE3859 !important;
}




.ui.team.label {
  background-color: #46166B;
  color: #FFFFFF;
}
.ui.team.label .logo {
  opacity: 1;
  font-size: 3em;
  margin: -0.5em 0em -0.4em;
  vertical-align: middle;
  color: #FFFFFF;
}
.ui.segment {
  -webkit-box-shadow: 
    0px 0px 0px 1px #DCDDDE,
    0px -2px 0px 0px rgba(0, 0, 0, 0.04) inset
  ;
  -moz-box-shadow: 
    0px 0px 0px 1px #DCDDDE,
    0px -2px 0px 0px rgba(0, 0, 0, 0.04) inset
  ;
  box-shadow: 
    0px 0px 0px 1px #DCDDDE,
    0px -2px 0px 0px rgba(0, 0, 0, 0.04) inset
  ;

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.ui.secondary.segment {
  background-color: #F1F1F1;
}

.ui.slim.segment {
  padding: 0.5em;
}

.ui.well.segment {
  background: rgba(0,0,0,0.05);
  -webkit-box-shadow: 0px 0px 0px 1px #DCDDDE;
  -moz-box-shadow: 0px 0px 0px 1px #DCDDDE;
  box-shadow: 0px 0px 0px 1px #DCDDDE;
}

/*******************************
              Step
*******************************/

.ui.steps {
  margin-top: 2rem;
  background-color: transparent;
  border: none;
  opacity: 1;
  color: #5BBD72;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.ui.steps .step {
  background-color: transparent;
  position: relative;
  padding: 0em 2.5em;
}
.ui.steps .step:after {
  display: none;
  border: none;
}

/* Arrow */
.ui.steps .step:before {
  position: absolute;
  opacity: 1;
  top: 50%;
  left: -0.5em;
  margin-top: -0.5em;

  font-family: "Sketchy Icons";
  font-size: 1.8em;
  content: "\f10d";
  color: #9DA6AB;
}
.ui.steps .step:first-child:before {
  display: none;
}
.ui.steps .step.completed:first-child,
.ui.steps .step.completed:first-child:after {
  margin-left: -1rem;
}

.ui.steps .step .icon {
  display: block;
  font-size: 3em;
  margin: 0em auto 0.2em;
}


/*******************************
             States
*******************************/

/* Complete */
.ui.steps .step.completed,
.ui.steps .step.completed:before {
  color: #5BBD72;
}
.ui.steps .step.completed:after {
  display: block;
  position: absolute;
  background-color: transparent;
  box-shadow: none;
  top: -1.5em;
  left: 50%;
  margin-left: -0.5em;

  font-family: "Sketchy Icons";
  content: "\f12d";
}

/* Active */
.ui.steps .step:hover {
  background-color: transparent;
  opacity: 0.99;
}

/* Active */
.ui.steps .step.active,
.ui.step.active {
  background-color: transparent;
  opacity: 1;
  color: #5D6266;
}
.ui.steps .step.active:after,
.ui.step.active:after {
  display: none;
}

/* Disabled */
.ui.steps .disabled.step {
  background-color: transparent;
  color: #B2B2B2;
}
.ui.steps .disabled.step:before {
  opacity: 0.5;
}


h1.page.header, h2.page.header {
  color: #00b1db;
  margin-bottom: 0.25em;
  line-height: 1.15;
}

h3.secondary.page.header, h4.secondary.page.header {
  color: #9DA6AB;
  margin-top: 0;
  font-weight: normal;
}
.ui.checkbox label,
.ui.checkbox .box {
  border: 1px solid rgba(0,0,0,0.25);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  top: -2px;
}

.ui.checkbox label:hover,
.ui.checkbox .box:hover {
  border: 1px solid #9DA6AB;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.ui.checkbox .box:after, .ui.checkbox label:after {
  border: none;
  font-family: "Sketchy Icons";
  content: "\f12d";

  font-size: 0.7em;
  top: 0.25em;

  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}

.ui.radio.checkbox .box:after, .ui.radio.checkbox label:after {
  content: ' ';
  background-color: #555555;
  border: medium none;
  border-radius: 500px 500px 500px 500px;
  height: 8px;
  left: 3px;
  top: 3px;
  width: 8px;
}
/*******************************
        Gallery Module
*******************************/

.ui.gallery {
  position: relative;
}

/* Main Image */
.ui.gallery .image {
  position: relative;
  display: block;
  background-color: #EFEFEF;
  border-bottom: 3px solid transparent;
}
.ui.gallery .image img {
  cursor: pointer;
  position: relative;
  z-index: 11;

  display: block;
  width: 695px;
  height: auto;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;  
}
.ui.gallery .image .throbber { 
  -moz-transition: opacity 0.3s ease 0s;
  opacity: 0;
  z-index: 10;
}
.ui.gallery .image .flag {
  z-index: 4;
}

/* Thumbnails */
.ui.gallery .thumbnails {
  margin: 10px -5px 0px;
}
.ui.gallery .thumbnails li {
  float: left;
  cursor: pointer;
  margin: 0px 5px 5px 0px;
  background: #EFEFEF url(//p1.q-static.com/images/icon-placeholder-tiny-logo.png?1419868763) no-repeat center center;
  border-bottom: 3px solid transparent;

  -webkit-transition: border 0.3s ease-out;
  -moz-transition: border 0.3s ease-out;
  -o-transition: border 0.3s ease-out;
  -ms-transition: border 0.3s ease-out;
  transition: border 0.3s ease-out; 
}
.ui.gallery .thumbnails li img {
  display: block;
}

/* Nicer thumb spacing if supported */
.ui.gallery .thumbnails li {
  margin: 0px 5px 7px;
}
/* prevent highlighting */
.ui.gallery .image,
.ui.gallery .thumbnail,
.ui.gallery img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*******************************
      Navigation Arrows
*******************************/

.ui.gallery .arrow {
  cursor: pointer;
  position: absolute;
  z-index: 12;
  top: 50%;
  opacity: 0.9;

  margin-top: -35px;
  background: url(//p1.q-static.com/images/gallery-arrows.png?1419868763) no-repeat;
  width: 42px;
  height: 70px;
}

.ui.gallery .left.arrow {
  background-position: 0px 0px;
  left: 0px;
}
.ui.gallery .right.arrow {
  background-position: 0px -100px;
  right: 0px;
}

/* hover */
.ui.gallery .hover.arrow {
  opacity: 1;
}


/*******************************
            States
*******************************/

/* Thumbnail States */
.ui.gallery .thumbnails li.hover {
  border-color: #5D6266;
}
.ui.gallery .thumbnails li.active {
  border-color: #D9499A;
}
/* Loading State */
.ui.gallery.loading .throbber {
  opacity: 1;
  z-index: 4;
}
.ui.gallery.loading .image img {
  opacity: 0.05;
  z-index: 2;
}
.ui.gallery.loading .flag {
  z-index: 3;
}

/*******************************
            Resizes
*******************************/

/* Standard Size */
.ui.gallery,
.ui.gallery .image,
.ui.gallery .image img {
  width: 695px;
}

.ui.gallery .thumbnails li,
.ui.gallery .thumbnails img {
  width: auto;
  height: 75px;
}


/* Compact Size */
.ui.gallery.compact,
.ui.gallery.compact .image,
.ui.gallery.compact .image img {
  width: 425px;
}

.ui.gallery.compact .thumbnails li,
.ui.gallery.compact .thumbnails img {
  width: 75px;
  height: 50px;
}

/* Fluid Size */
.ui.gallery.fluid,
.ui.gallery.fluid .image,
.ui.gallery.fluid .image img {
  width: auto;
}

.ui.gallery.fluid .thumbnails li,
.ui.gallery.fluid .thumbnails img {
  width: auto;
  height: auto;
}



/*******************************
             Themes
*******************************/

/* Dark Skin */
.ui.gallery.dark .image {
  border-color: #222222;
  background-color: #111111;
}
.ui.gallery.dark .thumbnails li {
  border-color: #333333;
  background-color: #111111;
}
.ui.gallery.dark .thumbnails li.hover {
  border-color: #5D6266;
}
.ui.gallery.dark .thumbnails li.active {
  border-color: #D9499A;
  border-color: #AAAAAA;
}

.ui.gallery.loading .image img {
  opacity: 0.15;
}
/*===========*/
/* C O L O R */
/*===========*/

/*======== PRIMARY ==========*/
/*

Quirky       ==== #46166B
Quirky Black ==== #231F20
White        ==== #FFFFFF


*/
/*======== SECONDARY (CATEGORIES) ==========*/
/*

Electronics & Power  ==== #00B1DB 
Health & Fitness     ==== #F36525
Home & Garden        ==== #FFC800
Kitchen              ==== #BED733
Parenting            ==== #94297B
Play                 ==== #ED3897
Travel & Adventure   ==== #61bb46 
Wild Card            ==== #9DA6AB

*/
/*======== TERTIARY (CATEGORIES) ==========*/
/*

Cat. 08 (Pink)    ====  #D9499A
Cat. 09 (Blue)    ====  #2A5CAA
Cat. 10 (Orange)  ====  #FAA61A
Cat. 11 (Grayish) ====  #8D94A4
Cat. 12 (Red)     ====  #ED1558
Cat. 13 (Tan)     ====  #92847A

*/
/*======== NEUTRAL ==========*/
/*

Dark Gray     ====  #5D6266
Light Gray    ====  #DCDDDE
Mid Gray      ====  #9DA6AB
Neutral Blue  ====  #1B1464
Neutral Brown ====  #3F261E
Neutral Tan   ====  #C8B59B

*/
/*======== INDICATIONS ==========*/
/*


Success ====  #5BBD72
Error   ====  #D95C5C
Warning ====  #FAA61A

*/

/*******************************
            Navigation
*******************************/

.ui.navigation.menu {
  display: inline-block;
  border-color: #9DA6AB;
}
.ui.fluid.navigation.menu,
.ui.attached.navigation.menu {
  display: block;
}

.ui.navigation.menu .item {
  font-style: italic;
  color: #9DA6AB;
  padding-left: 2em;
  padding-right: 2em;
}
.ui.navigation.menu .item.active {
  border-color: #D9499A;
  color: #5D6266;
}

.ui.vertical.navigation.menu .item {
  padding-left: 1em;
  padding-right: 1em;
}

.ui.vertical.menu .item:not(.dropdown) > .menu > .item {
  color: #9DA6AB;
}
.ui.vertical.menu .item:not(.dropdown) > .menu > .item:hover,
.ui.vertical.menu .item:not(.dropdown) > .menu > .item.active {
  color: #5D6266;
}


/*******************************
            Circular
*******************************/

.ui.circular.text.menu .header.item {
  cursor: auto;
  text-transform: none;
  color: #5D6266;
}

.ui.circular.text.menu .item {
  cursor: pointer;
  margin: 0.275em 0em;

  -webkit-transition: 
    color 0.2s ease,
    opacity 0.2s ease
  ;
  -moz-transition: 
    color 0.2s ease,
    opacity 0.2s ease
  ;
  -o-transition: 
    color 0.2s ease,
    opacity 0.2s ease
  ;
  -ms-transition: 
    color 0.2s ease,
    opacity 0.2s ease
  ;
  transition: 
    color 0.2s ease,
    opacity 0.2s ease
  ;
}

.ui.circular.text.menu .item > .icon {
  display: inline-block;

  margin: 0em 0.5em 0em 0em;

  height: 1.5em;
  width: 1.5em;
  background-color: transparent;
  padding: 0.25em;

  text-shadow: none;
  font-size: 1.4em;

  -webkit-border-radius: 500em;
  -moz-border-radius: 500em;
  border-radius: 500em;

  -webkit-transition: 
    background 0.2s ease
  ;
  -moz-transition: 
    background 0.2s ease
  ;
  -o-transition: 
    background 0.2s ease
  ;
  -ms-transition: 
    background 0.2s ease
  ;
  transition: 
    background 0.2s ease
  ;
}

.ui.circular.text.menu .item.active,
.ui.circular.text.menu .item:hover {
  color: #2a5caa;
  font-weight: bold;
}

.ui.circular.text.menu .item.active i,
.ui.circular.text.menu .item:hover i {
  color: #FFFFFF;
  background-color: #2a5caa;
}

.ui.circular.text.menu .item:hover i:hover {
  color: #FFFFFF;
}

.ui.circular.text.sort.menu .newest.active,
.ui.circular.text.sort.menu .newest:hover {
  color: #FAA61A;
}

.ui.circular.text.sort.menu .ending.active,
.ui.circular.text.sort.menu .ending:hover {
  color: #2A5CAA;
}

.ui.circular.text.sort.menu .newest.active i,
.ui.circular.text.sort.menu .newest:hover i {
  background-color: #FAA61A;
}

.ui.circular.text.sort.menu .ending.active i,
.ui.circular.text.sort.menu .ending:hover i {
  background-color: #2A5CAA;
}

/*******************************
          Tab Menu
*******************************/

.ui.tabular.menu {
  background-color: transparent;
  border-bottom: 1px solid #DCDDDE;
  
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.ui.tabular.menu .item {
  background-color: transparent;
  font-weight: bold;
  padding: 1em 1.2em;
  color: #9DA6AB;
}
.ui.tabular.menu .item:hover {
  background-color: transparent;
  color: #5D6266;
}
.ui.tabular.menu .item:before {
  display: none;
}

.ui.tabular.menu .active.item {
  position: relative;
  top: 1px;

  background-color: #F8F8F8;
  color: #5D6266;

  border-left: 1px solid #DCDDDE;
  border-right: 1px solid #DCDDDE;
  border-top: 1px solid #DCDDDE;

  padding-top: 1em;
  
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;

}



.ui.vertical.left.icon.menu .item {
  text-align: left;
  padding: 1.2em 1em;
}

.ui.vertical.left.icon.menu .item > .icon {
  display: table-cell;
  float: none;
  font-size: 2em;
  vertical-align: middle;
  padding-right: 0.5em;
}

.ui.vertical.left.icon.menu .item .content {
  display: table-cell;
  font-weight: normal; 
}

.ui.vertical.left.icon.menu .item .content h4 {
  margin-bottom: 0.35em;
}


/*******************************
          Categories
*******************************/

.ui.menu .item.all.active,
.ui.menu .item.all:hover {
  color: #2a5caa !important;
}

.ui.menu .item.kitchen.active,
.ui.menu .item.kitchen:hover {
  color: #BED733 !important;
}
.ui.menu .item.health.active,
.ui.menu .item.health:hover {
  color: #F36525 !important;
}
.ui.menu .item.home.active,
.ui.menu .item.home:hover {
  color: #FFC800 !important;
}
.ui.menu .item.electronics.active,
.ui.menu .item.electronics:hover {
  color: #00B1DB !important;
}
.ui.menu .item.travel.active,
.ui.menu .item.travel:hover {
  color: #61bb46 !important;
}
.ui.menu .item.parenting.active,
.ui.menu .item.parenting:hover {
  color: #94297B !important;
}
.ui.menu .item.pets.active,
.ui.menu .item.pets:hover {
  color: #01B5AA !important;
}
.ui.menu .item.play.active,
.ui.menu .item.play:hover {
  color: #ED3897 !important;
}
.ui.menu .item.wildcard.active,
.ui.menu .item.wildcard:hover {
  color: #9DA6AB !important;
}

.ui.menu .item.all.active i,
.ui.menu .item.all:hover i {
  background-color: #2a5caa !important;
}
.ui.menu .item.kitchen.active i,
.ui.menu .item.kitchen:hover i {
  background-color: #BED733 !important;
}
.ui.menu .item.health.active i,
.ui.menu .item.health:hover i {
  background-color: #F36525 !important;
}
.ui.menu .item.home.active i,
.ui.menu .item.home:hover i {
  background-color: #FFC800 !important;
}
.ui.menu .electronics.active i,
.ui.menu .electronics:hover i {
  background-color: #00B1DB !important;
}
.ui.menu .travel.active i,
.ui.menu .travel:hover i {
  background-color: #61bb46 !important;
}
.ui.menu .parenting.active i,
.ui.menu .parenting:hover i {
  background-color: #94297B !important;
}
.ui.menu .pets.active i,
.ui.menu .pets:hover i {
  background-color: #01B5AA !important;
}
.ui.menu .play.active i,
.ui.menu .play:hover i {
  background-color: #ED3897 !important;
}
.ui.menu .wildcard.active i,
.ui.menu .wildcard:hover i {
  background-color: #9DA6AB !important;
}
header.main .ui.pointing.menu .invent.item.hover {
  border-left: 1px solid #DCDDDE !important;
  border-right: 1px solid #DCDDDE !important;
  background: #fbfbfb;
  z-index: 10000;
}
header.main .ui.pointing.menu .invent.item .mask {
  display: none;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0px;
  border-bottom: 1px solid #FBFBFB;
}
header.main .ui.pointing.menu .invent.item.hover .mask {
  display: block;
}

header.main .ui.pointing.menu .invent.item.hover + .invent.navigation.menu {
  display: block;
}
header.main .ui.pointing.menu .invent.item.hover:after {
  border-bottom: none;
  border-right: none;
  background-color: inherit;
  width: 0;
  height: 0;
}
/*******************************
          Modal Styles
*******************************/

.ui.modal {
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 3px 10px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 3px 10px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 3px 10px 1px rgba(0, 0, 0, 0.25);

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

/*--------------
  Close Button
---------------*/
.ui.modal > .close {
  cursor: pointer;
  position: absolute;
  font-size: 1.25em;
  color: #FFFFFF;
  top: -1em;
  right: -1.2em;
  background: #01B5AA;
  -moz-border-radius: 20em;
  -webkit-border-radius: 20em;
  border-radius: 20em;
  padding: 0.5em;
  width: 2em;
  height: 2em;
  opacity: 1;
}

/*--------------
     Header
---------------*/

.ui.modal > .header {
  background: white;
  padding: 1em 2em;
  -webkit-border-radius: 3px 3px 0px 0px;
  -moz-border-radius: 3px 3px 0px 0px;
  border-radius: 3px 3px 0px 0px;
  border-bottom: 1px solid #DCDDDE;
}
.ui.modal > .header h2 {
  margin: 0px;
  font-size: 1.5em;
  font-weight: normal;
  color: #231f20;
}


/*--------------
     Content
---------------*/

.ui.modal > .content {
  background: white;
}
.ui.nag {
  background-color: #5D6266;
}


/*******************************
         Question Game
*******************************/

.question.module {
  position: relative;
  overflow: hidden;

  margin: 35px 0px 0px;
  min-height: 150px;
  background-color: #FFFFFF;
  padding: 18px;
  text-align: left;

  border-radius: 5px;

  -webkit-box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.27);
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.27);  
}
.question.module .image {
  position: relative;
  background-color: #F5F5F5;
  float: left;
  width: 280px;
  height: 160px;
  border: 1px solid #E1E1E1;
}
.question.module .image .throbber {
  display: none;
}
.question.module .image img {
  opacity: 1;
  width: 280px;
  height: 160px;

  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
/* Loading Style */
.question.module .image.loading img {
  display: none;
}
.question.module .image.loading .throbber {
  display: block;
}

.question.module .content {
  position: relative;
  margin-left: 305px;
}
.question.module .content .position {
  position: absolute;
  top: 0px;
  right: 0px;

  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}
.question.module .content .influence {
  position: absolute;
  top: 20px;
  right: 0px;
  display: block;
  color: #768288;
}
.question.module .content hgroup {

}
.question.module .content .title {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #009FDA;
}
.question.module .content .tagline {
  font-size: 12px;
  line-height: 1.6;
  color: #777777;
}
.question.module .content > .question {
  display: block;
  padding-top: 10px;
  font-size: 13px;
}
.question.module .content .question p {
  font-size: 15px;
  color: #333333;
}
.question.module .content .question p b {
  color: #442359;
}
.question.module .content .question p em {
  color: #CD0000;
  font-weight: bold;
  font-style: normal;
}
.question.module .question .suggestion {
  position: relative;
  margin-top: 20px;
}
.question.module input[type="text"] {
  background-color: #FAFAFA;
  border: 1px solid #CCCCCC;
  border-radius: 3px 3px 3px 3px;

  height: 38px;
  width: 145px;
  font-size: 26px;

  padding-left: 10px;
  padding-right: 35px;
  color: #999999;

  -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1) inset;
}
.question.module input[type="text"]:focus {
  background-color: #FFFFFF;
  border-color: #AAAAAA;
  color: #555555;
}
/* Numeric Question */
.question.module .numeric.question .suggestion .currency {
  position: absolute;
  top: 0px;
  left: 10px;

  font-size: 26px;
  font-weight: bold;
  line-height: 40px;
}
.question.module .numeric.question input {
  padding-left: 35px;
}

.question.module .question .yes.button {
  position: absolute;
  top: 0px;
  left: 185px;
}
.question.module .question .skip.button {
  position: absolute;
  top: 8px;
  right: 0px;
}

/* Skip Form */
.question.module .content > .skip {
  position: relative;
  display: none;
  padding: 10px 0px 0px;
}
.question.module .skip h2 {
  font-size: 16px;
  font-weight: bold;
}
.question.module .skip .field {
  margin: 3px 0px;
}
.question.module .skip input[type="radio"] {

}
.question.module .skip input.custom {
  margin-top: 8px;
  padding: 0px 10px;
  font-size: 12px;
  width: 175px;
}
.question.module .skip label {
  font-size: 12px;
}
.question.module .skip .buttons {
  position: absolute;
  bottom: -2px;
  right: 0px;
}

/* Image Icons */
.question.module .image.warning img,
.question.module .image.success img {
  opacity: 0;
}
.question.module .image.warning {
  background: #FFFFFF url(//p1.q-static.com/images/icon-placeholder-warning.png?1419868763) no-repeat center center;
  border-color: #DDDDDD;
  
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1) inset;
}
.question.module .image.success {
  background: #FFFFFF url(//p1.q-static.com/images/icon-placeholder-success.png?1419868763) no-repeat center center;
  border-color: #DDDDDD;

  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1) inset;
}

/* Message  */
.question.module .message {
  display: none;
  margin-left: 305px;
}
.question.module .message h2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #555555;
}
.question.module .message p {
  margin: 10px 0px;
  font-size: 15px;
  color: #555555;
}
.question.module .message .button {
  display: block;
  margin: 10px 0px 0px;
}


/* Loading State */
.question.module .throbber {
  display: none;
}
.question.module .dimmer {
  margin-left: 310px;
  opacity: 0.95;
}
.question.module.loading > .throbber {
  display: block;
  left: 62%;
}
/* dont auto trigger image loader this is separate */
.question.module.loading .image .throbber {
  display: none;
}

.question.module.loading .image img {
  -webkit-transition: none;
  -moz-transition: none;
  -o-transition: none;
  -ms-transition: none;
  transition: none;
}

/* Init State */
.question.module.init .content {
  display: none;
}
.question.module.init .image {
  opacity: 0.4;
}
.question.module.init .throbber {
  left: 50%;
}

/*******************************
            Search
*******************************/

.ui.search .results .result.active .title {
  color: #D9499A;
}
/*
  Icon Font: fontcustom
*/

@font-face {
  font-family: "Glyph Icons";
  src: url("https://p1.q-static.com/quirky-fonts/v3/icons-glyph.eot");
  src: url("https://p1.q-static.com/quirky-fonts/v3/icons-glyph.eot?#iefix") format("embedded-opentype"),
       url("https://p1.q-static.com/quirky-fonts/v3/icons-glyph.woff") format("woff"),
       url("https://p1.q-static.com/quirky-fonts/v3/icons-glyph.ttf") format("truetype"),
       url("https://p1.q-static.com/quirky-fonts/v3/icons-glyph.svg#fontcustom") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Glyph Icons";
    src: url("https://p1.q-static.com/quirky-fonts/v3/icons-glyph.svg#fontcustom") format("svg");
  }
}

i.glyph.icon {
  font-family: 'Glyph Icons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: inherit;
  text-transform: none;
}

i.glyph.icon.down:before { content: "\f100"; }
i.glyph.icon.up:before { content: "\f101"; }

/*
  Icon Font: sketchy-icons
*/

@font-face {
  font-family: "sketchy-icons";
  src: url("https://p1.q-static.com/quirky-fonts/sketchy-icons_94616174436cebd3674a6b2365809101.eot");
  src: url("https://p1.q-static.com/quirky-fonts/sketchy-icons_94616174436cebd3674a6b2365809101.eot?#iefix") format("embedded-opentype"),
       url("https://p1.q-static.com/quirky-fonts/sketchy-icons_94616174436cebd3674a6b2365809101.woff") format("woff"),
       url("https://p1.q-static.com/quirky-fonts/sketchy-icons_94616174436cebd3674a6b2365809101.ttf") format("truetype"),
       url("https://p1.q-static.com/quirky-fonts/sketchy-icons_94616174436cebd3674a6b2365809101.svg#sketchy-icons") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "sketchy-icons";
    src: url("https://p1.q-static.com/quirky-fonts/sketchy-icons_94616174436cebd3674a6b2365809101.svg#sketchy-icons") format("svg");
  }
}

[data-icon]:before { content: attr(data-icon); }

[data-icon]:before,
i.sketchy.icon.add:before,
i.sketchy.icon.alert:before,
i.sketchy.icon.all:before,
i.sketchy.icon.arrow-eight:before,
i.sketchy.icon.arrow-eighteen:before,
i.sketchy.icon.arrow-eleven:before,
i.sketchy.icon.arrow-fifteen:before,
i.sketchy.icon.arrow-five:before,
i.sketchy.icon.arrow-four:before,
i.sketchy.icon.arrow-fourteen:before,
i.sketchy.icon.arrow-left:before,
i.sketchy.icon.arrow-nine:before,
i.sketchy.icon.arrow-one:before,
i.sketchy.icon.arrow-right:before,
i.sketchy.icon.arrow-seven:before,
i.sketchy.icon.arrow-six:before,
i.sketchy.icon.arrow-sixteen:before,
i.sketchy.icon.arrow-ten:before,
i.sketchy.icon.arrow-thirteen:before,
i.sketchy.icon.arrow-three:before,
i.sketchy.icon.arrow-twelve:before,
i.sketchy.icon.arrow-two:before,
i.sketchy.icon.browser:before,
i.sketchy.icon.bullet-one:before,
i.sketchy.icon.bullet-three:before,
i.sketchy.icon.bullet-two:before,
i.sketchy.icon.calendar:before,
i.sketchy.icon.camera:before,
i.sketchy.icon.caret-down:before,
i.sketchy.icon.caret-left:before,
i.sketchy.icon.caret-right:before,
i.sketchy.icon.caret-up:before,
i.sketchy.icon.categories:before,
i.sketchy.icon.category-apple:before,
i.sketchy.icon.category-electronics:before,
i.sketchy.icon.category-health:before,
i.sketchy.icon.category-home:before,
i.sketchy.icon.category-kitchen:before,
i.sketchy.icon.category-parenting:before,
i.sketchy.icon.category-pets:before,
i.sketchy.icon.category-play:before,
i.sketchy.icon.category-power:before,
i.sketchy.icon.category-travel:before,
i.sketchy.icon.category-wildcard:before,
i.sketchy.icon.checkmark:before,
i.sketchy.icon.checkmark-circle:before,
i.sketchy.icon.clock:before,
i.sketchy.icon.collection-ceo:before,
i.sketchy.icon.collection-diy:before,
i.sketchy.icon.collection-entertainer:before,
i.sketchy.icon.collection-fifteen:before,
i.sketchy.icon.collection-fifty:before,
i.sketchy.icon.collection-foodie:before,
i.sketchy.icon.collection-geek:before,
i.sketchy.icon.collection-health-nut:before,
i.sketchy.icon.collection-hundred:before,
i.sketchy.icon.collection-neat-freak:before,
i.sketchy.icon.collection-nomad:before,
i.sketchy.icon.collection-power-hungry:before,
i.sketchy.icon.collection-smart-home:before,
i.sketchy.icon.collection-thirty:before,
i.sketchy.icon.comment:before,
i.sketchy.icon.compare:before,
i.sketchy.icon.conversation:before,
i.sketchy.icon.dollar:before,
i.sketchy.icon.dont:before,
i.sketchy.icon.eval:before,
i.sketchy.icon.expert:before,
i.sketchy.icon.eyeball:before,
i.sketchy.icon.facebook:before,
i.sketchy.icon.facebook-filled:before,
i.sketchy.icon.gift:before,
i.sketchy.icon.googleplus:before,
i.sketchy.icon.googleplus-filled:before,
i.sketchy.icon.her:before,
i.sketchy.icon.him:before,
i.sketchy.icon.home:before,
i.sketchy.icon.how-cash:before,
i.sketchy.icon.how-influence:before,
i.sketchy.icon.how-manufactures:before,
i.sketchy.icon.how-submit:before,
i.sketchy.icon.how-votes:before,
i.sketchy.icon.idea:before,
i.sketchy.icon.improve:before,
i.sketchy.icon.influence:before,
i.sketchy.icon.information:before,
i.sketchy.icon.instagram:before,
i.sketchy.icon.invent:before,
i.sketchy.icon.ip-communication:before,
i.sketchy.icon.ip-electronics:before,
i.sketchy.icon.ip-engine:before,
i.sketchy.icon.ip-lighting:before,
i.sketchy.icon.ip-materials:before,
i.sketchy.icon.ip-power:before,
i.sketchy.icon.ip-printing:before,
i.sketchy.icon.ip-processes:before,
i.sketchy.icon.ip-processing:before,
i.sketchy.icon.ip-vehicles:before,
i.sketchy.icon.lastchance:before,
i.sketchy.icon.launch:before,
i.sketchy.icon.load:before,
i.sketchy.icon.location:before,
i.sketchy.icon.lock:before,
i.sketchy.icon.logo-ge:before,
i.sketchy.icon.logout:before,
i.sketchy.icon.magnify:before,
i.sketchy.icon.mail:before,
i.sketchy.icon.name:before,
i.sketchy.icon.newest:before,
i.sketchy.icon.pencil:before,
i.sketchy.icon.phase-design:before,
i.sketchy.icon.phase-enhance:before,
i.sketchy.icon.phase-name:before,
i.sketchy.icon.phase-research:before,
i.sketchy.icon.phase-style:before,
i.sketchy.icon.phase-tagline:before,
i.sketchy.icon.photos:before,
i.sketchy.icon.piechart:before,
i.sketchy.icon.pinterest:before,
i.sketchy.icon.pinterest-filled:before,
i.sketchy.icon.play:before,
i.sketchy.icon.plus:before,
i.sketchy.icon.portfolio:before,
i.sketchy.icon.price:before,
i.sketchy.icon.problem:before,
i.sketchy.icon.profile:before,
i.sketchy.icon.question:before,
i.sketchy.icon.question-circle:before,
i.sketchy.icon.quirky-logo:before,
i.sketchy.icon.quirky-shape:before,
i.sketchy.icon.quirky-shape-eight:before,
i.sketchy.icon.quirky-shape-five:before,
i.sketchy.icon.quirky-shape-four:before,
i.sketchy.icon.quirky-shape-one:before,
i.sketchy.icon.quirky-shape-seven:before,
i.sketchy.icon.quirky-shape-six:before,
i.sketchy.icon.quirky-shape-three:before,
i.sketchy.icon.quirky-shape-two:before,
i.sketchy.icon.rain-cloud:before,
i.sketchy.icon.retail-amazon:before,
i.sketchy.icon.retail-barnesandnoble:before,
i.sketchy.icon.retail-bedbathandbeyond:before,
i.sketchy.icon.retail-bestbuy:before,
i.sketchy.icon.retail-birchbox:before,
i.sketchy.icon.retail-fab:before,
i.sketchy.icon.retail-homedepot:before,
i.sketchy.icon.retail-microcenter:before,
i.sketchy.icon.retail-moma:before,
i.sketchy.icon.retail-qvc:before,
i.sketchy.icon.retail-thecontainerstore:before,
i.sketchy.icon.retail-thefancy:before,
i.sketchy.icon.retail-thinkgeek:before,
i.sketchy.icon.retail-urbanoutfitters:before,
i.sketchy.icon.retail-verizon:before,
i.sketchy.icon.retail-williamssonoma:before,
i.sketchy.icon.retail-zulity:before,
i.sketchy.icon.settings:before,
i.sketchy.icon.share:before,
i.sketchy.icon.shop:before,
i.sketchy.icon.slash:before,
i.sketchy.icon.threed:before,
i.sketchy.icon.timeline:before,
i.sketchy.icon.trash:before,
i.sketchy.icon.trophy:before,
i.sketchy.icon.tumblr:before,
i.sketchy.icon.tumblr-filled:before,
i.sketchy.icon.twitter:before,
i.sketchy.icon.twitter-filled:before,
i.sketchy.icon.vine:before,
i.sketchy.icon.vine-filled:before,
i.sketchy.icon.vote-down:before,
i.sketchy.icon.vote-up:before,
i.sketchy.icon.web-link:before,
i.sketchy.icon.x:before,
i.sketchy.icon.x-circle:before,
i.sketchy.icon.youtube:before,
i.sketchy.icon.youtube-filled:before,
i.sketchy.icon.youtube-play:before {
  display: inline-block;
  font-family: "sketchy-icons";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

i.sketchy.icon.add:before { content: "\f100"; }
i.sketchy.icon.alert:before { content: "\f101"; }
i.sketchy.icon.all:before { content: "\f102"; }
i.sketchy.icon.arrow-eight:before { content: "\f103"; }
i.sketchy.icon.arrow-eighteen:before { content: "\f104"; }
i.sketchy.icon.arrow-eleven:before { content: "\f105"; }
i.sketchy.icon.arrow-fifteen:before { content: "\f106"; }
i.sketchy.icon.arrow-five:before { content: "\f107"; }
i.sketchy.icon.arrow-four:before { content: "\f108"; }
i.sketchy.icon.arrow-fourteen:before { content: "\f109"; }
i.sketchy.icon.arrow-left:before { content: "\f10a"; }
i.sketchy.icon.arrow-nine:before { content: "\f10b"; }
i.sketchy.icon.arrow-one:before { content: "\f10c"; }
i.sketchy.icon.arrow-right:before { content: "\f10d"; }
i.sketchy.icon.arrow-seven:before { content: "\f10e"; }
i.sketchy.icon.arrow-six:before { content: "\f10f"; }
i.sketchy.icon.arrow-sixteen:before { content: "\f110"; }
i.sketchy.icon.arrow-ten:before { content: "\f111"; }
i.sketchy.icon.arrow-thirteen:before { content: "\f112"; }
i.sketchy.icon.arrow-three:before { content: "\f113"; }
i.sketchy.icon.arrow-twelve:before { content: "\f114"; }
i.sketchy.icon.arrow-two:before { content: "\f115"; }
i.sketchy.icon.browser:before { content: "\f116"; }
i.sketchy.icon.bullet-one:before { content: "\f117"; }
i.sketchy.icon.bullet-three:before { content: "\f118"; }
i.sketchy.icon.bullet-two:before { content: "\f119"; }
i.sketchy.icon.calendar:before { content: "\f11a"; }
i.sketchy.icon.camera:before { content: "\f11b"; }
i.sketchy.icon.caret-down:before { content: "\f11c"; }
i.sketchy.icon.caret-left:before { content: "\f11d"; }
i.sketchy.icon.caret-right:before { content: "\f11e"; }
i.sketchy.icon.caret-up:before { content: "\f11f"; }
i.sketchy.icon.categories:before { content: "\f120"; }
i.sketchy.icon.category-apple:before { content: "\f121"; }
i.sketchy.icon.category-electronics:before { content: "\f122"; }
i.sketchy.icon.category-health:before { content: "\f123"; }
i.sketchy.icon.category-home:before { content: "\f124"; }
i.sketchy.icon.category-kitchen:before { content: "\f125"; }
i.sketchy.icon.category-parenting:before { content: "\f126"; }
i.sketchy.icon.category-pets:before { content: "\f127"; }
i.sketchy.icon.category-play:before { content: "\f128"; }
i.sketchy.icon.category-power:before { content: "\f129"; }
i.sketchy.icon.category-travel:before { content: "\f12a"; }
i.sketchy.icon.category-wildcard:before { content: "\f12b"; }
i.sketchy.icon.checkmark:before { content: "\f12c"; }
i.sketchy.icon.checkmark-circle:before { content: "\f12d"; }
i.sketchy.icon.clock:before { content: "\f12e"; }
i.sketchy.icon.collection-ceo:before { content: "\f12f"; }
i.sketchy.icon.collection-diy:before { content: "\f130"; }
i.sketchy.icon.collection-entertainer:before { content: "\f131"; }
i.sketchy.icon.collection-fifteen:before { content: "\f132"; }
i.sketchy.icon.collection-fifty:before { content: "\f133"; }
i.sketchy.icon.collection-foodie:before { content: "\f134"; }
i.sketchy.icon.collection-geek:before { content: "\f135"; }
i.sketchy.icon.collection-health-nut:before { content: "\f136"; }
i.sketchy.icon.collection-hundred:before { content: "\f137"; }
i.sketchy.icon.collection-neat-freak:before { content: "\f138"; }
i.sketchy.icon.collection-nomad:before { content: "\f139"; }
i.sketchy.icon.collection-power-hungry:before { content: "\f13a"; }
i.sketchy.icon.collection-smart-home:before { content: "\f13b"; }
i.sketchy.icon.collection-thirty:before { content: "\f13c"; }
i.sketchy.icon.comment:before { content: "\f13d"; }
i.sketchy.icon.compare:before { content: "\f13e"; }
i.sketchy.icon.conversation:before { content: "\f13f"; }
i.sketchy.icon.dollar:before { content: "\f140"; }
i.sketchy.icon.dont:before { content: "\f141"; }
i.sketchy.icon.eval:before { content: "\f142"; }
i.sketchy.icon.expert:before { content: "\f143"; }
i.sketchy.icon.eyeball:before { content: "\f144"; }
i.sketchy.icon.facebook:before { content: "\f145"; }
i.sketchy.icon.facebook-filled:before { content: "\f146"; }
i.sketchy.icon.gift:before { content: "\f147"; }
i.sketchy.icon.googleplus:before { content: "\f148"; }
i.sketchy.icon.googleplus-filled:before { content: "\f149"; }
i.sketchy.icon.her:before { content: "\f1b0"; }
i.sketchy.icon.him:before { content: "\f1b1"; }
i.sketchy.icon.home:before { content: "\f14a"; }
i.sketchy.icon.how-cash:before { content: "\f14b"; }
i.sketchy.icon.how-influence:before { content: "\f14c"; }
i.sketchy.icon.how-manufactures:before { content: "\f14d"; }
i.sketchy.icon.how-submit:before { content: "\f14e"; }
i.sketchy.icon.how-votes:before { content: "\f14f"; }
i.sketchy.icon.idea:before { content: "\f150"; }
i.sketchy.icon.improve:before { content: "\f151"; }
i.sketchy.icon.influence:before { content: "\f152"; }
i.sketchy.icon.information:before { content: "\f153"; }
i.sketchy.icon.instagram:before { content: "\f154"; }
i.sketchy.icon.invent:before { content: "\f155"; }
i.sketchy.icon.ip-communication:before { content: "\f156"; }
i.sketchy.icon.ip-electronics:before { content: "\f157"; }
i.sketchy.icon.ip-engine:before { content: "\f158"; }
i.sketchy.icon.ip-lighting:before { content: "\f159"; }
i.sketchy.icon.ip-materials:before { content: "\f15a"; }
i.sketchy.icon.ip-power:before { content: "\f15b"; }
i.sketchy.icon.ip-printing:before { content: "\f15c"; }
i.sketchy.icon.ip-processes:before { content: "\f15d"; }
i.sketchy.icon.ip-processing:before { content: "\f15e"; }
i.sketchy.icon.ip-vehicles:before { content: "\f15f"; }
i.sketchy.icon.lastchance:before { content: "\f1af"; }
i.sketchy.icon.launch:before { content: "\f160"; }
i.sketchy.icon.load:before { content: "\f161"; }
i.sketchy.icon.location:before { content: "\f162"; }
i.sketchy.icon.lock:before { content: "\f163"; }
i.sketchy.icon.logo-ge:before { content: "\f164"; }
i.sketchy.icon.logout:before { content: "\f165"; }
i.sketchy.icon.magnify:before { content: "\f166"; }
i.sketchy.icon.mail:before { content: "\f167"; }
i.sketchy.icon.name:before { content: "\f168"; }
i.sketchy.icon.newest:before { content: "\f169"; }
i.sketchy.icon.pencil:before { content: "\f16a"; }
i.sketchy.icon.phase-design:before { content: "\f16b"; }
i.sketchy.icon.phase-enhance:before { content: "\f16c"; }
i.sketchy.icon.phase-name:before { content: "\f16d"; }
i.sketchy.icon.phase-research:before { content: "\f16e"; }
i.sketchy.icon.phase-style:before { content: "\f16f"; }
i.sketchy.icon.phase-tagline:before { content: "\f170"; }
i.sketchy.icon.photos:before { content: "\f171"; }
i.sketchy.icon.piechart:before { content: "\f172"; }
i.sketchy.icon.pinterest:before { content: "\f173"; }
i.sketchy.icon.pinterest-filled:before { content: "\f174"; }
i.sketchy.icon.play:before { content: "\f175"; }
i.sketchy.icon.plus:before { content: "\f176"; }
i.sketchy.icon.portfolio:before { content: "\f177"; }
i.sketchy.icon.price:before { content: "\f178"; }
i.sketchy.icon.problem:before { content: "\f179"; }
i.sketchy.icon.profile:before { content: "\f17a"; }
i.sketchy.icon.question:before { content: "\f17b"; }
i.sketchy.icon.question-circle:before { content: "\f17c"; }
i.sketchy.icon.quirky-logo:before { content: "\f17d"; }
i.sketchy.icon.quirky-shape:before { content: "\f17e"; }
i.sketchy.icon.quirky-shape-eight:before { content: "\f17f"; }
i.sketchy.icon.quirky-shape-five:before { content: "\f180"; }
i.sketchy.icon.quirky-shape-four:before { content: "\f181"; }
i.sketchy.icon.quirky-shape-one:before { content: "\f182"; }
i.sketchy.icon.quirky-shape-seven:before { content: "\f183"; }
i.sketchy.icon.quirky-shape-six:before { content: "\f184"; }
i.sketchy.icon.quirky-shape-three:before { content: "\f185"; }
i.sketchy.icon.quirky-shape-two:before { content: "\f186"; }
i.sketchy.icon.rain-cloud:before { content: "\f187"; }
i.sketchy.icon.retail-amazon:before { content: "\f188"; }
i.sketchy.icon.retail-barnesandnoble:before { content: "\f189"; }
i.sketchy.icon.retail-bedbathandbeyond:before { content: "\f18a"; }
i.sketchy.icon.retail-bestbuy:before { content: "\f18b"; }
i.sketchy.icon.retail-birchbox:before { content: "\f18c"; }
i.sketchy.icon.retail-fab:before { content: "\f18d"; }
i.sketchy.icon.retail-homedepot:before { content: "\f18e"; }
i.sketchy.icon.retail-microcenter:before { content: "\f18f"; }
i.sketchy.icon.retail-moma:before { content: "\f190"; }
i.sketchy.icon.retail-qvc:before { content: "\f191"; }
i.sketchy.icon.retail-thecontainerstore:before { content: "\f192"; }
i.sketchy.icon.retail-thefancy:before { content: "\f193"; }
i.sketchy.icon.retail-thinkgeek:before { content: "\f194"; }
i.sketchy.icon.retail-urbanoutfitters:before { content: "\f195"; }
i.sketchy.icon.retail-verizon:before { content: "\f196"; }
i.sketchy.icon.retail-williamssonoma:before { content: "\f197"; }
i.sketchy.icon.retail-zulity:before { content: "\f198"; }
i.sketchy.icon.settings:before { content: "\f199"; }
i.sketchy.icon.share:before { content: "\f19a"; }
i.sketchy.icon.shop:before { content: "\f19b"; }
i.sketchy.icon.slash:before { content: "\f19c"; }
i.sketchy.icon.threed:before { content: "\f19d"; }
i.sketchy.icon.timeline:before { content: "\f19e"; }
i.sketchy.icon.trash:before { content: "\f19f"; }
i.sketchy.icon.trophy:before { content: "\f1a0"; }
i.sketchy.icon.tumblr:before { content: "\f1a1"; }
i.sketchy.icon.tumblr-filled:before { content: "\f1a2"; }
i.sketchy.icon.twitter:before { content: "\f1a3"; }
i.sketchy.icon.twitter-filled:before { content: "\f1a4"; }
i.sketchy.icon.vine:before { content: "\f1a5"; }
i.sketchy.icon.vine-filled:before { content: "\f1a6"; }
i.sketchy.icon.vote-down:before { content: "\f1a7"; }
i.sketchy.icon.vote-up:before { content: "\f1a8"; }
i.sketchy.icon.web-link:before { content: "\f1a9"; }
i.sketchy.icon.x:before { content: "\f1aa"; }
i.sketchy.icon.x-circle:before { content: "\f1ab"; }
i.sketchy.icon.youtube:before { content: "\f1ac"; }
i.sketchy.icon.youtube-filled:before { content: "\f1ad"; }
i.sketchy.icon.youtube-play:before { content: "\f1ae"; }


/*
 * Font Custom: semantic css
 */

@font-face {
  font-family: 'Sketchy Icons';
  src: url("https://p1.q-static.com/quirky-fonts/v3/sketchy-icons_73d1dbb83d835cd4a754a6dd1d112891.eot");
  src:
    url("https://p1.q-static.com/quirky-fonts/v3/sketchy-icons_73d1dbb83d835cd4a754a6dd1d112891.eot?#iefix") format('embedded-opentype'),
    url("https://p1.q-static.com/quirky-fonts/v3/sketchy-icons_73d1dbb83d835cd4a754a6dd1d112891.woff") format('woff'),
    url("https://p1.q-static.com/quirky-fonts/v3/sketchy-icons_73d1dbb83d835cd4a754a6dd1d112891.ttf") format('truetype'),
    url("https://p1.q-static.com/quirky-fonts/v3/sketchy-icons_73d1dbb83d835cd4a754a6dd1d112891.svg#icons") format('svg')
  ;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: inherit;
  text-transform: none;
}

i.sketchy.icon {
  font-family: 'Sketchy Icons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-decoration: inherit;
  text-transform: none;
}

i.sketchy.icon.add:before { content: "\f100"; }
i.sketchy.icon.alert:before { content: "\f101"; }
i.sketchy.icon.all:before { content: "\f102"; }
i.sketchy.icon.arrow.eight:before { content: "\f103"; }
i.sketchy.icon.arrow.eighteen:before { content: "\f104"; }
i.sketchy.icon.arrow.eleven:before { content: "\f105"; }
i.sketchy.icon.arrow.fifteen:before { content: "\f106"; }
i.sketchy.icon.arrow.five:before { content: "\f107"; }
i.sketchy.icon.arrow.four:before { content: "\f108"; }
i.sketchy.icon.arrow.fourteen:before { content: "\f109"; }
i.sketchy.icon.arrow.left:before { content: "\f10a"; }
i.sketchy.icon.arrow.nine:before { content: "\f10b"; }
i.sketchy.icon.arrow.one:before { content: "\f10c"; }
i.sketchy.icon.arrow.right:before { content: "\f10d"; }
i.sketchy.icon.arrow.seven:before { content: "\f10e"; }
i.sketchy.icon.arrow.six:before { content: "\f10f"; }
i.sketchy.icon.arrow.sixteen:before { content: "\f110"; }
i.sketchy.icon.arrow.ten:before { content: "\f111"; }
i.sketchy.icon.arrow.thirteen:before { content: "\f112"; }
i.sketchy.icon.arrow.three:before { content: "\f113"; }
i.sketchy.icon.arrow.twelve:before { content: "\f114"; }
i.sketchy.icon.arrow.two:before { content: "\f115"; }
i.sketchy.icon.browser:before { content: "\f116"; }
i.sketchy.icon.bullet.one:before { content: "\f117"; }
i.sketchy.icon.bullet.three:before { content: "\f118"; }
i.sketchy.icon.bullet.two:before { content: "\f119"; }
i.sketchy.icon.calendar:before { content: "\f11a"; }
i.sketchy.icon.camera:before { content: "\f11b"; }
i.sketchy.icon.caret.down:before { content: "\f11c"; }
i.sketchy.icon.caret.left:before { content: "\f11d"; }
i.sketchy.icon.caret.right:before { content: "\f11e"; }
i.sketchy.icon.caret.up:before { content: "\f11f"; }
i.sketchy.icon.categories:before { content: "\f120"; }
i.sketchy.icon.category.apple:before { content: "\f121"; }
i.sketchy.icon.category.electronics:before { content: "\f122"; }
i.sketchy.icon.category.health:before { content: "\f123"; }
i.sketchy.icon.category.home:before { content: "\f124"; }
i.sketchy.icon.category.kitchen:before { content: "\f125"; }
i.sketchy.icon.category.parenting:before { content: "\f126"; }
i.sketchy.icon.category.pets:before { content: "\f127"; }
i.sketchy.icon.category.play:before { content: "\f128"; }
i.sketchy.icon.category.power:before { content: "\f129"; }
i.sketchy.icon.category.travel:before { content: "\f12a"; }
i.sketchy.icon.category.wildcard:before { content: "\f12b"; }
i.sketchy.icon.checkmark:before { content: "\f12d"; }
i.sketchy.icon.checkmark.circle:before { content: "\f12c"; }
i.sketchy.icon.clock:before { content: "\f12e"; }
i.sketchy.icon.collection.ceo:before { content: "\f177"; }
i.sketchy.icon.collection.diy:before { content: "\f130"; }
i.sketchy.icon.collection.entertainer:before { content: "\f131"; }
i.sketchy.icon.collection.fifteen:before { content: "\f132"; }
i.sketchy.icon.collection.fifty:before { content: "\f133"; }
i.sketchy.icon.collection.foodie:before { content: "\f134"; }
i.sketchy.icon.collection.geek:before { content: "\f135"; }
i.sketchy.icon.collection.health.nut:before { content: "\f136"; }
i.sketchy.icon.collection.hundred:before { content: "\f137"; }
i.sketchy.icon.collection.neat.freak:before { content: "\f138"; }
i.sketchy.icon.collection.nomad:before { content: "\f139"; }
i.sketchy.icon.collection.power.hungry:before { content: "\f13a"; }
i.sketchy.icon.collection.smart.home:before { content: "\f13b"; }
i.sketchy.icon.collection.thirty:before { content: "\f13c"; }
i.sketchy.icon.comment:before { content: "\f13d"; }
i.sketchy.icon.compare:before { content: "\f13e"; }
i.sketchy.icon.conversation:before { content: "\f13f"; }
i.sketchy.icon.dollar:before { content: "\f140"; }
i.sketchy.icon.dont:before { content: "\f141"; }
i.sketchy.icon.eval:before { content: "\f142"; }
i.sketchy.icon.expert:before { content: "\f143"; }
i.sketchy.icon.eyeball:before { content: "\f144"; }
i.sketchy.icon.facebook:before { content: "\f146"; }
i.sketchy.icon.facebook.filled:before { content: "\f145"; }
i.sketchy.icon.gift:before { content: "\f147"; }
i.sketchy.icon.googleplus:before { content: "\f149"; }
i.sketchy.icon.googleplus.filled:before { content: "\f148"; }
i.sketchy.icon.home:before { content: "\f14a"; }
i.sketchy.icon.how.cash:before { content: "\f14b"; }
i.sketchy.icon.how.influence:before { content: "\f14c"; }
i.sketchy.icon.how.manufactures:before { content: "\f14d"; }
i.sketchy.icon.how.submit:before { content: "\f14e"; }
i.sketchy.icon.how.votes:before { content: "\f14f"; }
i.sketchy.icon.idea:before { content: "\f150"; }
i.sketchy.icon.improve:before { content: "\f151"; }
i.sketchy.icon.influence:before { content: "\f152"; }
i.sketchy.icon.information:before { content: "\f153"; }
i.sketchy.icon.instagram:before { content: "\f154"; }
i.sketchy.icon.invent:before { content: "\f155"; }
i.sketchy.icon.ip.communication:before { content: "\f156"; }
i.sketchy.icon.ip.electronics:before { content: "\f157"; }
i.sketchy.icon.ip.engine:before { content: "\f158"; }
i.sketchy.icon.ip.lighting:before { content: "\f159"; }
i.sketchy.icon.ip.materials:before { content: "\f15a"; }
i.sketchy.icon.ip.power:before { content: "\f15b"; }
i.sketchy.icon.ip.printing:before { content: "\f15c"; }
i.sketchy.icon.ip.processes:before { content: "\f15d"; }
i.sketchy.icon.ip.processing:before { content: "\f15e"; }
i.sketchy.icon.ip.vehicles:before { content: "\f15f"; }
i.sketchy.icon.launch:before { content: "\f160"; }
i.sketchy.icon.load:before { content: "\f161"; }
i.sketchy.icon.location:before { content: "\f162"; }
i.sketchy.icon.lock:before { content: "\f163"; }
i.sketchy.icon.logo.ge:before { content: "\f164"; }
i.sketchy.icon.logout:before { content: "\f165"; }
i.sketchy.icon.magnify:before { content: "\f166"; }
i.sketchy.icon.mail:before { content: "\f167"; }
i.sketchy.icon.name:before { content: "\f168"; }
i.sketchy.icon.newest:before { content: "\f169"; }
i.sketchy.icon.pencil:before { content: "\f16a"; }
i.sketchy.icon.phase.design:before { content: "\f16b"; }
i.sketchy.icon.phase.enhance:before { content: "\f16c"; }
i.sketchy.icon.phase.name:before { content: "\f16d"; }
i.sketchy.icon.phase.research:before { content: "\f16e"; }
i.sketchy.icon.phase.style:before { content: "\f16f"; }
i.sketchy.icon.phase.tagline:before { content: "\f170"; }
i.sketchy.icon.photos:before { content: "\f171"; }
i.sketchy.icon.piechart:before { content: "\f172"; }
i.sketchy.icon.pinterest:before { content: "\f174"; }
i.sketchy.icon.pinterest.filled:before { content: "\f173"; }
i.sketchy.icon.play:before { content: "\f175"; }
i.sketchy.icon.plus:before { content: "\f176"; }
i.sketchy.icon.portfolio:before { content: "\f177"; }
i.sketchy.icon.price:before { content: "\f178"; }
i.sketchy.icon.problem:before { content: "\f179"; }
i.sketchy.icon.profile:before { content: "\f17a"; }
i.sketchy.icon.question:before { content: "\f17c"; }
i.sketchy.icon.question.circle:before { content: "\f17b"; }
i.sketchy.icon.quirky.logo:before { content: "\f17d"; }
i.sketchy.icon.quirky.shape:before { content: "\f186"; }
i.sketchy.icon.quirky.shape.eight:before { content: "\f17e"; }
i.sketchy.icon.quirky.shape.five:before { content: "\f17f"; }
i.sketchy.icon.quirky.shape.four:before { content: "\f180"; }
i.sketchy.icon.quirky.shape.one:before { content: "\f181"; }
i.sketchy.icon.quirky.shape.seven:before { content: "\f182"; }
i.sketchy.icon.quirky.shape.six:before { content: "\f183"; }
i.sketchy.icon.quirky.shape.three:before { content: "\f184"; }
i.sketchy.icon.quirky.shape.two:before { content: "\f185"; }
i.sketchy.icon.rain.cloud:before { content: "\f187"; }
i.sketchy.icon.retail.amazon:before { content: "\f188"; }
i.sketchy.icon.retail.barnesandnoble:before { content: "\f189"; }
i.sketchy.icon.retail.bedbathandbeyond:before { content: "\f18a"; }
i.sketchy.icon.retail.bestbuy:before { content: "\f18b"; }
i.sketchy.icon.retail.birchbox:before { content: "\f18c"; }
i.sketchy.icon.retail.fab:before { content: "\f18d"; }
i.sketchy.icon.retail.homedepot:before { content: "\f18e"; }
i.sketchy.icon.retail.microcenter:before { content: "\f18f"; }
i.sketchy.icon.retail.moma:before { content: "\f190"; }
i.sketchy.icon.retail.qvc:before { content: "\f191"; }
i.sketchy.icon.retail.thecontainerstore:before { content: "\f192"; }
i.sketchy.icon.retail.thefancy:before { content: "\f193"; }
i.sketchy.icon.retail.thinkgeek:before { content: "\f194"; }
i.sketchy.icon.retail.urbanoutfitters:before { content: "\f195"; }
i.sketchy.icon.retail.verizon:before { content: "\f196"; }
i.sketchy.icon.retail.williamssonoma:before { content: "\f197"; }
i.sketchy.icon.retail.zulity:before { content: "\f198"; }
i.sketchy.icon.settings:before { content: "\f199"; }
i.sketchy.icon.share:before { content: "\f19a"; }
i.sketchy.icon.shop:before { content: "\f19b"; }
i.sketchy.icon.slash:before { content: "\f19c"; }
i.sketchy.icon.threed:before { content: "\f19d"; }
i.sketchy.icon.timeline:before { content: "\f19e"; }
i.sketchy.icon.trash:before { content: "\f19f"; }
i.sketchy.icon.trophy:before { content: "\f1a0"; }
i.sketchy.icon.tumblr:before { content: "\f1a2"; }
i.sketchy.icon.tumblr.filled:before { content: "\f1a1"; }
i.sketchy.icon.twitter:before { content: "\f1a4"; }
i.sketchy.icon.twitter.filled:before { content: "\f1a3"; }
i.sketchy.icon.vine:before { content: "\f1a6"; }
i.sketchy.icon.vine.filled:before { content: "\f1a5"; }
i.sketchy.icon.vote.down:before { content: "\f1a7"; }
i.sketchy.icon.vote.up:before { content: "\f1a8"; }
i.sketchy.icon.web.link:before { content: "\f1a9"; }
i.sketchy.icon.x:before { content: "\f1ab"; }
i.sketchy.icon.x.circle:before { content: "\f1aa"; }
i.sketchy.icon.youtube:before { content: "\f1ae"; }
i.sketchy.icon.youtube.filled:before { content: "\f1ac"; }
i.sketchy.icon.youtube.play:before { content: "\f1ad"; }


/*------------------
    Glyph Sizing
-------------------*/

i.sketchy.circular.icon,
i.sketchy.square.icon {
  padding: 0.35em !important;
}

/*
 * # Quirky Card
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */

/*******************************
             Card
*******************************/

.ui.cards .card,
.ui.card {
  position: relative;
  display: block;
  
  margin: 1em 0em;
  background-color: #FFFFFF;

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  
  -webkit-box-shadow: 0px 0px 0px 1px #DCDDDE;
  -moz-box-shadow: 0px 0px 0px 1px #DCDDDE;
  box-shadow: 0px 0px 0px 1px #DCDDDE;
}
.ui.card:first-child {
  margin-top: 0em;
}
.ui.card:last-child {
  margin-bottom: 0em;
}

/*--------------
     Overlay
---------------*/

.ui.cards .card .dimmer,
.ui.card .dimmer {
  background-color: rgba(80, 80, 80, 0.6);
  
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  z-index: 100;
}
.ui.cards .card .dimmer .close,
.ui.card .dimmer .close {    
  position: absolute;
  top: 0.5em;
  right: 0.5em;

  margin: 0em;
  width: auto;
  height: auto;
  
  font-size: 2em;
  color: #FFFFFF;
}
.ui.cards .card .dimmer .buttons,
.ui.card .dimmer .buttons {
  display: inline-block;
  background-color: #FFFFFF;
  width: 80%;
  padding: 0.6em;
  border-radius: 4px;
}
.ui.cards .card .dimmer .buttons > *,
.ui.card .dimmer .buttons > * {
  display: inline-block;
  margin-left: 2%;
  width: 48%;
}
.ui.cards .card .dimmer .buttons > :first-child,
.ui.card .dimmer .buttons > :first-child {
  margin-left: 0em;
}

/*--------------
      Meta
---------------*/

.ui.cards .card > .meta,
.ui.card > .meta {
  clear: both;
  border-top: 1px solid #EDEEEE;
  padding: 0.875em;
  color: #9DA6AB;
}
.ui.cards .card > .meta:after,
.ui.card > .meta:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/*--------------
    Progress
---------------*/

.ui.cards .card > .progress,
.ui.card > .progress {
  background-color: transparent;
  height: 5px;
  top: 0px;
  z-index: 2;
  -webkit-border-radius: 0px 0px 4px 4px;
  -moz-border-radius: 0px 0px 4px 4px;
  border-radius: 0px 0px 4px 4px;
}
.ui.cards .card > .progress .bar,
.ui.card > .progress .bar {
  width: 0%;
  height: 5px;

  -webkit-transition: background 0.2s ease;
  -moz-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  -ms-transition: background 0.2s ease;
  transition: background 0.2s ease;
}


/*******************************
            Plural
*******************************/

.ui.cards {
  display: block;
  margin: 0em -0.5em -1em;
}
.ui.cards:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.ui.cards .card {
  display: inline-block;
  margin: 0em 0.5em 1em;
}


/*******************************
            Variations
*******************************/


/*--------------
     Fluid
---------------*/

.ui.fluid.card {
  display: block;
  width: 100% !important;
}

/* Two */
.two.ui.cards {
  margin: 0% !important;
  padding: 0% !important;
}
.two.ui.cards .card {
  float: left !important;
  margin: 0% 1.5% 3% !important;
  width: 48.5% !important;
}
.two.ui.cards .card:nth-child(2n+1) {
  clear: left;
  margin-left: 0% !important;
}
.two.ui.cards .card:nth-child(2n) {
  margin-right: 0% !important;
}

@media only screen and (max-width: 998px) {
  .two.ui.cards {
    margin: 0% auto;
  }
  .two.ui.cards .card {
    width: 100% !important;
    margin: 0% 0% 2% !important;
  }
}

/* Three */
.three.ui.cards {
  margin: 0% !important;
  padding: 0% !important;
}
.three.ui.cards .card {
  float: left !important;
  margin: 0% 1% 2% !important;
  width: 32% !important;
}
.three.ui.cards .card:nth-child(3n+1) {
  clear: left;
  margin-left: 0% !important;
}
.three.ui.cards .card:nth-child(3n) {
  margin-right: 0% !important;
}

@media only screen and (max-width: 998px) {
  .three.ui.cards {
    margin: 0% auto;
  }
  .three.ui.cards .card {
    width: 100% !important;
    margin: 0% 0% 2% !important;
  }
}






.ui.feed .label img {
  width: 50px;
}

.ui.feed .content .extra.text img {
  display: block;
  margin-bottom: 0.5em;
}
/*
 * # Quirky Idea Card
 * http://github.com/quirkyinc/quirky
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
           Idea Card
*******************************/


/*--------------
      Card
---------------*/

.ui.idea.cards .card,
.ui.idea.card {
  width: 388px;
  color: #5d6266;
}

/* Stacked Style */
.ui.idea.cards .card:after,
.ui.idea.cards .card:before,
.ui.idea.card:after,
.ui.idea.card:before {
  position: absolute;
  visibility: visible;
  content: '';

  bottom: 2px;
  left: 0%;

  width: 100%;
  height: 2px;

  background-color: rgba(0, 0, 0, 0.03);

}
.ui.idea.cards .card:before,
.ui.idea.card:before {
  bottom: 0px;

  border-top: medium none;
  background-color: rgba(0, 0, 0, 0.03);

  -webkit-border-radius: 0px 0px 3px 3px;
  -moz-border-radius: 0px 0px 3px 3px;
  border-radius: 0px 0px 3px 3px;
}
/*--------------
     Idea
---------------*/

.ui.idea.cards .card > .idea,
.ui.idea.card > .idea {
  height: 145px;
  padding: 1em;
}

/*--------------
     Content
---------------*/

.ui.idea.cards .card > .idea .header,
.ui.idea.card > .idea .header {
  margin: 0em 0em 0.5em 0em;
  line-height: 1;
  font-size: 1.5em;
  color: rgba(93, 98, 102, 1);
}

.ui.idea.cards .card > .idea .description,
.ui.idea.card > .idea .description {
  line-height: 1.35;
}

.ui.idea.cards .card > .idea .header,
.ui.idea.card > .idea .header,
.ui.idea.cards .card > .idea .description,
.ui.idea.card > .idea .description {
  word-wrap: break-word;
}

/*--------------
     Popup
---------------*/

.ui.idea.cards .card .popup,
.ui.idea.card .popup {
  max-width: 40%;
}

/*--------------
     Images
---------------*/


.ui.idea.cards .card > .idea .image,
.ui.idea.card > .idea .image {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;

  float: right;
  margin: 0em 0em 5% 5%;
  padding: 5px;

  width: 40%;
  max-width: 180px;

  background-color: #FFFFFF;
  border: 1px solid #D9DCDD;

  -moz-box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 0px 4px rgba(0, 0, 0, 0.1);

  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.ui.idea.cards .card > .idea .image img,
.ui.idea.card > .idea .image img {
  display: block;
  width: 100%;
}


/*--------------
     Vote 
---------------*/


.ui.cards .card .vote.corner.label,
.ui.card .vote.corner.label {
  opacity: 0;
  font-size: 1em;
  background-color: transparent;
  color: #FFFFFF;

  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.ui.cards .card .vote.corner.label .icon,
.ui.card .vote.corner.label .icon {
  font-size: 0.9em;
}
.ui.cards .card .vote.corner.label:after,
.ui.card .vote.corner.label:after {
  border-right-color: #5BBD72
}


/*--------------
      Meta
---------------*/

/* types of metadata */
.ui.idea.cards .card > .meta .countdown,
.ui.idea.card > .meta .countdown {
  float: left;
}
.ui.idea.cards .card > .meta .votes,
.ui.idea.card > .meta .votes {
  float: right;
}


/*******************************
            States
*******************************/


/* Voted */
.ui.cards .card.voted .vote.corner.label,
.ui.voted.card .vote.corner.label {
  opacity: 1;
}


@media only screen and (max-width: 998px) {
  
.ui.idea.cards .card > .idea .image,
.ui.idea.card > .idea .image {
  max-width: 180px;
}

}

/*
 * # Quirky Product Card
 * http://github.com/quirkyinc/quirky
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
           Product Card
*******************************/


/*--------------
      Card
---------------*/

.ui.product.cards .card,
.ui.product.card {
  width: auto;
  color: #5D6266;
}

/* Stacked Style */
.ui.product.cards .card:after,
.ui.product.cards .card:before,
.ui.product.card:after,
.ui.product.card:before {
  position: absolute;
  visibility: visible;
  content: '';

  bottom: 2px;
  left: 0%;

  width: 100%;
  height: 2px;

  background-color: rgba(0, 0, 0, 0.03);

}
.ui.product.cards .card:before,
.ui.product.card:before {
  bottom: 0px;

  border-top: medium none;
  background-color: rgba(0, 0, 0, 0.03);

  -webkit-border-radius: 0px 0px 3px 3px;
  -moz-border-radius: 0px 0px 3px 3px;
  border-radius: 0px 0px 3px 3px;
}

/*--------------
     Images
---------------*/

.ui.product.cards .card > .product .image,
.ui.product.card > .product .image {
  width: 100%;
}
.ui.product.cards .card > .product .image img,
.ui.product.card > .product .image img {
  display: block;
  width: 100%;

  -webkit-border-radius: 3px 3px 0px 0px;
  -moz-border-radius: 3px 3px 0px 0px;
  border-radius: 3px 3px 0px 0px;
}


/*--------------
     Content
---------------*/

.ui.product.cards .card > .product .header,
.ui.product.card > .product .header {
  margin: 1rem;
  line-height: 1;
  font-size: 1.5em;
  color: rgba(93, 98, 102, 1);
}

.ui.product.cards .card > .product .description,
.ui.product.card > .product .description {
  margin: 1rem;
  min-height: 2.8em;
  line-height: 1.4;
}
.ui.product.cards .card > .product .tagline,
.ui.product.card > .product .tagline {
  margin: -0.75rem 1rem 1rem;
  min-height: 1.4em;
  line-height: 1.4;
  color: #9DA6AB;
}

/*--------------
   Statistics
---------------*/

.ui.product.cards .card .statistic,
.ui.product.card .statistic {
  width: 35%;
  float: left;
}
.ui.product.cards .card .statistic .number,
.ui.product.card .statistic .number {
  font-size: 1.5em;
  font-weight: bold;
  color: #5D6266;
}
.ui.product.cards .card .statistic .label,
.ui.product.card .statistic .label {
  font-style: italic;
  font-size: 0.9em;
}
.ui.product.cards .card .statistic + .projects,
.ui.product.card .statistic + .projects {
  margin-left: 100px;
}

/*--------------
     Projects
---------------*/

.ui.product.cards .card .meta .projects,
.ui.product.card .meta .projects {
  width: 65%;
  min-height: 130px;
  float: left;
  margin: 0;
}

.ui.product.cards .card .projects .project,
.ui.product.card .projects .project {
  float: left;
  width: 46%;
  margin: 0% 2%;

  font-size: 0.9rem;
  line-height: 2;
  color: #DCDDDE;
}

.ui.product.cards .card .meta .projects .project .icon,
.ui.product.card .meta .projects .project .icon {
  float: none;
  font-style: normal;
  color: #DCDDDE;
  margin: 0;
  font-size: 0.9rem;
  font-weight: normal;
}

.ui.product.cards .card .meta .projects a.project,
.ui.product.card .meta .projects a.project {
  opacity: 0.8;

  -webkit-transition: opacity 0.2s ease;
  -moz-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  -ms-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.ui.product.cards .card .meta .projects a.project:hover,
.ui.product.card .meta .projects a.project:hover {
  cursor: pointer;
  opacity: 1;
}

/*--------------
     Progress
---------------*/

.ui.product.cards .card .progress,
.ui.product.card .progress {
  height: 3px;
}

.ui.product.cards .card .progress .bar,
.ui.product.card .progress .bar {
  width: 100%;
}



/*--------------
     Overlay
---------------*/

.ui.product.cards .card .dimmer .buttons,
.ui.product.card .dimmer .buttons {
  width: 75%;
  padding: 0em 0.6em;
}

.ui.product.cards .card .dimmer .button,
.ui.product.card .dimmer .button {
  display: block;
  width: 100%;
  margin: 0.6em 0em;
}



/*--------------
      Meta
---------------*/


/* Countdown */
.ui.product.cards .card > .meta .countdown,
.ui.product.card > .meta .countdown {
  float: left;
}

/* Influence */
.ui.product.cards .card > .meta .influence,
.ui.product.card > .meta .influence {
  float: right;
  font-style: italic;
}
.ui.product.cards .card > .meta .influence a,
.ui.product.card > .meta .influence a {
  font-style: normal;
}

/* Inventor */
.ui.product.cards .card > .meta .inventor,
.ui.product.card > .meta .inventor {
  float: left;
  opacity: 0.5;
  color: #5D6266;
  width: 70%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
/* Price */ 
.ui.product.cards .card > .meta .price,
.ui.product.card > .meta .price {
  float: right;
  margin-top: -0.2em;
  font-size: 1.4em;
  font-weight: bold;
  color: #5BBD72;
  width: 30%;
  text-align: right;
}




/*******************************
             States
*******************************/

/* Active Product */
.ui.product.cards .card .projects .active.project,
.ui.product.card .projects .active.project,
.ui.product.cards .card .projects .active.project .icon,
.ui.product.card .projects .active.project .icon {
  color: #5D6266;
}
/*
 * # Quirky Profile Card
 * http://github.com/quirkyinc/semantic
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */


/*******************************
          Profile Card
*******************************/

.ui.profile.cards .card,
.ui.profile.card {
  width: 280px;
  text-align: center;
}

.ui.profile.card.fluid {
  width: 100%;
}

/*--------------
    Content
---------------*/

.ui.profile.cards .card > .content,
.ui.profile.card > .content {
  height: 260px;
  padding: 1em 0em;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.ui.profile.cards .card > h3,
.ui.profile.card >  h3 {
  margin-left: 1em;
  text-align: left;
  padding-top: .8em;
}


.ui.profile.cards .card > .content .name,
.ui.profile.card > .content .name {
  display: inline-block;
  margin: 0.25em auto;
  line-height: 1;
  font-size: 1.8em;
  color: #5D6266;
}
.ui.profile.cards .card > .content .name .image,
.ui.profile.card > .content .name .image {
  display: block;
  width: 135px;
  height: 135px;
  margin: 0em auto 0.25em;
}
.ui.profile.cards .card > .content .name .image img,
.ui.profile.card > .content .name .image img {
  max-width: 100%;;
}

/*--------------
     Stats
---------------*/

.ui.profile.cards .card .stats,
.ui.profile.card .stats {
  display: table;
  width: 100%;
  border-top: 1px solid #DCDDDE;
}

.ui.profile.cards .card .stat,
.ui.profile.card .stat {
  display: table-cell;
  vertical-align: middle;

  border-left: 1px solid #DCDDDE;
  width: 33.33%;
  padding: 0.75em 0em;

  line-height: 1em;
}
.ui.profile.cards .card .stat .count,
.ui.profile.card .stat .count {
  font-size: 1.375em;
  font-weight: bold;
  color: #5D6266;
  margin-bottom: 0.275em;
}
.ui.profile.cards .card .stat .text,
.ui.profile.card .stat .text {
  margin-top: 0.25em;

  color: #9EA6AB;
  font-size: 0.875em;
}
.ui.profile.cards .card .stat:first-child,
.ui.profile.card .stat:first-child {
  border-left: none;
}

/*--------------
     Button
---------------*/

.ui.profile.cards .card > .attached.button,
.ui.profile.card > .attached.button {
  -webkit-box-shadow: 0px 0px 0px 1px #DCDDDE;
  -moz-box-shadow: 0px 0px 0px 1px #DCDDDE;
  box-shadow: 0px 0px 0px 1px #DCDDDE;
}

/*
 * # Sitemap
 *
 *
 * Copyright 2013 Contributors
 * Released under the MIT license
 * http://opensource.org/licenses/MIT
 *
 * Released: April 17 2013
 */

/*******************************
           Sitemap
*******************************/

.ui.sitemap {
  margin: 0 -3rem;
  font-size: 0rem;
  text-align: left;
}


/*--------------
     Elements
---------------*/

.ui.sitemap > .section {
  display: inline-block;
  vertical-align: top;

  margin: 0em 2.5rem;

  font-size: 1rem;
}

.ui.sitemap > .section > .header {
  font-size: 1.125em;
  color: rgba(0, 0, 0, 0.8);
  padding-bottom: 0.5em;
}

.ui.sitemap > .section > a {
  display: block;
  padding: 0.25em 0em;
}



/*******************************
         Global Fonts
*******************************/

@font-face {
  font-family: 'Neutraface';
  src:
    url('https://p1.q-static.com/quirky-fonts/neutraface-book.eot');
  src:
    url('https://p1.q-static.com/quirky-fonts/neutraface-book.eot?#iefix') format('embeddedopentype'),
    url('https://p1.q-static.com/quirky-fonts/neutraface-book.woff') format('woff')
  ;
  font-style: normal;
  font-weight: normal;
  font-stretch: normal;
}
@font-face {
  font-family: 'Neutraface';
  src:
    url('https://p1.q-static.com/quirky-fonts/neutraface-demi.eot');
  src:
    url('https://p1.q-static.com/quirky-fonts/neutraface-demi.eot?#iefix') format('embeddedopentype'),
    url('https://p1.q-static.com/quirky-fonts/neutraface-demi.woff') format('woff')
  ;
  font-style: normal;
  font-weight: bold;
  font-stretch: normal;
}

@font-face {
  font-family: 'Neutraface';
  src:
    url('https://p1.q-static.com/quirky-fonts/neutraface-italic.eot');
  src:
    url('https://p1.q-static.com/quirky-fonts/neutraface-italic.eot?#iefix') format('embeddedopentype'),
    url('https://p1.q-static.com/quirky-fonts/neutraface-italic.woff') format("woff")
  ;
  font-style: italic;
  font-weight: normal;
  font-stretch: normal;
}


/*******************************
         Global Styles
*******************************/

html,
body {
  font-size: 16px;
  height: 100%;
}
html {
  -webkit-font-smoothing: subpixel-antialiased;
}
body {
  background-color: #F8F8F8;

  font-family: "Neutraface", "Helvetica Neue", Arial, sans-serif;
  text-align: left;
  line-height: 1.33;

  color: #5D6266;

  /*min-width: 780px;*/
  height: 100%;

}

/* Force header to always be at bottom of page */
body > .content {
  background: #F8F8F8;
  height: auto !important;
  /*margin: 0 auto -331px;*/
  min-height: 100%;
}
body > .content > .placeholder {
  margin-top: 6em;
}
footer.main {
  border-top:1px solid #DCDDDE;
}

footer.main,
body > .content > .placeholder {
  display: block;
  /*height: 330px;*/
}

header.main + *,
header.main + .ui.responsive.grid {
  padding-top: 3rem;
}

/* Headers */
h1,
h2,
h3,
h4,
h5 {
  font-family: "Neutraface", "Helvetica Neue", Arial, sans-serif;
  font-weight: bold;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child {
  margin-top: 0em;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child {
  margin-bottom: 0em;
}

/* css iframe styles doesnt work in ie */
iframe {
  border: none;
  overflow: hidden;
  background-color: transparent;
}

/* Really? 13px height by default Google? */
iframe[name='google_conversion_frame'] {
  height: 0 !important;
  width: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  margin-top: -13px;
  float: left;
}

/* default link style */
a,
h2 a,
h3 a {
  text-decoration: none;
  color: #01B5AA;
}
a:hover,
h2 a:hover,
h3 a:hover {
  color: #008B82;
}

p {
  margin: 1em 0em;
}
p:first-child {
  margin-top: 0em;
}
p:last-child {
  margin-bottom: 0em;
}

.ui.item.hidden {
  display: none;
}

.ui.input input {
  font-family:"Neutraface", "Helvetica Neue", Arial, sans-serif;
}

/******************************
          Text Styles
*******************************/

h1, h2, h3, h4, h5, h6 {
  margin: 1em 0em 1rem;
}

h1.ui.header,
h1 {
  font-size: 1.875rem;
}
h2.ui.header,
h2 {
  font-size: 1.75rem;
}
h3.ui.header,
h3 {
  font-size: 1.375rem;
  font-weight: normal;
}
h4.ui.header,
h4 {
  font-size: 1.2rem;
}
h5.ui.header,
h5 {
  font-size: 0.875rem;
  text-transform: uppercase;
}
h6.ui.header,
h6 {
  font-size: 0.75rem;
  font-weight: bold;
}

blockquote {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);

  color: rgba(0, 0, 0, 0.6);
  font-size: 1.1em;
  font-style: italic;
  font-weight: normal;

  margin: 1em 0em;
  padding: 1em;
  text-align: center;
}

/*******************************
         Global Styles
*******************************/

header.main {
  background: white;
  border-bottom: 1px solid #dcddde;
}

/* Really? 13px height by default Google? */
iframe[name='google_conversion_frame'] {
  height: 0 !important;
  width: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;
  margin-top: -13px;
  float: left;
 }

header.main .ui.column {
  position: relative;
  font-size: medium;
}

header.main .logo {
  display: block;
  float: left;
  height: 95px;
  margin: 0 0 -16px -24px;
  position: relative;
  width: 177px;
}

header.main .logo .shape {
  z-index: 10;
  font-size: 11em;
  left: 0;
  margin: 0;
  overflow: hidden;
  position: absolute;
  top: -54px;
  -webkit-transition:
    -webkit-transform 0.25s ease,
    opacity 0.25s ease
  ;
  -moz-transition:
    -moz-transform 0.25s ease,
    opacity 0.25s ease
  ;
  -o-transition:
    -o-transform 0.25s ease,
    opacity 0.25s ease
  ;
  -ms-transition:
    -ms-transform 0.25s ease,
    opacity 0.25s ease
  ;
  transition:
    -webkit-transform 0.25s ease,
    -moz-transform 0.25s ease,
    -o-transform 0.25s ease,
    -ms-transform 0.25s ease,
    transform 0.25s ease,
    opacity 0.25s ease
  ;

  opacity: 0;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}

header.main .logo .quirky.logo {
  position: absolute;
  color: #FFFFFF;
  /* color: rgba(255, 255, 255, 0.95); */
  font-size: 5.5em;
  height: auto;
  left: 40px;
  margin: 0;
  opacity: 0;
  top: -4px;
  width: auto;
  z-index: 11;

  -webkit-transition:
    transform 0.25s ease,
    opacity 0.25s ease
  ;
  -moz-transition:
    transform 0.25s ease,
    opacity 0.25s ease
  ;
  -o-transition:
    transform 0.25s ease,
    opacity 0.25s ease
  ;
  -ms-transition:
    transform 0.25s ease,
    opacity 0.25s ease
  ;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease
  ;
}
header.main .logo .quirky.logo:hover {
  color: white;
}

header.main .animate.logo .quirky.shape {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  max-height: 160px;
}
header.main .animate.logo .quirky.logo {
  opacity: 1;
  font-weight:normal;
}

header.main .logo .shape.one {
  top: -50px;
  left: -26px;
}
header.main .logo .shape.two {
  top: -54px;
  left: -23px;
}
header.main .logo .shape.three {
  top: -62px;
  left: -32px;
  font-size: 10.4em;
}
header.main .logo .shape.four {
  top: -47px;
  left: -4px;
}
header.main .logo .shape.five {
  top: -44px;
  left: -20px;
}
header.main .logo .shape.six {
  top: -52px;
  left: -29px;
}
header.main .logo .shape.seven {
  top: -39px;
  left: -35px;
}
header.main .logo .shape.eight {
  top: -55px;
  left: -11px;
}

header.main .ui.pointing.icon.menu {
  float:left;
  margin: 0;
}

header.main .ui.pointing.icon.menu .main.item{
  color: #01b5aa;
  font-weight: 400;
  padding: 0.8em 0.6em;
  margin: 0 0.05em;
  font-size: 1.15rem;
  font-style: italic;
  border-left:1px solid white;
  border-right: 1px solid white;
}

header.main .ui.pointing.menu .active.item:after {
  border-bottom: 1px solid #DCDDDE;
  border-right: 1px solid #DCDDDE;
  background-color: #FFFFFF;
}


/* Specific Effect for Shop Hover */

header.main .ui.pointing.menu .shop.item {
  position: relative;
}

header.main .ui.pointing.menu .shop.item.hover {
  border-left: 1px solid #DCDDDE;
  border-right: 1px solid #DCDDDE;
  background: #fbfbfb;
  z-index: 10000;
}

header.main .ui.pointing.menu .shop.item.hover .mask {
  display: block;
}

header.main .ui.pointing.menu .shop.item .mask {
  display: none;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0px;
  border-bottom: 1px solid #FBFBFB;
}

header.main .ui.pointing.menu .shop.item.hover:after {
  border-bottom: none;
  border-right: none;
  background-color: inherit;
  width: 0;
  height: 0;
}




header.main .ui.icon.menu .icon {
  font-size:1.5em;
  height: 1em;
  margin-bottom: 0.15em;
  color: rgba(60, 60, 60, 0.70);
}


/* User Menu and Search */

header.main .secondary.user.menu {
  float: right;
  line-height: 52px;
  margin: 16px -16px 0px 0px;
  position: relative;
}

header.main .secondary.user.menu > .how.item {
  margin: 0;
}

header.main .secondary.user.menu .link.item {
  border: 1px solid #FFFFFF;
  color: rgba(0, 0, 0, 0.4);
  font-size: 1rem;
  line-height: 1.25em;
  padding: 0.5em 0.6em;
  -webkit-border-radius: 0.325em;
  -moz-border-radius: 0.325em;
  border-radius: 0.325em;
}
header.main .secondary.user.menu .link.item:hover {
  background-color: rgba(0, 0, 0, 0.03);
  border: 1px solid #EEEEEE;
  cursor: pointer;
}

header.main .secondary.user.menu .fitted.borderless.item {
  margin: 0;
}

header.main .secondary.user.menu .ui.search .input input {
  border: 1px solid #DCDDDE;
  color: #5D6266;
  font-family: "Neutraface", "Helvetica Neue", Arial, sans-serif;
  width: 180px;
  font-size: 1rem;
  padding: 0.65em 1.2em 0.65em 1.2em;
}


header.main .secondary.user.menu .ui.input.search > .icon {
  border-right: none;
  background-color: transparent;
  height: 2em;
  width: 2em;
  padding-top: 0.55em;
  color: rgba(0, 0, 0, 0.4);
  font-size: 1.2em;
  right: 2px;
  left: auto;
}


header.main .secondary.user.menu .user.dropdown.link.item {
  margin-left: 0;
}

#touch-header { display: none; }

/*******************************
      Shop Navigation
*******************************/

header.main .navigation.menu {
  display: none;
  position:absolute;
  top:100%;
  left:1.5%;
  z-index:1001;
  width:93%;
  padding:1.5% 2% 2% 2%;
  background: #fbfbfb;
  border: 1px solid #DCDDDE;
  -webkit-box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.04) inset;
  -moz-box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.04) inset;
  box-shadow: 0px -2px 0px 0px rgba(0, 0, 0, 0.04) inset;
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

header.main .navigation.menu .ui.circular.text.menu .header.item, header.main .navigation.menu h4 {
  font-size: 1rem;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

header.main .navigation.menu .ui.circular.text.menu .item {
  margin: 0.25em 0;
}

header.main .navigation.menu .ui.circular.text.menu .first.item {
  margin-top: 2em;
}

header.main .navigation.menu .ui.circular.text.menu .item > .icon {
  font-size: 1.2em;
  margin-right: 0.4em;
}

header.main .navigation.menu .ui.product.card {
  width: 100%;
}

header.main .navigation.menu .ui.product.card > .product .header {
  margin: 0.5rem 0.75rem;
  font-size: 1.3em;
}

header.main .navigation.menu .ui.product.card > .product .tagline {
  margin: -0.25rem 0.75rem 0.5rem 0.75rem;
}

/* Invent */

header.main .invent.navigation.menu .submit.idea.menu .header.item {
  margin-bottom: 0;
}

header.main .invent.navigation.menu p {
  font-size: 1.1em;
  line-height: 1.4;
  color: #9DA6AB;
  margin-bottom: 1.25em;
}


/*******************************
             Clearfix
*******************************/

.clearfix:after {
  display: block;
  content: ' ';
  height: 0px;
  clear: both;
  overflow: hidden;
  visibility: hidden;
}

/*******************************
         Sketch Avatars
*******************************/

.avatar .circular.image {
  height: 100%;
  width: 100%;
}
.avatar .reveal .sketch {
  display: block;
  width: 100%;
  background-color: #FFFFFF;
  -webkit-border-radius: 500em;
  -moz-border-radius: 500em;
  border-radius: 500em;
}
.avatar .reveal .sketch img {
  opacity: 0.8;
}

/*******************************
         Global Nag
*******************************/

.stackable.nags {
  margin-top: 0px;
  position: relative;
  z-index: 101;
  width: 100%;
  top: 0px;
  left: 0px;
}

.stackable.nags a {
  color: #fff;
}

.stackable.nags a span {
  font-weight: bold;
  margin-right: .5em;
}

.stackable.nags .ui.nag {
  position: relative;
  width: 100%;
  left: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}

/*******************************
         Global Footer
*******************************/

footer.main {
  background:#EBEBEB;
  position: static;
  z-index: auto;
  display: block;
  color: #5D6266;
  padding: 3em 0 0 0;
}

footer.main .ui.responsive.grid .ui.row.segment {
  padding: 1rem;
}

footer.main h4 {
  margin-top: 0;
  color: #9DA6AB;
}
footer.main h4 strong {
  display: block;
  color: #5D6266;
}

footer.main h3 {
  margin-bottom: .25em;
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: bold;
}

footer.main ul,
footer.main p {
  margin: 1em 0 1.3em 0;
}

footer.main ul {
  margin-bottom: 2em;
}

footer.main .product .image {
  width: 100%;
}

footer.main .product .button {
  white-space: nowrap;
}

/*--------------
 Email Collection
---------------*/

footer .ui.large.form { width: 100% !important;}

footer #email-collection-form {
  width: 90%;
}

footer #email-collection-form input {
  width: 60%;
  padding: 0.55em 1.2em;
}

footer #email-collection-form button {
  margin-top: -3px;
  width: 40%;
  padding: .9em 0;
  font-size: .86em;
}

footer .account.holder {
  font-size: 20px;
}

footer #email-collection-form .terms {
  font-size: 14px;
  padding: 1em 0;
}

/*--------------
    Support
---------------*/
footer.main .social.menu {
  font-size: 1.6em;
}
footer.main .social.menu a {
  color: #c4cacd;
  opacity: 1;
}
footer.main .social.menu a:hover {
  color: #bac1c4;
}

footer.main .ui.responsive.grid.sitemap .five.wide.column .description {
  float: left;
  margin-left: 1em;
}

footer.main .ui.responsive.grid.sitemap .ui.row.french {
  background:none;
}

footer.main .sitemap .support p {
  /*padding-right: 50px;*/
}

footer.main .sitemap .support a { color: #5D6266; }

footer.main .ui.responsive.grid.copyright {
  font-size: 0.875em;
  color: #9DA6AB;
  background:#EBEBEB;
  padding-top: 3em;
  padding-bottom: 3em;
}

footer.main .copyright .five.wide.column {
  padding-top: 0.5em;
}

footer.main .copyright a {
  color: #a7afb3;
}
footer.main .copyright a:hover {
  color: #9DA6AB;
}


/*--------------
    Promotion
---------------*/

footer.main .promotion .product {
  text-align: left;
}
footer.main .promotion .product .image {
  float: left;
}
footer.main .promotion .product .image img {
  width: 200px;
  -webkit-border-radius: 0.3125em;
  -moz-border-radius: 0.3125em;
  border-radius: 0.3125em;
}
footer.main .promotion .product .description {
  margin-left: 225px;
}
footer.main .promotion .product .price {
  font-size: 1.5em;
  font-weight: bold;
  color: #5BBD72;
}

footer.main #app_promo p {
  /*margin-right: 150px;*/
}
footer.main #app_promo #appstore {
  width: 120px;
  height: 42px;
  background: url(//p1.q-static.com/images/site/appstore-badge.png?1419868763) no-repeat 0 0;
  text-indent: -999em;
  display: block;
}

/*******************************
          Dimmer Styles
 *******************************/

/* Legacy modal dimmer will be taken out once refactoring complete */
#dimmer {
  position: absolute;
  visibility: hidden;
  top: 0px;
  left: 0px;
  z-index: 1000;

  margin: 0px;
  width: 100%;
  height: 100%;
  padding: 0px;
}
#dimmer .content {
  position: fixed;
  top: 0px;
  left: 0px;

  margin: 0px;
  width: 100%;
  height: 100%;
  padding: 0px;
  visibility: hidden;

  background-color: #000000;
  opacity: 0.0;
}

/* a generic dimmer
.dimmer {
  display: none;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: #000000;
  z-index: 999;
}
*/
.white.dimmer {
  background-color: #FFFFFF;
}
.loading  .dimmer {
  display: block;
  opacity: 0.8;

  -webkit-transition: opacity 0.5s linear;
  -moz-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  -ms-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

header.main .flyout {
  cursor: auto;
  display: none;
  opacity: 0;
  position: absolute;
  top: 35px;
  left: 0px;
  z-index: 900;
  width: 200px;
  padding: 15px 20px;
  color: #555555;

  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);

  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;

  background-color: #FAFAFA;

  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
header.main .open .flyout,
header.main .secondary .active .flyout {
  display: block;
  opacity: 1;
}


/*******************************
         Inline Log-in
*******************************/

header.main .inline-login.form {
  float: right;
  font-size: 11px;
  width: 390px;
}
header.main .inline-login.form .field {
  clear: none;
  float: left;
  margin: 5px 15px 0px 0px;
}
header.main .inline-login.form label {
  margin: 0px 0px 3px;
  font-size: 12px;
  color: #FFFFFF;
}
header.main .inline-login.form input {
  padding: 3px 10px 4px;
  width: 140px;
  height: 25px;
  font-size: 12px;
}
header.main .inline-login.form .forgot {
  opacity: 0.5;
  float: right;
  color: #FFFFFF;
}
header.main .inline-login.form .forgot:hover {
  opacity: 1;
  color: #FFFFFF;
}
header.main .inline-login.form .submit {
  margin-top: 21px;
  padding-top: 5px;
  padding-bottom: 6px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
header.main .inline-login.form .submit.button.wait,
header.main .inline-login.form .submit.button.wait.hover,
header.main .inline-login.form .submit.button.wait.down {
  cursor: default;

  background-image: -webkit-linear-gradient(top , #FFFFFF 0%, #F0F0F0 100%);
  background-image: -moz-linear-gradient(top , #FFFFFF 0%, #F0F0F0 100%);
  background-image: -o-linear-gradient(top , #FFFFFF 0%, #F0F0F0 100%);
  background-image: -ms-linear-gradient(top , #FFFFFF 0%, #F0F0F0 100%);
  background-image: linear-gradient(top , #FFFFFF 0%, #F0F0F0 100%);

  border: 1px solid #CCCCCC;
  color: #A4A4A4;
  opacity: 0.7;

  text-shadow: 0 -1px rgba(255, 255, 255, 0.8);
  -moz-box-shadow: 0 1px 6px -3px rgba(0, 0, 0, 0.3) inset;
  -webkit-box-shadow: 0 1px 6px -3px rgba(0, 0, 0, 0.3) inset;
  box-shadow: 0 1px 6px -3px rgba(0, 0, 0, 0.3) inset;
}

/*******************************
      Global Registration
*******************************/

.sign-up.bootstrap-modal .modal-dialog {
  width: 600px;
}

.sign-up.bootstrap-modal .modal-content .facebook.container {
  text-align:center;
}

.sign-up.bootstrap-modal .modal-content .horizontal.ui.divider {
  margin: 1.5rem 0rem;
}

/*.sign-up.bootstrap-modal .modal-body {
  padding: 2em;
}

.sign-up.bootstrap-modal .modal-header {
    padding: 2em;
}
*/

/*******************************
        Logged Out Menu
*******************************/

header.main .log-in .flyout {
  background-color: #FFFFFF;
  top: 45px;
  left: auto;
  right: 0px;
  width: 248px;
  z-index: 1001;
}

header.main .log-in .flyout .divider:after,
header.main .log-in .flyout .divider:before {
  width: 40%;
}
header.main .log-in .flyout form p {
  margin: 15px 0px 0px;
  color: #777777;
}
header.main .log-in .flyout form input {
  padding: 0.7em 1em;
}
header.main .log-in .flyout form .forgot {
  display: block;
  float: right;
  font-size: 0.875em;
}
header.main .log-in .flyout form .submit.button {
  margin-top: 10px;
}

header.main .log-in.link {
  padding: 0 !important;
}

header.main .log-in.link div.clickable {
  padding: .5em .6em;
}

/*******************************
              Ad Units
*******************************/
.ad_units.row {
  margin-top: 20px;
}

.ad_unit.row{
  margin-top: 0px !important;
  padding-top: 0px !important;
}

.ad_unit img {
  width: 100%;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;

}
/*******************************
              Cart
*******************************/

header.main .cart .icon {
  font-size: 1.25em;
}
header.main .cart.item .floating.label {
  padding: 0.05em 0.8em 0.3em;
  top: -10px;
  left: 55px;

}



/*******************************
    URL / Email Sharing Popup
*******************************/

.share.link.popup .input,
.share.link.popup input {
  width: 100%;
}

.share.email.popup {
  width: 236px;
  padding: 10px 15px;
}
.share.email.popup p {
  text-align: left;
  line-height: 1.5;
}
.share.email.popup .button {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.share.email.popup textarea {
  margin: 10px 0px;
  min-height: 72px;
  max-height: 250px;
  height: 72px;
}
.share.email.popup .success {
  display: none;
  float: none;
  width: auto;
  height: auto;
  margin: 0px;
  padding: 5px;
}
.share.email.popup .success p {
  color: #888888;
  font-weight: bold;
  margin: 10px 0px 0px;
}
.share.email.popup .success p a {
  float: none;
  width: auto;
  height: auto;
  font-weight: bold;
}

.share.popup {
  padding: 10px 15px;
  width: 275px;
  max-width: 275px;
}
.share.popup label {
  margin-bottom: 10px;
}
.share.popup input {
  border: 1px solid #DDDDDD;
  padding: 9px 7px;
  width: 255px;
}


/*--------------
     States
---------------*/

.share.active .popup {
  display: block;
  -moz-border-radius: 5px 0px 5px 5px;
  -webkit-border-radius: 5px 0px 5px 5px;
  border-radius: 5px 0px 5px 5px;
}

/*******************************
         Global Login
*******************************/

.log-in.modal {
  width: 800px;
}
.log-in.modal .content .left,
.log-in.modal .content .right {
  width: 45%;
}

.log-in.modal form {
  position: relative;
  width: 340px;
}
.log-in.modal form .field {
  margin-bottom: 1em !important;
}
.log-in.modal form p {
  margin: 0px 0px 10px;
}
.log-in.modal form .buttons {
  margin-top: 20px;
}
.log-in.modal form .submit {
  margin: 0px;
}
.log-in.modal form .errors {
  clear: both;
  margin: 15px 0px 0px 0px;
}
.log-in.modal .right {
  float: right;
}
.log-in.modal .right p {
  font-size: 15px;
  margin: 0px 0px 10px;
}
.log-in.modal .right > .facebook {
  margin: 10px 0px 0px 0px;
  padding-bottom: 37px;
  border-bottom: 1px solid #DCDDDE;
}
.log-in.modal .right > .facebook .button {
  margin-left: 32px;
}
.log-in.modal .sign-up {
  margin: 30px 0px 0px 49px;
}
.log-in.modal .sign-up .button {
  margin-left: 11px;
}
.log-in.modal form .loading.dimmer {
  width: 100%;
  height: 310px;
  background-color: #FAFAFA;
  opacity: 0.9;
}
.log-in.modal form .throbber {
  display: none;
  top: 125px;
}
.log-in.modal form.loading .throbber {
  display: block;
  margin: -45px 0px 0px -50px;
}

/*******************************
  Sign Up and Log In Static Pages
*******************************/
#users .facebook.signup, #sessions .facebook.signup {
  text-align: center;
  margin: 0.5em 0 2em 0;
}

#users .secondary.action, #sessions .secondary.action {
  color: #9DA6AB;
  text-align: center;
}

.forgot.password {
  float:right;
  line-height: 2.75em;
  font-size: 0.8em;
}

#users .inline.terms.field label {
  font-size:0.9em;
}

/** Header flash messages */

#header-flash .ui.success.message {
  margin-top: 1.5em;
}

/*******************************
        Registration Nag
*******************************/
.ui.postreg.nag a{
  color: #96904D;
  text-decoration: underline;
}

.ui.postreg.nag .close.icon {
  color: #96904D;
}

.ui.postreg.nag .green.sent.label {
  color: #A1CF64;
}


/*******************************
            Shouts
*******************************/

#default-shout .header {
  font-size: 1.25em;
  border-bottom: none;
  padding: 1.75rem 1.75rem 0 1.75rem;
}

#default-shout .content {
  padding: 1rem 1.75rem 1.75rem 1.75rem;
}

#default-shout .shout {
  margin-bottom: 1em;
}

#default-shout .button {
  float: right;
  display: none;
}

#default-shout .new-site img {
  width: 161px;
  height: 85px;
}

#default-shout .new-site .about h3,
#default-shout .new-site .about p {
  margin: 0px;
}

#default-shout .new-site .about {
  margin-bottom: 2rem;
}

#default-shout .new-site .grid {
  margin-bottom: 2rem;
}

#default-shout .new-site .learn-more {
  text-align: center;
}

#default-shout .new-site .learn-more i {
  width: auto;
  float: none;
  margin-left: 0px;
}

/*******************************
        Cart Items Button
*******************************/

.cart-items-modal .modal-header { display: none; }

.cart-items-modal .cart-header th { background: #fff; }

#cart-items-button-view {
  display: none;
}

#cart-items-button-view.visible {
  display: inline-block;
}

/*******************************
        Cart Items Modal
*******************************/
#top-complete-cart-item-button {
  float: right;
}

.cart-items-modal > .header {
  padding-left: 1em;
}

.cart-items-modal .modal-body {
  padding: 0px;
}

.cart-items-modal > .content {
  padding: 0;
}

.cart-items-modal .ui.table.cart thead tr th.price {
  text-align: right;
  padding-right: 2em;
}

.cart-items-modal .ui.table.cart td.large-price {
  font-size:1.4em;
  text-align:right;
  color:#5bbd72;
  font-weight:700
}

.cart-items-modal .ui.table.cart thead tr th.quantity {
  text-align: center;
}

.cart-items-modal .ui.padded.table.cart td {
  padding: .3em 1em .1em 1em;
}

.cart-items-modal .ui.padded.table.cart tfoot tr td {
  padding:.6em 1em;
  text-align: right;
}

.cart-items-modal .ui.table.cart tfoot .subtotal.label {
  font-weight: 700;
  text-align: right;
  float: right;
}

.cart-items-modal .ui.table.cart tfoot tr.nag td {
  font-size: 1.2em;
  padding-right: 1.7em;
  text-align: right;
  border-top: 1px solid #f1f1f1;
}

.cart-items-modal .ui.table.cart tfoot tr.nag td.value {
  text-align: left;
}

.cart-items-modal .ui.table.cart tr.item .image {
  width: 100px;
}

.cart-items-modal .ui.table.cart tr.item .image img {
  width: 100px;
}

.cart-items-modal .ui.table.cart tr.item .name .soft {
  font-size: 0.8em;
}

.cart-items-modal .ui.table.cart tr.item .name h2 {
  margin-bottom: 0;
  font-size: 1.2em;
}

.cart-items-modal .ui.table.cart tr.item .price {
  width:1em;
  font-size:1.2em;
  text-align:right;
  color:#5bbd72;
  font-weight:700;
  font-weight:normal;
  color:#5d6266;
}

.cart-items-modal .ui.table.cart tr.item .price+td.x {
  padding-right:2em;
  width:.5em;
  color:#888;
  text-align:center;
}

.cart-items-modal .ui.table.cart tr.item .quantity {
  width: 3.5em;
  margin-bottom: .25em;
}

.cart-items-modal .ui.table.cart tr.item .quantity .ui.form .field {
  margin-bottom: 0;
}

.cart-items-modal .ui.table.cart tr.item .quantity .ui.form .field select {
  text-align: center;
  font-size: 0.8em
}

.cart-items-modal .ui.table.cart tr.item .remove {
  text-align:right;
  width:1em;
  font-size: 1em;
}

.cart-items-modal .ui.table.cart tr.item .remove {
  width: 35px;
}

.cart-items-modal .ui.table.cart tr.item .remove span {
  display: none;
}

.cart-items-modal .ui.table.cart tr.item .remove.loading span {
  display: inline;
}

.cart-items-modal .ui.table.cart tr.item .remove.loading a {
  display: none;
}

.cart-items-modal .soft {
  display: block;
}

.cart-items-modal .color.swatch {
  display:inline-block;
  vertical-align:middle;
  width:10px;
  height:10px;
  border-radius:100%
}
.cart-items-modal .ui.submit.button {
  float: none;
}

.cart-items-modal .continue-shopping {
  text-align: left;
}

.companion-modal-header {
  text-align: center;
  background-color: #00B1DB; 
  color: #fff; 
  height: 60px;
}

.companion-modal-header a {
  color: #fff;
  font-weight: bold;
  text-decoration: underline;
}

/*******************************
        Native Select Styling
*******************************/
.ui.select {
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.ui.select .options {
  appearance: button; /* CSS3 */
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none; /* Internet Explorer */
  -o-appearance: none; /* Opera */
  cursor: pointer;
  width: 100%;
  margin: 0em;
  padding: 0.85em 1.2em;
  font-size: 0.875em;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  outline: none;
  color: rgba(0, 0, 0, 0.7);
  -webkit-border-radius: 0.3125em;
  -moz-border-radius: 0.3125em;
  border-radius: 0.3125em;
  -webkit-transition: background-color 0.3s ease-out, box-shadow 0.2s ease, border-color 0.2s ease;
  -moz-transition: background-color 0.3s ease-out, box-shadow 0.2s ease, border-color 0.2s ease;
  -o-transition: background-color 0.3s ease-out, box-shadow 0.2s ease, border-color 0.2s ease;
  -ms-transition: background-color 0.3s ease-out, box-shadow 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.3s ease-out, box-shadow 0.2s ease, border-color 0.2s ease;
  -webkit-box-shadow: 0em 0em 0em 0em rgba(0, 0, 0, 0.3) inset;
  -moz-box-shadow: 0em 0em 0em 0em rgba(0, 0, 0, 0.3) inset;
  box-shadow: 0em 0em 0em 0em rgba(0, 0, 0, 0.3) inset;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.ui.select i.dropdown.icon {
  pointer-events:none;
  cursor: pointer;
  position: absolute;
  top: 35%;
  right: 0;
  margin: 0em 0.8em 0 0;
  -webkit-transition: opacity 0.2s ease-out;
  -moz-transition: opacity 0.2s ease-out;
  -o-transition: opacity 0.2s ease-out;
  -ms-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  font-size: 1em;
  height: 1em;
  line-height: 1em;
  width: auto;
  background:#fff;
  box-shadow: -5px 0 10px #fff;
}

.ui.select .options:focus {
  -webkit-border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-top-left-radius: 0;
  -moz-border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-box-shadow: 0.3em 0em 0em 0em rgba(0, 0, 0, 0.2) inset;
  -moz-box-shadow: 0.3em 0em 0em 0em rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0.3em 0em 0em 0em rgba(0, 0, 0, 0.2) inset;
}

.ui.form .field.error .select .options {
  border-color: #E7BEBE;
  color: #ef4d6d;
  -webkit-box-shadow: 0.3em 0em 0em 0em #EF4D6D inset;
  -moz-box-shadow: 0.3em 0em 0em 0em #EF4D6D inset;
  box-shadow: 0.3em 0em 0em 0em #EF4D6D inset;

  -webkit-border-top-left-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-top-left-radius: 0;
  -moz-border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.ui.form .field.error .select .icon.dropdown {
  color: #ef4d6d;
}

.ui.form .field .error.label, .ui.pointing.error.label:before  {
  background-color: #ef4d6d;
  color: white;
}

/*******************************
        Modal Subscribe Form
*******************************/

#email-collection-form .segment {
  padding: 2em;
}

#email-collection-form label {
  font-size: 22px;
  padding-bottom: 0.8em;
}

#email-collection-form .ui.form input[type="text"] {
  font-size: 18px;
}

#email-collection-form span.terms {
  float: left;
  padding-top: .8em;
  opacity: 0.7;
}

#email-collection-form .terms a {
  color: #01b5aa;
}

#closeFix {
  top: 0em;
}

.mobile-toggle { display: none; }
#quirky-user-state { display: inline-block; }

/* Global Styles */

.hidden {
  display: none;
}

/*******************************
 
        Responsive Styles
        Main Breakpoint: 910px

        Table of Contents
        I.    Global Styles
        II.   Navigation
        III.  Homepage
        IV.   Invent Pages
        V.    Influence Pages
        VI.   Shop Pages
        VII.  User Profile & Settings
        VIII. About Pages
        IX.   Additional Breakpoints
 
*******************************/






/*******************************
    Global Styles
*******************************/

@media only screen and (max-width: 1200px) {
  /* Header */
  header.main .secondary.user.menu .how.link.item { display:none; }
}

@media only screen and (max-width: 960px) {

  /* Header */
  header.main .secondary.user.menu .ui.search .input input { display:none; }
  header.main .secondary.user.menu .how.link.item { display:none; }
  header.main .secondary.user.menu .ui.search .input .sketchy.magnify.icon { position: static; }
}

@media only screen and (max-width: 767px) {

  /* Semantic Overrides */
  .ui.grid .one.wide.column,
  .ui.grid .two.wide.column,
  .ui.grid .three.wide.column,
  .ui.grid .four.wide.column,
  .ui.grid .five.wide.column,
  .ui.grid .six.wide.column,
  .ui.grid .seven.wide.column,
  .ui.grid .eight.wide.column,
  .ui.grid .nine.wide.column,
  .ui.grid .ten.wide.column,
  .ui.grid .eleven.wide.column,
  .ui.grid .twelve.wide.column,
  .ui.grid .thirteen.wide.column,
  .ui.grid .fourteen.wide.column,
  .ui.grid .fifteen.wide.column,
  .ui.grid .sixteen.wide.column { width: 100%; }
  .ui.responsive.grid { padding: 0 2%;}
  h2 { text-align: center; }
  .ui.stackable.grid .row > .column {
    padding: 0 !important;
    margin: 0 !important;
  }
  .ui.menu .active.item:after { display:none !important;}
  .ui.pagination.menu { margin: 0 auto !important; float: none; }
  .ui.tabular.menu { border: 0; margin: 0; padding: 0 0 1em 0; }
  .ui.tabular.menu .item, .ui.tabular.menu .item.active { border: 0; padding: 0.75em 0.5em; margin: 0; }
  .ui.tabular.menu .active.item { top: 0; }

  /* Global Styles */
  body > .content {
    width: 100%;
    margin: 0;
    padding: 3em 0 0 0;
  }
  body.headless > .content {
    padding-top: 0;
  }

  body > .content > .placeholder { height:2em; }
  .content > .stackable.nags { display: none; }
  header .hide-on-mobile { display: none !important; }
  header .hide-on-desktop { display: block !important; }
  .index.title h1 { text-align: center !important; }
  html.nav-open .content { overflow: hidden; }
  html.nav-open .content .show { margin-left: 250px !important; }
  .inline.field { position: relative; }
  .inline.field .ui.checkbox input, .inline.fields .ui.checkbox input, .inline.fields .ui.radio input { position: absolute; top: 0; left: 0;}
  .inline.field .ui.checkbox + label, .inline.fields .ui.checkbox + label, .inline.fields .ui.radio + label { margin-left: 30px; position: relative; top: -22px; }
  .ui.checkbox, .ui.radio { display: block; }


  /* Header */
  header.main .secondary.user.menu .ui.search .input input { width: 150px; }
  header.main .shop.navigation .three.wide.column:last-child, header.main .secondary.user.menu .how { display: none; }
  header.main .ui.grid > .column { padding: 0; }
  header.main .logo { display: none; }
  header.main .logo .shape{ height: 50px; width: 93px; }


  /* Footer */
  footer.main .promotion .product .image img { width: 170px; }
  footer.main .promotion .product .description { margin-left: 200px; }
  footer.main { height: auto; }
  footer.main .copyright { padding-bottom: 1em; margin-top: 1em; }
  footer.main .ui.responsive.grid .ui.row.segment { display: none; }
  footer i.icon { font-size: .9em; }
  html.nav-open footer.main { margin-left: 250px; overflow: hidden; }

  footer.main .ui.responsive.grid.copyright { padding-top: 0 !important; }
  footer.main .ui.responsive.grid.copyright .five.wide.column { text-align: center; padding: 0; }
  footer.main .ui.responsive.grid.copyright .six.wide.column { padding: 1em 0; }
  footer.main .ui.responsive.grid.copyright .five.wide.column { text-align: center; padding: 0; }
  footer.main .ui.responsive.grid.copyright .six.wide.column { padding: 1em 0; }
  footer.main .ui.responsive.grid.sitemap .ui.five.wide.column:nth-child(1),
  footer.main .ui.responsive.grid.sitemap .ui.three.wide.column { display: none; }
  footer.main #app_promo { border-bottom: 1px solid rgba(0,0,0,.0.5); padding-bottom: 1em;}
  footer.main #app_promo #appstore { float: none; margin: 0 auto; }
  footer.main #app_promo h3 { text-align: center; }
  footer.main #app_promo p { text-align: center; padding: 0 30px !important; }
  #learn footer.main #app_promo p { text-align: center; margin: 0 0 10px 0 !important; }
  footer.main .social.menu { font-size: 2em; }

  footer.main .mobile-toggle { display:none; margin: 1em 0;width: 100%; overflow: hidden; border-top: 1px solid rgba(0,0,0,.1);  border-bottom: 1px solid rgba(0,0,0,.1);}
  footer.main .mobile-toggle a { padding: 0.5em 0; display: block; float: left; width: 50%; text-align:center; box-sizing:border-box;}
  footer.main .mobile-toggle a:last-child { border-left: 1px solid rgba(0,0,0,.1);}






  /*******************************
    Navigation
  *******************************/

  /* Touch Bar */
  #touch-header {
    width: 100%;
    background: #FFF;
    display:block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    border-bottom: 1px solid #dcddde;
    height: 48px;
  }
  #touch-header a { color: rgba(60,60,60,0.7); }
  #touch-header .all-header { position: relative; padding: 1em 0; height: 1em; }
  #touch-header .all-header i.logo {
    position: absolute;
    font-size: 4em;
    top: -5px;
    width: 100%;
    text-align: center;
    opacity: 1;
    display: block;
  }
  .ui.modal > .close { right: 0; margin-right: -5px; }
  #quirky-user-state { display: none; }

  /* Menu Icon */
  #touch-header a.h-icon {
    display: block;
    font-weight: bold;
    margin-left: 16px;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,.2);
    float: left;
    font-size: 0.875em;
    margin: -0.4em 0em -0.3em 0.3em;
    padding: 0.3em 0.8em;
    text-transform: uppercase;
  }

  /* Open in iOS app */
  #open-ios-app {
    display: none;
    width: 100%;
    background:#5d6266;
    color:#fff;
    padding:10px 0;
    text-align:center;
    font-weight: bold;
    cursor: pointer;
  }

    #open-ios-app i { opacity: 1; }

  /* Navigation */
  header.main .shop.navigation { display: block; }
  header.main.ui.grid > .column { padding-left: 0; padding-right:0 ; }
  header.main .ui.pointing.icon.menu { margin: 0;
    padding: 0;
    float: none;
  }
  header.main .ui.pointing.icon.menu .main.item {
    padding: 0;
    margin: 0;
    border: 0;
    display: block;
    text-align: left;
  }
  header.main .ui.pointing.menu .active.item:after { display: none; }
  header.main .shop.navigation.menu .ui.grid { margin: 0; }
  header.main .shop.navigation.menu { display: block !important; } 
  header.main .secondary.user.menu {
    position: absolute;
    float: none;
    margin: 0;
    z-index: 20;
    top: 5px;
  }
  header.main.ui.responsive.grid {
    margin-left: -250px !important;
    float: left;
    width: 250px !important;
    min-width: 0;
    z-index: 100;
    padding-top: 0;
    position: fixed;
    background: #f8f8f8;
    height: 100%;
    top: 0; 
    border-right: 1px solid rgba(60, 60, 60, .25);
  }
  html.nav-open header.main.ui.responsive.grid { 
    display: block;
    margin-left: 0 !important;
    padding: 0;
  }
  .content .show { 
    float: left; 
    margin-right: 0;
    width: 100%;
  }
  .content:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
  header.main .shop.navigation { 
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    position: static;
  }
  header.main .secondary.user.menu .fitted.borderless.item, 
  header.main .secondary.user.menu .how, 
  header.main .secondary.user.menu .user, 
  header.main .secondary.user.menu .sign-up, 
  header.main .secondary.user.menu .log-in { display: none; }
  header.main .secondary.user.menu .link.item.cart {display: none !important; }
  header.main .secondary.user.menu .link.item.cart.visible {
    display: block !important;
    border: none;
    padding: 0.5em 0;
  }
  header.main #cart-items-button-view.visible { display: block; }
  header.main .ui.icon.menu .icon { display: inline-block; }
  header.main .ui.pointing.icon.menu .main.item {
    display: block;
    padding: .5em;
    font-size: 1.35em;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.8);
  }
  header.main .ui.pointing.icon.menu .main.item.shop { border: none !important;padding-top: 0; }
  header .ui.menu { font-size: 1em; }
  header .ui.circular.text.menu { font-size: 1em; }
  header .ui.circular.text.menu .header.item { padding: 1em 1em 0.75em;}
  header .ui.circular.text.menu a { padding: 0 1em 1em; font-size: 1em;}
  header .ui.text.menu > .item { opacity: 1; }
  header .ui.circular.text.menu a.shown { display: block !important; }
  header .ui.circular.text.menu a.hidden { display: none !important; }
  header.main .shop.navigation .ui.circular.text.menu .header.item, header.main .shop.navigation h4 { margin: 0; }
  header.main .shop.navigation .ui.circular.text.menu .item { margin: 0; border-top: none !important; }
  header .normal-bottom { margin-bottom: 0 !important; }
  header.main .shop.navigation .ui.circular.text.menu .first.collection.item { margin-top: 0; }
  header .recently-added { display: none !important; }
  header.main .animate.logo .quirky.shape { display: none; }
  header.main .animate.logo .quirky.logo { color: #46166B; top: -10px; }
  header.main .ui.pointing.menu .shop.item.hover { background: transparent; }
  header .ui.vertical.menu .item:before, header .ui.vertical.menu .item:first-child:before, header .ui.vertical.menu .item:last-child::before { display: none; }
  header .mobile-caret { display: inline-block; }
  header .ui.circular.text.menu .item .mobile-caret i, header .ui.circular.text.menu .item:hover .mobile-caret i {
    background: transparent;
    color: rgba(60, 60, 60, 0.70);
    font-size: .75em !important;
    position: relative;
    top: -1px;
    left: 4px;
  }
  header .mobile-caret span { display: none; }
  header .mobile-caret span.active { display: block; }
  header .shop.navigation.menu { padding-top: 0 !important; }
  header .sh-items .ui.vertical.menu a { display: none; color: rgba(60, 60, 60, 0.6);}
  header .sh-items.shown .ui.vertical.menu a { display: block; }
  header.main .ui.icon.menu .icon.hide-desktop { display: inline-block; } 
  header.main .ui.icon.menu .icon.hide-mobile { display: none; } 


  /* When Nav Is Open */
  html.nav-open #touch-header { left: 250px; }
  html.nav-open { width: 100%; overflow-x: hidden; position: relative; }
  html.nav-open header.main .secondary.user.menu { display: none; }
  html.nav-open header.main.ui.responsive.grid { overflow-y: auto; }

  /* Remove Hover State on Icons */
  .ui.circular.text.menu .item.active, .ui.circular.text.menu .item:hover { font-weight: normal; }
  .ui.pointing.dropdown .menu .item.active:first-child, .ui.pointing.dropdown .menu .item.active { background: transparent !important;}
  .ui.menu .item.electronics.active, .ui.menu .item.electronics:hover,
  .ui.menu .item.health.active, .ui.menu .item.health:hover,
  .ui.menu .item.home.active, .ui.menu .item.home:hover,
  .ui.menu .item.kitchen.active, .ui.menu .item.kitchen:hover,
  .ui.menu .item.travel.active, .ui.menu .item.travel:hover,
  .ui.circular.text.menu .item.active, .ui.circular.text.menu .item:hover  { color: rgba(60, 60, 60, 0.6) !important; }
  .ui.circular.text.menu .item.active i, .ui.circular.text.menu .item:hover i {
    font-weight: normal; 
    color: rgba(60, 60, 60, 0.70) !important;
    background-color: transparent !important;
  }
  header .ui.circular.text.menu .header.item { font-weight: bold !important; color: rgba(50, 50, 50, 0.8) !important; }


  /* Search */
  header .hide-on-desktop .fitted.borderless.item { padding-top: 2em; padding-bottom: 2em;}
  header .hide-on-desktop .fitted.borderless.item input { padding: 0.5em 1.2em; }
  header .hide-on-desktop .fitted.borderless.item i { font-size: 1em !important; margin: -5px 0 0 !important; }
  header.main .ui.pointing.icon.menu .main.item.invent-m { margin-top: 1em; }


  /* User Menu */
  .mobile-sign-buttons { padding: 1em 0.95em 2em; border-top: 1px solid rgba(0,0,0,0.1); }
  .mobile-sign-buttons a { display: block !important; }
  .mobile-sign-buttons .ui.action.sign-up.button{ margin-bottom: 1em; }
  .ui.top.right.pointing.user.dropdown.link.item {
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 1em;
  }
  .ui.top.right.pointing.user.dropdown.link.item i{ font-size: .75em; }
  header .ui.top.right.pointing.user.dropdown.link.item .menu {
    position: static;
    background-color: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  header .ui.top.right.pointing.user.dropdown.link.item .menu .item {
    padding: 0 0 1em !important;
    border: none;
    font-size: 1rem;
    color: rgba(60, 60, 60, 0.6);  
  }
  header .ui.top.right.pointing.user.dropdown.link.item .menu .item:hover { background: transparent; }
  header .ui.top.right.pointing.user.dropdown.link.item i.up { display: none; }
  header .ui.top.right.pointing.user.dropdown.link.item .menu .item i { font-size: 1.2rem; }
  header .ui.top.right.pointing.dropdown .menu:after { display: none; }
  header .ui.top.right.pointing.user.dropdown.link.item .menu,
  header .ui.top.right.pointing.user.dropdown.link.item.visible .menu { display: block !important; }
  header .ui.top.right.pointing.user.dropdown.link.item i.caret { display: none; }
  .sign-up.bootstrap-modal.in {
    width: 96%;
    margin: 0 2%;
    left: auto;
    z-index: 10001;
  }
  .sign-up.bootstrap-modal .modal-dialog { width: auto; }
  #sessions .facebook.signup { margin: 0.5em 0 1em 0; }








  /*******************************
    Homepage
  *******************************/
  #home header.main .animate.logo .quirky.logo { color: #fff; }


  /* Login */
  html.nav-open .log-in { margin-left: 250px; }
  .log-in { width: 100%; }
  .log-in h2 { margin-top: 1em; }
  .log-in:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }


  /* Login Modal */
  .log-in.modal {
    width: 96%;
    margin: 0 2%;
    left: auto;
    z-index: 10001;
  }








  /*******************************
    Invent Pages
  *******************************/
  
  /* Nav Adjustments */  
  #main-view { float: left; width: 100%;}
  html.nav-open #main-view { margin-left: 250px; }
  body#ideations > .content > .placeholder, body#projects > .content > .placeholder, body#products > .content > .placeholder { 
    margin-top: 0;
    height: 0;
  }


  /* Loading Gif */
  #ideations .ui.loader { 
    position: relative; 
    background-position: center top;
    left: auto;
    margin-left: 0 !important;
    width: 100%;
    text-align: center;
    display: block;
  }
  #ideations .ui.form.large .ui.loader { display: none; }
  #ideations .ui.form.large .ui.dimmer { border-top: 0; }
  .touch-invent-menu { display: block; }
  .touch-invent-menu .field { margin-bottom: 1em; }
  .query-editor-view .sections { display: none; }
  #ideations .query-editor-view { width: 100% !important; float: none;}
  #ideations .view-container .submit.idea { width:100%; margin: 0 0 2em 0; } 
  #ideations .view-container .submit.idea h3 { display:none; }
  #ideations .view-container .sub-header.active { display:none !important; }
  #ideations .view-container .results { margin-left: 0 !important; }
  #ideations .view-container .results h2 { display: none; }
  #ideations .ideations-view ol.ideations { margin: 0 !important; }
  #ideations .ideations-view ol.ideations li { float: none !important; margin: 0 !important; width: 100% !important;}
  #ideations .ui.dimmer {
    position: static;
    opacity: 1;
    background: none;
    border-top: 1px solid rgb(217, 217, 217);
    border-radius: 0;
  }
  #query-sentence-view-container h1 { float: none !important; }
  #ideations .ui.screening.icon.message .icon.votes { display: none; }
  #ideations .view-container .results .secondary.page.header { text-align: center; }
  #ideations .ideations-view ol.ideations li { margin-bottom: 4% !important; }
  .ui.cards .card .dimmer .buttons > * { margin-left: 0 !important; }
  #ideations .vote-view .button { min-height: 16px !important; }
  #ideations .ideation-card-view .ui.progress .bar { border-radius: 0 !important; }
  #ideations .ideation-card-view .ui.progress { border-radius: 0 !important;}
  .ui.cards .card .dimmer .buttons, 
  .ui.card .dimmer .buttons { width: 100% !important; padding: 2% 0 !important;}
  #ideations .metadata .right { 
    text-align: left;
    float: none !important;
    clear: both !important;
    padding-top: 10px !important;
  }
  #ideations .section.similar .embedly-template img { float: none !important; margin-bottom: 1em; }
  #ideations .ui.loader.large { margin: 20px auto !important; }
  #ideations .sentence { display: none; }
  
  /* Add Idea */
  #submit .intro .banner p { margin: 2% !important; text-align:center; }
  #submit .intro .banner .how.submit.icon { display:none; }
  #submit .intro .banner .action.button { margin: 0 auto 2em auto !important; display:block !important; width: 90% !important; }
  #submit .elevator-pitch .form .field.categories .categories.block .category.block {
    width: 100% !important;
    float: none !important;
    min-height: 3em !important;
    line-height: 3em;
    text-align: left !important;
    padding: 2% 0 !important;
    box-sizing: border-box !important;
  }
  #submit .elevator-pitch .form .field.categories .categories.block .category.block i {
    display: inline !important;
    margin: 0 0 0 2% !important;
  }
  .form .field.categories .categories.block .category.block i { font-size: 2em !important; }
  #submit .form .field.categories .categories.block .category.block i { font-size: 1.25em !important; padding: .125em .5em; }
  .ui.grid > .column.tips { display:none; }
  #submit .elevator-pitch .form .field.categories .categories.block .category.block.kitchen { border-radius: 0 !important; }
  #submit .bread-crumb-view { display:none; }

  #submit .submission.form .field .counter {
    float: none !important;
    display: block !important;
  }

  #submit .submission.button.back,
  #submit .submission.button.next, 
  #submit .submission.button.submit,
  #submit .submission.button.finish {
    float: none !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 1em !important;
  }


  #submit #droploader .qq-upload-drop-area { 
    background: none !important;
    height: auto !important;
  }

  #submit #droploader .qq-upload-drop-area p { margin-top: 0 !important; }
  #submit #droploader .qq-uploader span { display: none; }

  #submit .categories .ui.large.popup { visibility: hidden; }
  #submit .submission.form i.question.popup { display: none; }

  /* Login to Submit */
  .log-in.modal .content .left, .log-in.modal .content .right { width: 100%; float: none; }
  .vertical.ui.divider { display: none; }
  .log-in.modal .right > .facebook { margin: 30px 0 0 0; border-bottom: none; }
  .log-in.modal .right > .facebook a { width: 100%; } 
  .log-in.modal .right > .facebook .button { margin-left: 0; }
  .log-in.modal .sign-up .button { width: 100%; margin-left: 0;}
  .log-in.modal .sign-up { margin: 0; }
  .log-in.modal .right .sign-up p { text-align: center; }
  .log-in.modal form { width: 100%; }

  /* Community Feedback */
  .ui.comments .reply.form { width: auto !important;}




  /*******************************
    Influence Pages
  *******************************/
  
  /* Nav Adjustments */  
  .projects.page, #portfolio { float: left; width: 100%; }
  html.nav-open .projects.page, html.nav-open #portfolio, html.nav-open #products .shop.home { margin-left: 250px !important; }

  /* Influence */
  #projects header .ui.vertical.circular.text.category.menu, #products header .ui.vertical.circular.text.categories.menu { display: block; }
  #projects .ui.vertical.circular.text.category.menu,
  #products .ui.vertical.circular.text.categories.menu { display: none; }
  #products .product.card,
  #products .ad_unit.column,
  #ideations .ideations-view ol.ideations li { margin-bottom: 2em !important; }
  #projects .ui.tabular.menu .item,
  #projects .ui.tabular.menu .item.active,
  #products .ui.tabular.menu .item,
  #products .ui.tabular.menu .item.active { width: 50%; text-align: center; }
  #projects .product.card .ui.dimmer {
    position: static;
    opacity: 1 !important;
    background: none;
    border-top: 1px solid rgb(217, 217, 217);
    border-radius: 0;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
  }
  #projects .ui.cards .card > .progress, .ui.card > .progress { border-radius: 0 !important; z-index: 1 !important;}
  #projects .ui.cards .card { margin-bottom: 2em !important;border-bottom-left-radius: 0px; border-bottom-right-radius: 0px; }
  #projects .vote-view .button { min-height: 16px !important; }
  #projects .ui.product.cards .card .dimmer .buttons { padding: 0 2% !important; box-sizing: border-box; }
  #projects .ui.product.cards .card .dimmer .button { margin: 0;}
  #projects .ui.product.cards .card .dimmer .button { margin-bottom: 10px; }
  #projects .ui.product.cards .card .dimmer .button:first-child { margin-top: 10px !important; }
  #projects .thank-you-for-feedback { margin: 2em 0 !important; }
  #projects .thank-you-for-feedback .ui.large.button { font-size: 1rem; }
  #projects .show .project-details .influence.popup { display: none; }
  #projects .show { margin-bottom: 1em !important; }

  /* Design Project */
  #projects #comparison { margin-top: 0; }
  #projects .project-header, #ideations .project-header {  height: auto !important; display:block !important; overflow: hidden; }
  #projects .project-header .product-image, #ideations .project-header .product-image { display: none; }
  #projects .project-header .info, #ideations .project-header .info { margin-left: 0; }
  #projects .project-header .info .title-row, #ideations .project-header .info .title-row, .project-header .influencers, .project-header .info .tagline, .project-header .who { text-align: center; }
  #projects .project-header .pad, #ideations .project-header .pad { 
    margin: 0 auto; 
    padding: 0;  
    float: none; 
    display:block; 
    clear: both; 
    text-align:center; 
    top: auto;
  }
  #projects .introduction-view .product-row .image { float: none; margin: 0 auto; }
  #projects .introduction-view .start { width: auto; }
  #projects .project-header .who, #ideations .project-header .who { top: auto !important;}
  .project-header .pad > .avatar, #ideations .project-header .pad > .avatar { display: none !important; }
  #ideation-grid-items .idea-item .ui.labeled.icon.button > .icon { display:none;}
  #ideations .ui.two.column.project-details.grid > .column,
  #projects .show .project-details .column { 
    display:block; 
    width: 100%; 
    margin: 0 !important; 
    padding: 2% !important; 
    border: 0;
    border-top: 1px solid #ddd; 
    box-sizing: border-box;
    background: none;
  }
  .ui.two.column.project-details.grid > .column .ui.header { margin: 0; }
  #projects .show .project-details .column .ui.header { margin-bottom: 0 !important; }
  #products #portfolio .ui.two.product.cards { margin-left: 0 !important; }
  html.nav-open .project-header { margin-left: 250px; }

  /* Comparison Project */
  #comparison .introduction-view .product-row .ui.page.heading, .introduction-view .introduction-column {
    float: none !important;
    width: 100% !important;
    clear: both !important;
  }
  .your-submissions-view { margin-top: 1em; }
  #profile #profile-header .meta .hometown, #profile-header .meta .joined { margin-right: 0; display: block; }

  /* Naming & Tagline Project */
  #projects .project-header .info .tagline, #projects .project-header a.pad, #application-container .comparison.ui.divider { display: none; }
  #projects .project-header .introduction-view { padding-top: 0;}
  #projects .introduction-view .product-row .image { width: auto !important; }
  #projects .introduction-view { padding-top: 0;}
  #projects .introduction-view .product-row .image img { width: 100% !important; }
  #projects .introduction-view .product-row .image .time-remaining { width: 100% !important; left: 0; bottom: 0; }
  #comparison .ui.page.heading h2.title { font-size: 1.25em; text-align: left;}
  #comparison .ui.page.heading h3.subtitle { font-size: 1em; }
  #comparison .introduction-view .start a { font-size: 1rem; }
  #projects .project-header { padding: 20px 0 0 0; margin-bottom: 1em; }
  #projects .project-header .influencers { margin-top: 10px; }
  #projects #comparison .sub-header { display: none; }
  #projects .comparison-view .compare .card-container { width: 100%; float: none; }
  #projects .comparison-view .compare .card { width: 100%; padding: 0; }
  #projects .comparison-view .compare .card p.center { font-size: 24px; }
  #projects .comparison-view .compare .card.back .rank { font-size: 70px; }
  #projects .comparison-view .compare .card.back .rank .suffix { font-size: 20px; }
  #projects .comparison-view .compare .card.back .rank .small { left: 0; }
  #projects .comparison-view .compare .cards,
  #projects .comparison-view .compare .card p.center,
  .comparison-view .compare .card.back p.sentence.top { width: 100% !important; }
  #projects .comparison-view .compare .card.back p.sentence.left { margin-bottom: 0; }
  #projects .comparison-view { margin-bottom: 3em; }
  #projects .comparison-view .compare a.skip { right: 0; bottom: 0; }
  #projects .comparison-view .compare p.counter { text-align: left; }
  #projects img { width: 100%; height: auto; }
  #projects .show .items .who img { width: 1.5em; }
  #projects .show .items .item .name { height: auto;}


  /* Submit Tagline Modal */
  .modal.naming { width: 90% !important; margin-left: -45% !important; }
  .modal.naming p.blurb { font-size: 1em  !important; width: auto !important; }
  .modal.naming .bottom { display: none !important; }
  .modal.trophy { width: 90% !important; margin-left: -45% !important; }
  .modal.trophy .sketchy.trophy.icon { display: none !important; }
  .ui.modal > .content { padding: 1em; }
  .ui.labeled.icon.buttons .button, .ui.labeled.icon.button { padding-left: 3.5em !important; padding-right: .9em !important; }


  /* Price Project */
  #upcoming_details #psm_graph .psm_avg_wrapper h3 { 
    width: 100% !important;  
    float: none !important;
    clear: both !important; 
  }
  #upcoming_details #psm_graph { width: auto !important; }
  #upcoming_details #psm_graph .psm_avg_wrapper { width: auto !important; }
  #upcoming_details .psm_avg_bar { display: none !important; }
  #upcoming_details #psm_graph .psm_yours { width: 100% !important; float: none !important; }
  .prod-thumbs { width: auto !important; }
  #upcoming_details #prod_img_wrapper { min-height: 0 !important; }
  #upcoming_details  { margin-bottom: 20px !important; }


  /* Demographics Project */
  #demographics .form input[type='text'] { width: auto !important; }
  #demographics .demographics { margin-top: 40px; }
  #demographics .ui.piled.segment { padding: 3% !important;}
  

  /* Research Project */
  .ui.three.items > .item { width: 100%; }
  .show .project-actions .submit-idea, .show .project-actions .action-button { float: none !important; }
  .show .project-actions .submit-idea a, .show .project-actions .action-button a { display: block; margin-bottom: 1em; }
  

  /* Portfolio */
  #portfolio .menus, .sticky-wrapper { display: none; }
  #products #portfolio .product.cards { margin-left: 0 !important; }
  #projects #portfolio .product.cards { margin-left: 0 !important; }
  #products .ui.responsive.grid { min-width: 0; }
  #portfolio .featured .text { 
    top: 0 !important; 
    left: 0 !important; 
    padding: 0 !important; 
    width: 100% !important;
    height: 100% !important;
    text-align: center !important;
  }

  /* Timeline */
  #timeline .timeline-show { float: left; width: 100%; }
  html.nav-open  #timeline .timeline-show { margin-left: 250px !important; }
  #timeline .ui.responsive.grid.timeline-show { margin-bottom: 25px; }
  #timeline #form_dimmer { display: none; }
  #timeline .ui.column.winning-ideation { width: 100%; margin-bottom: 1rem !important; }
  #timeline .feedback.ui.feed .label { display: none; }
  #timeline .ui.feed.feedback .event { padding: 0.75em 0 0.75em !important; }
  #timeline .event .feedback .comment.event .activate { padding: 0 1em; }
  #timeline .ui.segment img { height: auto; }
  #timeline .ui.segment.shadowless.basic { width: 100% !important; }
  #timeline .event .name.cont-toggle { text-align: left !important; padding-left: 30px; }
  #timeline .event .triangle.teal.icon { position: absolute !important; top: 4px !important; left: 0 !important; } 


  /* Winners */
  #timeline .ui.table.segment.vote thead { display: none; }
  #timeline .ui.table.segment.vote tbody tr { display: block; }
  #timeline .ui.table.segment.vote tbody tr td { display: block; }
  #timeline .ui.table.segment.vote tbody tr td:first-child, #timeline .ui.table.segment.vote tbody tr td:nth-child(2) { display: inline-block; width: 49%; }
  #timeline .ui.table.segment.vote tbody tr td:first-child { font-size: 1.1em; }
  #timeline .ui.table.segment.vote tbody tr td:nth-child(2) { text-align: right; }
  #timeline .ui.table.segment.vote tbody tr td:nth-child(3), #timeline .ui.table.segment.vote tbody tr td:nth-child(4) { width: 100%; }
  #timeline .caption { position: relative; }
  #timeline .caption .ui.image.fifty { display: block !important; position: absolute; right: 0; }
  #timeline .caption .caption-text { padding-right: 60px; display: block; }
  #timeline .user .ui.circular.image { margin-right: 4px !important; width: 20px !important; }






  /*******************************
    Shop Pages
  *******************************/
  .shop.home .ui.responsive.grid .row .four.wide.column { display:none !important; }
  .shop.home .ui.responsive.introduction.grid .row .column:last-child { padding-top: 10px !important; }
  .shop.home .ui.responsive.grid .row .column { padding-left: 0 !important; padding-right: 0 !important; }
  .shop.index .featured h2 { text-align: left; }
  .shop.index .content { 
    border: 0 !important;
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
  }
  .shop.index .image.background { 
    height: 200px !important; 
    background-image: none !important; 
  }
  header.main.ui.responsive.grid + .shop.home { display: block; }
  #featured-box { margin-bottom: 1em; }
  #feature-box .four.wide.column,
  #reviews-section .ui.well.segment { display:none !important; }
  .shop.show .featured { padding: 20px 0 0 !important; }
  .shop.show .featured .thumbnails.ui.grid,
  .share.ui.slim.segment,
  .shop.show .main section.navigation,
  .shop.show .main section.inventor .avatar { display: none !important; }
  .shop.show .main section.sections { background: #f8f8f8; padding-top:30px; }
  .shop.show .main section.sections h2 { padding-top: 20px; }
  .shop.show .main section.inventor h2 { text-align: left; }
  .shop.show .main section { padding: 1em 0 !important;}

 .shop.show .featured .ui.video.segment:after {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
  }

  .shop.show .featured .video .sketchy.play.icon {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
  }

  .shop .index.title h1 { font-size: 1.5rem !important; }
  .shop .index.title h2 { font-size: 1.1rem !important; padding-top: 1em !important;}
  #fixed {
    position: fixed;
    z-index: 999 !important;
    background: rgba(248,248,248,.95);
    border: 0;
    width: 100%;
    padding: 10px 0;
    top: auto !important;
    bottom: 0 !important;
    box-shadow: 0 -5px 10px rgba(0,0,0,.1);
  }
  .nav-open #fixed { display: none; }
  #buyBarGrid .sixteen.wide.column.bar,
  #fixed .ui.grid.buy.bar {
    padding: 0 !important;
    border-radius: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    box-shadow: none !important;
  }
  .ui.grid.buy.bar .five.wide.column { width: 100%; }
  .ui.grid.buy.bar .six.wide.column { width: 100%; }
  .ui.grid.buy.bar { background: none !important; border: none !important;}
  .ui.grid.buy.bar > .row:first-child { padding-top: 0 !important;}
  .shop.show #fixed .buy.bar .row h3 { display: none; }
  .shop.show #fixed .buy.bar .row h4 { display: none; }
  .ui.three.column.grid > .row > .ad_unit.column,
  .ui.three.column.grid > .row > .column, .ui.three.column.grid > .column, .ui.grid > .three.column.row > .column { width: 100%; }
  .show.show .buy.bar .row h4 { padding-bottom: 10px;}
  .ui.grid.buy.bar { height: auto !important; }
  #reviews-section { padding-bottom: 60px; }
  #buyBar .field { padding-bottom: 0 !important; margin-bottom: 0 !important; }
  .ui.stackable.grid .row > .specifications.column { padding-top: 20px !important; }

  /* Nags */
  #ideations .ui.top-nag.message { margin: 0 1% !important; }
  #ideations .ui.top-nag.info.message .header {
    display: none;
  }
  /* Nav Adjustments */
  #products .shop.index, #products .shop.home { float: left; width: 100%; }
  #products .shop.index:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
  #products .product.card { margin-bottom: 1em !important; }
  html.nav-open #products .shop.index { margin-left: 250px; }


  /* Checkout */
  #checkout > .content { padding-top: 0;}
  body > .content > .placeholder { height: 0; margin-top: 0; }
  body#checkout #main-view { margin-top: 0; padding-top: 0 !important; }
  #checkout-content p a.link.previous.step { width: 100%; }
  .checkout .ui.top.attached.header h3 i.icon {display:none;}
  .ui.checkout.grid .ui.sixteen.wide.column { position: static !important; left: auto !important;}
  #rundown-view aside.rundown { width: auto; display:none; }
  #rundown-view .rundown-title {
    width: auto;
    float: none;
    display: block;
    padding-left: 0;
    text-align: center;
    padding-bottom: 10px;
    margin-top: 1em;
  }
  #rundown-view .inside-container {
    float: none;
    width: auto;
    border-left: 1px solid #ddd;
    border-radius: 0.3125em;
  }
  #rundown-view .secure {
    clear: both;
    width: auto;
    padding: 0;
    float: none;
    text-align: center !important;
  }
  #rundown-view .secure i {
    float: none;
    display: inline-block !important;
    text-align:center;
    margin-top: 1em;
  }
  #rundown-view { margin: 0 2%; }

  #checkout .continue-shopping {
    display: none;
    text-align: center;
    padding: 0.5em 0;
  }
  #width-locker,
  .ui.checkout.grid .steps { width: auto !important; margin: 0 auto !important;  }

  .ui.checkout.grid .steps { padding-top: 1em !important; }
  #checkout #touch-header { display: none; }
  #checkout .ui.right.labeled.icon.button .icon { display: none; }
  #checkout .ui.right.labeled.icon.button { padding-right: 1.4em !important; width: 100% !important; box-sizing: border-box !important; }
  #checkout .review-cart .item .image img { display:none; }
  #checkout .login-action { float: none; padding-bottom: 1em; text-align:center !important; }
  .what-is-this { display: none; }
  .summary .ui.two.column.grid > .column { width: 100%; }
  #checkout #checkout-content h3.ui.top.attached.header i.icon { display: none !important; }
  .ui.steps.checkout-progress { height: auto !important; display:none !important; }
  /*.ui.steps.checkout-progress .ui.step:first-child,*/
  .ui.steps.checkout-progress .ui.step {
    padding: 1em 0 !important;
    width: 25% !important;
    display: inline-block !important;
  }
  #checkout .log-in { float: none !important; width: auto !important;}
  .ui.steps.checkout-progress .ui.step:first-child { margin-left: 0 !important; }
  .ui.steps .step:before { display:none; }
  .ui.menu .item.active { color: #01b5aa !important; font-weight: bold !important; }
  .ui.small.header { margin-bottom: 0; }


  /* Percentage instead of text */
/*  #progress-view {
    padding: 1em 0;
  }

  .ui.steps.checkout-progress { 
    border-radius: 5px;
    -webkit-background-clip: padding-box; 
    -moz-background-clip:    padding; 
    background-clip:         padding-box;
  }

  .ui.steps.checkout-progress .ui.step {
    display: inline-block;
    background: #01b5aa;
    width: 25%;
    height: 0px;
    text-indent: -999em;
    font-size: 4px !important;
  }

  .ui.steps.checkout-progress .ui.step:first-child {
    border-radius: 5px 0 0 5px;
  }

  .ui.steps.checkout-progress .ui.step:last-child {
    border-radius: 0 5px 5px 0;
  }

  .ui.steps.checkout-progress .ui.step a { 
    text-decoration: none; 
    visibility: hidden;
    font-size: 4px !important;
  }

  .ui.steps.checkout-progress .ui.active.step {
    background: #01b5aa;
    text-indent: -999em;
  }

  .ui.steps.checkout-progress .ui.active.step ~ .ui.disabled.step {
    background: #ddd;
  }

  */

  #progress-view {
    position: static !important;
    top: 0!important;
    left: 0 !important;
    width: 100% !important;
    display: block;
  }

  #checkout-logo-container {
    padding: 1em 0 !important;
    border-bottom: 1px solid #dcddde;
    background: #fff;
    width: 100vw !important;
    margin-left: -4% !important;
    height: 16px;
  }

  #checkout-logo-container #checkout-logo {
    width: auto !important;
    margin-top: 0px !important;
    position:static !important;
    left: auto !important;
    text-align: center;
  }

  #checkout-logo-container #checkout-logo i.shape { display: none !important; }
  #checkout-logo-container #checkout-logo i.logo { 
    position: absolute !important; 
    top: -5px !important; 
    left: 0 !important;
    font-size: 4.2em !important;
    color: #5D6266;
    margin: 0 !important;
    width: 100% !important;
    text-align: center !important;
  }

  #checkout .ui.form .grouped.fields { margin-bottom: 0 !important;}

  /* Address Validation */
  .address-picker-modal .modal-dialog { width: auto !important;}
  .address-picker-modal address { margin-bottom: 10px !important; }
  .address-picker-modal .centered-address { width: auto !important; margin-bottom: 30px !important;}
  .address-picker-modal .ui.two.column.grid > .column { width: 100%; }


  /* Summary */
  .ui.padded.table.cart td,
  .ui.padded.table.cart th,
  .ui.segment.review-cart .ui.table.padded tfoot td, 
  .ui.segment.review-cart .ui.table.padded tfoot th { padding: .3em !important; }


  /* Order Confirmation */
  #orders .ui.right.floated.header { float: none; margin-left: 0; }
  #orders #referral { padding: 2em; margin-bottom: 2em; }
  #orders #referral input { width: 100%; }
  #orders #referral h2 { font-size: 1.5rem; }
  #orders .order-items tr { padding-bottom: 15px; display: block; }
  #orders .order-items tr td { display: block; padding: 0 !important; }
  #orders .order-items tr td h3 { padding: .3em .7em 0; }
  #orders .order-items tr td p { padding: 0 15px; }
  #orders .order-items tr td .ship-date { padding: 0 15px; }
  #orders .order-items tr td.image, #orders .order-items tr td.share-purchase { display: none; }
  #orders .order-items tr td .quantity-display { padding-left: 15px; }
  #orders .order-summary .column h4 { margin-bottom: .25rem; margin-top: 1rem !important; }


  /* Cart Modal */
  .cart-items-modal .ui.padded.table.cart thead { display: none; }
  .cart-items-modal .ui.padded.table.cart tr:after { 
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
  .cart-items-modal .ui.padded.table.cart td { display: block; width: 10%; float: left; }
  .cart-items-modal .ui.padded.table.cart tfoot td { width: 100%; }
  .cart-items-modal .ui.padded.table.cart td.name { padding: 0 10px !important; width: 100% !important; }
  .cart-items-modal .ui.padded.table.cart td.price { 
    padding-left: 10px !important;
    float: left;
    width: 30% !important;
    text-align: left !important; 
    margin-top: 6px;
  }
  .cart-items-modal .ui.padded.table.cart td.x { float: left; width: 10% !important; margin-top: 6px; }
  .cart-items-modal .ui.padded.table.cart td.quantity { float: left; width: 30% !important;}
  .cart-items-modal .ui.padded.table.cart td.remove { 
    float: left;
    width: 30% !important;
    text-align: right;
    padding-right: 10px !important;
    margin-top: 7px;
  }
  .cart-items-modal .ui.padded.table.cart td.subtotal { float: left; width: 40% !important; text-align: left !important; }
  .cart-items-modal .ui.padded.table.cart td.large-price { text-align:left;font-size:2em;float: left; width: 60% !important; padding-right: 10px !important; }
  .cart-items-modal .ui.table.cart tfoot .subtotal.label { float: left; text-align:left;}
  .cart-items-modal .ui.padded.table.cart span.soft { font-size: .8em; }
  .cart-items-modal .ui.padded.table.cart .ui.select .options { padding: 0.65em 1.2em; }
  .cart-items-modal .ui.table.cart tr.item .name h2 { font-size: 1.2em !important; }
  .cart-items-modal .cart-items-container { padding: 10px; }
  .cart-items-modal .ui.table.cart tfoot tr td.subtotal.label { line-height: 1; margin-bottom: 10px; }
  .modal-dialog { width: auto; z-index: 11000;}
  .modal-dialog .header h2 { text-align: left; }
  .modal-dialog .cart tbody tr td:first-child img { display:none; }
  .modal-dialog .cart h2 { text-align: left; }
  .modal-dialog > .close { right: 0 !important; }
  .modal-dialog .cart tbody tr td .image,
  .cart-items-modal .continue-shopping { display:none; }
  .modal-dialog .ui.padded.table.cart td,
  .modal-dialog .ui.padded.table.cart th { padding: .3em; }
  .cart-items-modal .ui.table.cart tr.item .price+td.x { padding-right: .3em;}
  .cart-items-modal .ui.table.cart tr.item .name h2,
  .cart-items-modal .ui.table.cart tr.item .price,
  .cart-items-modal .ui.table.cart td.large-price,
  .cart-items-modal .ui.table.cart tr.item .quantity .ui.form .field select { font-size: 1em; }








  /*******************************
    User Profile & Settings
  *******************************/

  /* Profile */
  #profile #profile-header .avatar { 
    display: block !important; 
    float: none !important; 
    margin: 10px auto !important;
  }
  #profile .ideas .ui.header { padding-top: 1em !important; display:block !important; }
  .ui.right.floated.menu { float: none; display:block; }
  #profile #profile-header h1 { text-align: center; }
  #profile #profile-content { padding-top: 1em !important; }
  #profile #profile-content .five.menu { top: 0px !important; margin-bottom: 1rem !important;  }
  #profile #profile-header .bio,
  #profile #profile-header .skills { margin: 0 !important; text-align: center !important; padding-bottom: 10px !important;}
  #profile #profile-header { 
    height: auto !important;
    display:block !important;
    overflow: hidden;
    margin-top: 3em; 
    padding-bottom: 2em !important;
  }
  #profile #profile-tabs .ui.responsive.grid { overflow: hidden; padding-top: 1px; }
  #profile #profile-content .five.menu { top: 0; }
  #profile #profile-content .menu .item {
    padding: 4% !important;
    border: 0 !important;
    border-bottom: 1px solid #ddd !important;
    width: 100% !important;
    text-align: left !important;
  }
  #profile #profile-content .ui.right.floated.menu { margin-left: 0 !important; }
  #profile #profile-content .ui.menu .item { min-height: 0 !important; }
  #profile-header .ui.label { margin: 0.5em 0.25em 0em; }
  #profile-content .ui.feed .content .date { float: none; padding-left: 0; }
  #profile #profile-header .earnings { margin-top: .25em !important; }
  #profile #profile-header .meta { margin: 1em 0 0 0 !important; text-align: center !important; padding-bottom: 10px !important; }
  html.nav-open #profile-header, html.nav-open #profile-content { margin-left: 250px;  }

  /* Stick Figure */
  html.nav-open #sketches > .content { background: transparent;}
  .account.sketches { width: 100%; float: left; }
  .account.sketches:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
  .account.sketches { background: #F0F0F0 url(//p1.q-static.com/images/drawing/bg.png?1419868763) repeat; margin-bottom: 0; padding-bottom: 2em; }
  #sketches .drawing-container { width: auto !important; margin: 2em auto !important; }
  #sketches .links .logo { width: 100% !important; background-position: center center !important; left: auto !important; }
  #sketches .canvas-container { margin: 0 auto 35px; }


  /* Inbox */
  html.nav-open .account, html.nav-open .inbox-grid, html.nav-open #forum > .content > .page, html.nav-open #faq { margin-left: 250px !important; }
  .account, .inbox-grid, #faq { float: left; width: 100%; }
  #forum > .content > .page { width: 100%; }
  .account:after, .inbox-grid:after, #forum > .content > .page:after, #faq:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
  .inbox-grid { margin-top: 1em; }
  #learn .navigation.menu.shop { float: none; }
  .account { margin-bottom: 2em; }
  .account h2.ui.header { margin-top: 1em; }
  #inbox .float-r { float: none; margin-bottom: 1em; }
  html.nav-open .inbox-grid { margin-left: 250px; }

  /* Forum */
  #forum .topic.selection { float: none !important; margin-top: 1em !important; }
  #forum h1.header { margin-bottom: 0; }
  #forum .post.button { float: none  !important; }
  .ui.piled.segment { padding: 0; margin-bottom: 2em !important; }
  .ui.piled.segment:before, .ui.piled.segment:after { display: none; }
  .ui.pagination.menu .item { min-width: 2em; }
  #forum .post.page .ui.segment { padding: 1em !important; }
  #forum .ui.segment .post { margin-left: 0 !important; }
  #forum .ui.segment .ui.header .content { margin-left: 0 !important; }

  #inbox .ui.inbox.feed .event.new { word-break: break-all; }
  #inbox .ui.inbox.feed .label { display: none !important; }
  #inbox .ui.feed .label + .content { padding: 0 !important; }
  #inbox .ui.feed .content .extra.text { border: 0 !important; padding: 0.5em 0 !important;}

  /* Team */
  #about .team .portraits .portrait {
    width: 100px !important; 
    min-height: 210px ;
    float: none !important;
    display: inline-block !important;
    vertical-align: top;
  }
  #about .team .portraits .portrait:nth-child(5n+1) { clear: none !important; }
  #about .team .filter { display: none; }
  #about .team .portraits { margin: 50px auto 0; text-align: center; }
  #about .ui.header { text-align: center; }
  #about .team .board .portraits .portrait { min-height: 0; }
  #about .team .board h1 { text-align: center; }
  body#about .page { width: 100%; float: left; }
  body#about .page:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
  html.nav-open body#about .page { margin-left: 250px; }

  /* Following */
  #profile #profile-content .tab.following table td.who { padding-right: 0 !important; }
  #profile #profile-content .following .table tbody td.who h3, #profile-content .followers .table tbody td.who h3 { font-size: 1em; font-weight: normal; }
  #profile #profile-content .following .table tbody td.who i img, #profile-content .followers .table tbody td.who i img { width: 2em !important; }
  #profile #profile-content .following .table tbody td.action, #profile-content .followers .table tbody td.action { padding-left: 0 !important; width: auto !important;}
  #profile-content .following.tab .follow.button, #profile #profile-content .followers.tab .follow.button { padding: .5rem; width: auto !important; }
  #profile #profile-content .ui.menu.pagination .item { 
    width: auto !important; 
    min-height: 2.55em !important; 
    line-height: 2.55rem;
    text-align: center !important;
  }
  #profile #profile-content .influenced.tab .three.ui.cards .card { margin-bottom: 2rem !important; }

  #dashboard .account.shipping .addresses .address {}
  #dashboard .account.shipping .ui.two.column.grid > .column { width: 100% !important; }
  #dashboard .address-block.cc span { display: block; }
  #dashboard .address-block.cc a { margin-bottom: 2em; }
  #dashboard .ui.menu.five.item .item { 
    padding: 0.75em 0.5em !important;
    margin: 0;
    border: 0;
    display: block;
    text-align: left;
    width: 100%;
    border-top: 1px solid #ddd; 
  }
  #dashboard .ui.menu.five.item .item:first-child { border-top: 0; }
  #dashboard .ui.icon.message>.icon { display: block; width: 100%; margin-bottom: .25em; }
  #dashboard .ui.icon.message > .content { display: block; }

  /* Orders */
  #cm-orders-table { width: 100%; display: block; padding: 0; } 
  #cm-orders-table thead { display: none; }
  #cm-orders-table tbody { display: block; width: 100%; }
  #cm-orders-table tbody tr { display: block; padding: 4%; }
  #cm-orders-table tbody tr:after {  
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
  }
  #cm-orders-table tbody td { display: block; padding: 0; }
  #cm-orders-table tbody td:nth-child(3), #cm-orders-table tbody td:nth-child(4), #cm-orders-table tbody td:nth-child(5) { float: left; width: 33.33%; margin-top: 4px; }
  #cm-orders-table tbody td:nth-child(3):after { content: " Items"; }
  #cm-orders-table tbody td:nth-child(4) { text-align: center; }
  #cm-orders-table tbody td:nth-child(5) { text-align: right; text-transform: capitalize; }
  #cm-orders-table tbody td a { font-size: 1.5em; }
  #cm-orders-table tbody td a span { font-size: .65em; }

  /* Refer */
  #refer-friend .share-link .ui.labeled.icon.button { width: 100%; }

  /* Shipping */
  #dashboard .account.shipping .addresses .address p { margin-top: 0; }

  /* User Profile Settings */
  #profile header.main + .account.profile { padding-top: 4em; }

  /* Terms & Conditions */
  #home .terms { float: left; width: 100%; }
  html.nav-open #home .terms { margin-left: 250px; }

  /*******************************
    About Pages
  *******************************/
  #about .page { padding-top:2em; }
  #about .page.contact .inlay img { max-width: 100%; }


  /* How it Works */
  #learn #hero,
  #learn #submit .icon.eighteen,
  #learn #earn-cash img { display:none; }
  #learn .float { float:none !important; }
  #learn #path { text-align: center; width: auto !important; background: none !important; height: auto !important; float: none !important; clear: none !important; padding: 20px 0 0 0 !important; }
  #learn #path .stage { float: none; display: inline-block !important; margin-right: 5px; position: static !important; left: auto !important;clear: none !important; top: auto !important; right: auto !important; bottom: auto !important; }
  #learn .float { width: 100% !important; padding: 0 !important;}
  #learn p { padding: 2% !important; }
  #learn .leader,
  #learn .icon.eighteen { display: none !important; }
  #learn #eval-container .play { left: 50% !important; margin-left: -100px !important; }
  #learn #how-it-works p { padding-bottom: 20px; }
  #learn .ui.tabular.menu { display:none; }
  #learn .ui.eleven.wide.column .ui.piled.segment { margin-top:20px; }
  .mygrid { width: auto !important; padding: 0 !important; }


  /* Press */
  #about .page.press .news li img { float: none !important; margin: 0 auto; display: block; }
  #about .page.press .news li hgroup { margin: 0 !important; text-align: center; }
  #about .page.press .news li hgroup h2 { margin-bottom: 0; }


  /* Blog */
  #blog .masthead { display: none; }
  #blog .masthead+.ui.divider { display: none; }
  #blog header .search { float: none !important; width: 100%;}
  #blog .ui.attached.navigation.menu a.item { width: 100%; border-top: 1px solid #ddd; }
  #blog .ui.attached.navigation.menu a.item:first-child { border-top: 0; }
  #blog .archive .view .category,
  #blog .archive .view .date,
  #blog .post article,
  #blog .post aside { float: none !important; width: 100% !important; clear: both !important; overflow: hidden !important; }
  #blog .post .submission textarea,
  #blog .post .submission .overlay { width: 100% !important; }
  #blog .post .dividing.header { margin-top: 0 !important; }  
  #blog .post .submission { margin-bottom: 30px; }
  #search .results cite { display: none; }
  #search .ui.large.form { width: 100%; }
  header.main + *, header.main + .ui.responsive.grid { padding-top: 1em; }


  /* FAQ */
  #learn #faq .ui.tab p,
  #learn #faq .ui.tab h4 { margin: 0; padding: 0 1em !important; }
  #learn #faq .ui.tab p img { width: 100%; }
}

/* Live */
@media only screen and (max-width: 1024px) {
  #live .main-frame.opened {
    margin-right: 0 !important;
  }
  #live .sidebar {
    display: none;
  }
  #live .quirky-poll {
    margin-top: 0;
  }
  #live header.main .logo {
    display: block;
    color: #FFF;
  }
  #live .content {
    padding-top: 0 !important;
  }
  #live .quirky-poll .left {
    padding-right: 0 !important;
  }
  #live .quirky-poll .right {
    display: none !important;
  }
  #live .about-eval .left-section {
    width: 100% !important;
    float: none !important;
    padding-right: 0 !important;
  }
  #live .about-eval .right-section {
    width: 100% !important;
    float: none !important;
  }
  #live .main-frame .social {
    padding-top: 1rem !important;
    float: none !important;
  }
  #live .quirky-poll {
    margin-top: 70px !important;
  }
}


@media only screen and (min-width: 767px) and (max-width: 1024px) {
  #live .quirky-poll .left { 
    padding-right: 330px !important; 
  }
  #live .quirky-poll .right {
    display: block !important;
  }
}

/*******************************
  Additional Breakpoints
*******************************/

/* Influence and Portfolio Headers */
@media only screen and (max-width: 1100px) {
  #projects .index .introduction.responsive.grid .column,
  #portfolio .introduction.responsive.grid .column {
    width: 100%;
  }
  #projects .index .introduction.responsive.grid .ui.tabular.menu,
  #portfolio .introduction.responsive.grid .ui.tabular.menu {
    text-align: left;
  }
  #projects .index .introduction.responsive.grid .ui.tabular.menu .item,
  #portfolio .introduction.responsive.grid .ui.tabular.menu .item {
    text-align: center;
    width: 50%;
  }
  #projects .index .introduction.responsive.grid .ui.tabular.menu .active.item,
  #portfolio .introduction.responsive.grid .ui.tabular.menu .active.item {
    color: #9DA6AB !important;
  }
}

/* Influence Tabs */
@media only screen and (min-width: 320px) and (max-width: 370px){
  .ui.tabular.menu .item { padding: 0.75em 0.5em; }
  .index.title h1 { font-size: 1.5rem !important; }
}




/* Sketch Figure */
@media only screen and (max-width: 440px) {
  .ui.navigation.menu.top.attached .item { min-height: 56px !important; padding: 0.75em 10px !important; }
  #sketches ul.strokes { text-align: center; }
  #sketches ul.strokes li {
    display: inline-block !important;
    float: none !important;
    margin: 0 5px !important;
    width: 27px !important;
    height: 26px !important;
    background-size: cover !important;
  }
  #sketches .links a.help { z-index: 10; }
}


/* Sketch Figure Canvas */
@media only screen and (max-width: 520px) {
  .canvas-container, #canvas, .upper-canvas { height: 300px !important; width: 300px !important; }
}



/* Visibility */
@media only screen and (min-width: 767px) {
  header .hide-on-mobile { display: inline-block !important; }
  header .hide-on-desktop { display: none !important; }
  #checkout .hide-on-desktop { display:none; }
  header .mobile-caret { display: none !important; }
  /*header.main .secondary.user.menu .fitted.borderless.item { display: none; }*/
  header.main .ui.icon.menu .icon.hide-desktop { display: none; } 
  header.main .ui.icon.menu .icon.hide-mobile { display: inline-block; } 
  .touch-invent-menu { display: none; }
}

@media only screen and (max-width: 850px){
  header.main .secondary.user.menu .how.link.item { display: none; }
}

@media only screen and (min-width: 1024px) and (max-width: 1055px){
  header.main .secondary.user.menu .how.link.item { display: none; }
}
