/* --------------------------------------------
CSS Dock

Version: 	2.0
Author:		Michael Hüneburg
URL: 		http://michaelhue.com/cssdock
Copyright: 	(c)2011 by Michael Hüneburg
License: 	MIT License (see LICENSE file)
----------------------------------------------- */

/* @group Animation */
/* Defines the bounce animation. Note that only the up motion is defined as
   the down motion is created automatically using
   `animation-direction: alternate;`. */
@-webkit-keyframes bounce {
	  0% { -webkit-transform: translateY(0); }
	100% { -webkit-transform: translateY(-20px); }
}

@-moz-keyframes bounce {
	  0% { -moz-transform: translateY(0); }
	100% { -moz-transform: translateY(-20px); }
}
/* @end */

/* @group Dock */
.desarrolla_iconos {
	position: absolute;
	display: block;
	left: 0px;
	bottom: 0px;
	width: 100%;
	text-align: center;
}

.desarrolla_iconos ul {
	position: relative;
	display: inline-block;
	padding: 0px 5px;
	margin: 0px;
	/*background: url(images/dock-m.png) repeat-x bottom;*/
}

/* @group Items */
/* Defines a dock item. Note the `-webkit-box-reflect` property which creates
   a nice reflection below the item. The gradient is a mask in order to
   exlcude the status indicator from the reflection. */
.desarrolla_iconos li {
	display: inline-block;
	position: relative;
	margin: 0px 1px;
	margin-bottom: 5px;
	vertical-align: baseline;
	-webkit-box-reflect: below -16px -webkit-gradient(
		linear, left top, left bottom,
		from(transparent),
		color-stop(91%, rgba(255, 255, 255, .1)),
		color-stop(91.01%, transparent),
		to(transparent)
	);
}

/* @group Label */
/* This is just a wrapper in order to center the actual label horizontally.
   You may need to adjust the width negative margin if you have really long
   labels. */
.desarrolla_iconos em {
	position: absolute;
	display: none;
	top: -34px;
	left: 50%;
	width: 150px;
	margin-left: -75px;
	text-align: center;
}

/* Generates the little arrow at the bottom of the label. */
.desarrolla_iconos em:after {
	content: " ";
	position: absolute;
	bottom: -6px;
	left: 50%;
	margin-left: -6px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid rgba(0, 0, 0, .6);
	border-bottom: none;
}
.desarrolla_iconos em span {
	display: inline-block;
	padding: 5px 12px;
	font-size: 14px;
	font-style: normal;
	color: #fff;
	background: #000;
	background: rgba(0, 0, 0, .6);
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .9);
	
	border-radius: 12px;
	-webkit-border-radius: 12px;
}
.desarrolla_iconos li:hover em {
	display: block;
}


.desarrolla_iconos div {
	width: 40px;
	height: 74px;
	border: none;
	margin-bottom: 20px;
	
	background-image: url(../img/desarrolla/des_barra_h_1.png);
	background-size: contain;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	
	cursor: pointer;
	
	transition: 		width 500ms ease, height 500ms ease, margin 500ms ease;
	-webkit-transition: width 500ms ease, height 500ms ease, margin 500ms ease;
}
.desarrolla_iconos li:hover div {
	width: 50px;
	margin-bottom: 5px;
}