@import url("font-awesome.css");
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,600,800);


/*------------------------------------------------------------------

[Layout Stylesheet]

	Project:		ISP
	Version:		1.0
	
	


[Table of contents]

	1. Global
	2. Wrapper / #wrapper
	3. Header / #header
	4. Nav / #nav
	5. Responsive Nav / #responsive-nav
	6. Masthead / #masthead
	7. Page Title / #page-title
	8. Welcome / #welcome
	9. Content / #content
	10. Footer / #footer
	11. Copyright / #copyright
	12. Grid / .grid
	13. Miscellaneous

-------------------------------------------------------------------*/



/*------------------------------------------------------------------
[1. Global]
*/

 
 

body {
    margin: 0;
    font: 12px/1.7em 'Open Sans', arial, sans-serif;
    /*background: url(../img/bg_img.jpg) #f9f9f9;*/
    /*background: #DDD url(../img/bg_img.jpg) repeat 0 0;*/
}

p {
    margin-bottom: 2em;
    font: 12px/1.7em 'Open Sans', arial, sans-serif;
}

h1 {
    margin-bottom: .25em;
}

h2 {
    margin-bottom: .5em;
    font-size: 22px;
    font-weight: 600;
}

h3 {
    margin-bottom: .75em;
    font-weight: 600;
}

h4, h5, h6 {
    margin-bottom: 1.25em;
    font-weight: 600;
}

input {
    font: 13px/1.7em 'Open Sans', arial, sans-serif;
}




/*------------------------------------------------------------------
[2. Wrapper]
*/

#wrapper {
    width: 880px;
    padding: 0 50px;
    margin: -6px auto 0;
    background: #FFF;
    border: 1px solid #DDD\9;
    border-bottom: none;
    -moz-box-shadow: 0 0 5px rgba(0,0,0,.25);
    -webkit-box-shadow: 0 0 5px rgba(0,0,0,.25);
    box-shadow: 0 0 5px rgba(0,0,0,.25);
}




/*------------------------------------------------------------------
[3. Header]
*/

#header {
    background-repeat: no-repeat;
    background-position: right top;
}

    #header h1 {
    font-size: xx-large;
    color: #708090;
}
    /*#header h1 {
        overflow: hidden;
        width: 298px;
        height: 181px;
        max-width: 100%;
        margin: 0;
        line-height: 600px;
        background: url(../img/logo.png) no-repeat 0 0;
    }

    #header h1 a {
        display: block;
    }*/




/*------------------------------------------------------------------
[4. Nav]
*/

#nav {
    margin-bottom: .5em;
}

    #nav .container > #main-nav {
        padding: 0;
        margin-top: 130px;
        margin-left: -50%;
        border-top: 1px solid #DDD;
    }

        #nav .container > #main-nav > li {
            position: relative;
            top: -1px;
            float: left;
            padding: 0 5px 0 0;
            margin: 0;
            list-style: none;
            border-top: 1px solid #DDD;
        }

            #nav .container > #main-nav > li:last-child {
                padding-right: 0;
            }

            #nav .container > #main-nav > li > a {
                position: relative;
                top: -1px;
                display: block;
                padding: 15px 5px 5px;
                color: #999;
                text-transform: uppercase;
                border-top: 1px solid transparent;
            }

                #nav .container > #main-nav > li > a:hover,
                #nav .container > #main-nav > li.dropdown.open > a {
                    color: #333;
                    text-decoration: none;
                    border-top-color: #333;
                    border-top-width: 1px;
                }

            #nav .container > #main-nav > li.active a {
                padding-top: 12px;
                color: #222;
                border-top-color: #E8303A;
                border-top-width: 4px;
            }

            #nav .container > #main-nav > li > a > .caret {
                position: relative;
                top: -2px;
                margin-left: .5em;
            }

    #nav .dropdown-menu a:hover {
        background-color: #E8303A;
    }

    #nav .dropdown-menu > li > a {
        padding: 6px 12px;
    }

    #nav .dropdown-menu i {
        margin-right: .5em;
        font-size: 14px;
    }

    #nav .dropdown-menu::before {
        content: '';
        display: inline-block;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 7px solid #CCC;
        border-bottom-color: rgba(0, 0, 0, 0.2);
        position: absolute;
        top: -7px;
        left: 9px;
    }

    #nav .dropdown-menu::after {
        content: '';
        display: inline-block;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-bottom: 6px solid white;
        position: absolute;
        top: -6px;
        left: 10px;
    }




/*------------------------------------------------------------------
[5. Responsive Nav / #responsive-nav]
*/

#responsive-nav-trigger {
    width: auto;
    padding: 5px 10px;
    background-color: #F8F8F8;
    background-image: url(../img/responsive-nav-bg.png);
    background-position: center right;
    background-repeat: no-repeat;
    color: #8F8F8F;
    font-size: 12px;
    line-height: 1.5;
    border: 1px solid #E8E8E8;
    cursor: pointer;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

    #responsive-nav-trigger.open {
        -webkit-border-bottom-right-radius: 0;
        -webkit-border-bottom-left-radius: 0;
        -moz-border-radius-bottomright: 0;
        -moz-border-radius-bottomleft: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

#responsive-nav {
    position: relative;
    z-index: 1001;
    display: none;
    margin: 0 0 2em;
}

#responsive-nav-items {
    display: none;
    padding: 12px 10px;
    margin: 0 0 1.5em;
    background: #F8F8F8;
    border: 1px solid #e3e3e3;
    border-top: none;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

    #responsive-nav-items ul {
        padding: 0;
        margin: 0;
    }

    #responsive-nav-items li {
        list-style: none;
    }
    #event_edit_container, #about {
	display: none;
}
    #responsive-nav-items > li > ul > li > a {
        padding-left: 30px;
    }

    #responsive-nav-items a {
        padding: 8px 10px;
        display: block;
        color: #222;
        font-size: 13px;
        font-weight: 600;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
    }

        #responsive-nav-items a:hover {
            text-decoration: none;
            background: #DDD;
        }

    #responsive-nav-items li.active a {
        color: #FFF;
        text-decoration: none;
        background: #9E9C9C;
    }




/*------------------------------------------------------------------
[6. Masthead]
*/

#masthead {
    position: relative;
    height: 215px;
    margin-bottom: 1.5em;
    -moz-box-shadow: 1px 1px 6px rgba(0,0,0,.5);
    -webkit-box-shadow: 1px 1px 6px rgba(0,0,0,.5);
    box-shadow: 1px 1px 6px rgba(0,0,0,.5);
}

.masthead-details {
    position: absolute;
    top: 0;
    right: 0;
    width: 255px;
    height: 355px;
    padding: 30px;
    color: #FFF;
    background: #333;
    background: rgba(0,0,0,.70);
    text-shadow: 1px 1px 1px rgba(0,0,0,.4);
}

    .masthead-details h2 {
        display: none;
        margin-bottom: .75em;
        font-size: 28px;
    }

    .masthead-details p {
        font-size: 13px;
        line-height: 1.3;
    }

#masthead .carousel-control {
    top: 50%;
    left: -72px;
    line-height: 26px;
    opacity: .35;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

    #masthead .carousel-control:hover {
        opacity: .80;
    }

    #masthead .carousel-control.right {
        left: auto;
        right: -72px;
    }




/*------------------------------------------------------------------
[7. Page Title / #page-title]
*/

#page-title {
    padding: 15px 50px;
    margin: 0 -50px 2.5em;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    background: #EEE;
}

    #page-title h1 {
        margin-bottom: .40em;
        font-weight: 600;
    }

    #page-title p {
        margin-bottom: 0;
        font-size: 15px;
    }




/*------------------------------------------------------------------
[8. Welcome]
*/
#welcome h1 {
    padding: 0 80px;
    color: #777;
    font-size: 22px;
    font-style: italic;
    font-weight: 600;
    line-height: 1.75em;
}

#welcome {
    text-align: center;
    background-color: #f2f2f2;
}

    #welcome img {
        border-left: dotted 1px #d2d2d2;
        padding: 0 29px;
    }

        #welcome img.first {
            border-left: none;
        }

/*------------------------------------------------------------------
[9. Content]
*/

#content {
}



/*------------------------------------------------------------------
[10. Footer]
*/
#footer {
    clear: both;
    padding: 5px 50px;
    margin: 2.5em -50px 0;
    color: #111;
    background: #eee;
    margin-left: 0px;
    margin-right: 0px;
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

    #footer .row {
        margin-bottom: 0;
    }

    #footer #footer-logo {
        overflow: hidden;
        width: 212px;
        height: 33px;
        margin-bottom: .75em;
        line-height: 600px;
        background: url(../img/footer-logo.png) no-repeat 0 0;
    }

    #footer a {
        color: #FFF;
    }



/*------------------------------------------------------------------
[11. Copyright]
*/
#copyright {
    clear: both;
    padding: 20px 50px 15px 50px;
    margin: 0 -50px;
    color: #777;
    font-size: 11px;
    text-transform: uppercase;
    background: #666;
    border-top: 1px solid #000;
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

    #copyright #rights {
    }

    #copyright #totop {
        text-align: right;
    }

    #copyright a {
        color: #FFF;
    }




/*------------------------------------------------------------------
[12. Grid]


[class^="grid-"] {
	float: left;
	
	margin: 0 0 0 20px;
}

.grid-1 { width: 55px; }
.grid-2 { width: 130px; }
.grid-3 { width: 205px; }
.grid-4 { width: 280px; }
.grid-5 { width: 355px; }
.grid-6 { width: 430px; }
.grid-7 { width: 505px; }
.grid-8 { width: 580px; }
.grid-9 { width: 655px; }
.grid-10 { width: 730px; }
.grid-11 { width: 805px; }
.grid-12 { width: 880px; }


.append-12 { padding-right: 900px; }
.append-11 { padding-right: 825px; }
.append-10 { padding-right: 750px; }
.append-9 { padding-right: 675px; }
.append-8 { padding-right: 600px; }
.append-7 { padding-right: 525px; }
.append-6 { padding-right: 450px; }
.append-5 { padding-right: 375px; }
.append-4 { padding-right: 300px; }
.append-3 { padding-right: 225px; }
.append-2 { padding-right: 150px; }
.append-1 { padding-right: 75px; }


.prepend-12 { padding-left: 900px; }
.prepend-11 { padding-left: 825px; }
.prepend-10 { padding-left: 750px; }
.prepend-9 { padding-left: 675px; }
.prepend-8 { padding-left: 600px; }
.prepend-7 { padding-left: 525px; }
.prepend-6 { padding-left: 450px; }
.prepend-5 { padding-left: 375px; }
.prepend-4 { padding-left: 300px; }
.prepend-3 { padding-left: 225px; }
.prepend-2 { padding-left: 150px; }
.prepend-1 { padding-left: 75px; }



.row [class^="grid-"]:first-child {
	margin-left: 0;
}

.row.nopad [class^="grid-"] {
	margin-bottom: 0;
}

.row.divider:last-child {
	margin-bottom: 0;
	
	border: none;
}

.row-divider {
	
	margin: 1.5em 0 3em;
	
	border: none;
	border-bottom: 1px dotted #CCC;
}




/*------------------------------------------------------------------
[13. Miscellaneous]
*/

.slash {
    padding-right: .25em;
    color: #E8303A;
}


.social-icons-container {
    width: 100%;
    display: table;
    padding: 0;
    margin: 2.5em 0 0;
    list-style: none;
}

    .social-icons-container li {
        width: 20%;
        display: table-cell;
        text-align: center;
    }

.social-icon {
    width: 50px;
    height: 50px;
    display: inline-block;
    overflow: hidden;
    line-height: 600px;
    background: url(../img/social/social-sprite.png) no-repeat 0 0;
}

.social-icon-twitter {
    background-position: 0 0;
}

    .social-icon-twitter:hover {
        background-position: 0 -50px;
    }

.social-icon-googleplus {
    background-position: -50px 0;
}

    .social-icon-googleplus:hover {
        background-position: -50px -50px;
    }

.social-icon-facebook {
    background-position: -100px 0;
}

    .social-icon-facebook:hover {
        background-position: -100px -50px;
    }

.social-icon-vimeo {
    background-position: -150px 0;
}

    .social-icon-vimeo:hover {
        background-position: -150px -50px;
    }

.social-icon-flickr {
    background-position: -200px 0;
}

    .social-icon-flickr:hover {
        background-position: -200px -50px;
    }

.social-icon-slideshare {
    background-position: -250px 0;
}

    .social-icon-slideshare:hover {
        background-position: -250px -50px;
    }

.clearfix,
.row {
    zoom: 1;
    background-color: white;
}

    .clearfix:before,
    .row:before,
    .clearfix:after,
    .row:after {
        content: "";
        display: table;
    }

    .clearfix:after,
    .row:after {
        clear: both;
    }

.breadcrumb {
    background-color: #EEEEEE;
    background-image: none;
    margin: 0 0 16px;
}

    .breadcrumb a {
        color: #999999;
    }

.thumbnail p {
    margin-bottom: 0;
    font-size: 12px;
}

.bajada {
    font-size: 16px;
}

ul.cuadros {
    margin-left: 0;
}

    ul.cuadros li {
        float: left;
        list-style: none outside none;
        margin-right: 10px;
        margin-bottom: 10px;
        /*width: 22%;*/
        width: 205px;
        min-height: 280px;
    }

        ul.cuadros li h3 {
            font-size: 14px;
            line-height: 18px;
            margin-top: 15px;
        }

.fechablog {
    margin-bottom: 0;
}

.pagination li a.active {
    background-color: #0066CC;
    color: #FFF;
}

.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
    background-color: #E8303A;
}

ul.cuadros-noticias {
    margin-left: 0;
}

    ul.cuadros-noticias li {
        float: left;
        list-style: none outside none;
        margin: 10px;
        width: 22%;
        min-height: 440px;
    }

        ul.cuadros-noticias li h3 {
            font-size: 14px;
            line-height: 18px;
            margin-top: 15px;
        }

ul.lista-docs {
    margin-left: 0;
}

    ul.lista-docs li {
        list-style: none outside none;
        margin-bottom: 15px;
        border-bottom: dotted 1px #d2d2d2;
        padding-bottom: 15px;
    }

        ul.lista-docs li strong {
            color: #999;
            font-weight: normal;
        }

.well .unstyled li {
    margin-bottom: 5px;
}

    .well .unstyled li.active a {
        color: #000;
        font-size: 16px;
    }

.integrantes {
    margin-bottom: 30px;
    border-bottom: dotted 1px #ccc;
    padding-bottom: 20px;
}

.profile-text {
    text-align: left;
}

h3.area {
    background-image: url(../img/bullet.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 15px;
}
/*.work-container .work-item a {
	color: #333;
}*/
.work-container .work-item h3 a {
    color: #333;
}

.work-container .work-item span.label {
    cursor: pointer;
}

.mb20px {
    margin-bottom: 20px;
}

div.quip-fld {
    margin-bottom: 15px;
}

.form input, .form textarea, #quip-add-comment-qcom input, #quip-add-comment-qcom textarea {
    width: 435px;
}

span.quip-allowed-tags {
    float: none !important;
    margin-left: 70px;
    color: #CCC;
}

.well li h4 {
    font-weight: normal;
    margin: 1em 0;
}

.head {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: dotted 1px #d2d2d2;
    font-weight: bold;
    margin-top: 20px;
}

.progress .bar {
    display: none;
}

.bg-negro {
    background-color: #000;
}

.e404 {
    font-size: 35px;
    line-height: normal;
    margin-bottom: 1.2em;
}

.centrar_icon {
    font-size: 18px;
    text-align: center;
}

.mt5px {
    margin-top: 5px;
}

.work-container .work-item h3 {
    min-height: 110px;
}

.wrapper {
    margin-top: 80px;
    margin-bottom: 80px;
}

.form-signin {
    max-width: 380px;
    padding: 15px 35px 45px;
    margin: 0 auto;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    .form-signin-heading, .checkbox;

{
    margin-bottom: 30px;
}

.checkbox {
    font-weight: normal;
}

.form-control {
    position: relative;
    font-size: 16px;
    height: auto;
    padding: 10px;
    @include box-sizing(border-box);
    &:focus;

{
    z-index: 2;
}

}

input[type="text"] {
    margin-bottom: -1px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

input[type="password"] {
    margin-bottom: 20px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

}





.col-md-5 {
    width: 41.66666666666667%;
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11 {
    float: left;
}

.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/ ";
}

.text-right {
    text-align: right;
}

.col-md-7 {
    <!-- width: 51%; -->
}

.navbar-nav {
    padding-top: 60px;
}


.form-signin {
    background-color: #eee;
    border: 0px solid rgba(0,0,0,0.1);
}

.dropdown-menu li > a:hover, .dropdown-menu .active > a, .dropdown-menu .active > a:hover {
    background-color: #aaa;
}

.fila {
    width: 890px;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 8px;
}

.izqleft {
    width: 170px;
    font-family: Verdana,sans-serif;
    font-size: 13px;
    float: left;
    padding-top: 5px;
    height: 40px;
    padding-left: 3px;
}

.izqright {
    width: 270px;
    font-family: Verdana,sans-serif;
    font-size: 13px;
    float: left;
    padding-top: 5px;
    height: 40px;
}

.divtextarea {
    width: 270px;
    font-family: Verdana,sans-serif;
    font-size: 13px;
    float: left;
    padding-top: 5px;
}

.right {
    width: 270px;
    font-family: Verdana,sans-serif;
    font-size: 13px;
    float: right;
    padding-top: 5px;
    height: 40px;
}

.jumbotron {
    background-color: #F6F6F6;
}

label {
    display: inline-block;
    max-width: 100%;
    font-weight: normal;
}

.inputLargo {
    display: block;
    width: 620px;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.inputDobleLargo {
    display: block;
    width: 770px;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

fieldset {
    background-color: #F6F6F6;
}

legend {
    background-color: #eee4e4;
}

.radios {
    width: 200px;
    float: left;
}

.centrar {
    margin: 0 auto;
    width: 300px;
    padding-top: 5px;
}

textarea {
    display: block;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.jojo {
    width: 170px;
    font-family: Verdana,sans-serif;
    font-size: 13px;
    float: left;
    padding-left: 10px;
    margin: 0 auto;
}

.centro {
    margin: 0 auto;
    width: 220px;
    padding-top: 5px;
    padding-left: 3px;
    float: left;
}

.encabezado-grid {
    background-image: url(grd_head.png);
    color: #ffffff;
}

    .encabezado-grid a {
    color: #ffffff;
}

.fila-grid {
    background-color: #dddddd;
}

.warning {
    color: #D63301;
    background-color: #FFCCBA;
    height: 60px;
    width: 300px;
    line-height: 60px;
    margin: 0 auto;
    text-align: center;
    font-weight: bold;
}

.izqleftProd {
    width: 120px;
    font-family: Verdana,sans-serif;
    font-size: 13px;
    float: left;
    padding-top: 5px;
    height: 40px;
    padding-left: 3px;
}

.izqrightProd {
    width: 220px;
    font-family: Verdana,sans-serif;
    font-size: 13px;
    float: left;
    padding-top: 5px;
    height: 40px;
}

.alert .row {
    background-color: transparent;
}

.alert .glyphicon {
    font-size: 21px;
    margin-right: 10px;
}

.vertical-align {
    display: flex;
    align-items: center;
}

.control-label .vertical-align {
    vertical-align: middle;
}

.icon {
   font-size: 21px;
    margin-right: 5px;
    margin-left: 5px;
    display: flex;
    align-items: center;
}
.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}

.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eeeeee;
  left: 21%;
  margin-left: -1.5px;
}

.timeline > li {
  margin-bottom: 20px;
  position: relative;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li:before,
.timeline > li:after {
  content: " ";
  display: table;
}

.timeline > li:after {
  clear: both;
}

.timeline > li > .timeline-panel {
  width: 46%;
  float: left;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.timeline > li > .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}

.timeline > li > .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}

.timeline > li > .timeline-badge {
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -25px;
  background-color: #999999;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}

.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.timeline-badge.primary {
  background-color: #2e6da4 !important;
}

.timeline-badge.success {
  background-color: #3f903f !important;
}

.timeline-badge.warning {
  background-color: #f0ad4e !important;
}

.timeline-badge.danger {
  background-color: #d9534f !important;
}

.timeline-badge.info {
  background-color: #5bc0de !important;
}

.timeline-title {
  margin-top: 0;
  color: inherit;
}

.timeline-body > p,
.timeline-body > ul {
  margin-bottom: 0;
}

.timeline-body > p + p {
  margin-top: 5px;
}

.iconos {
    font-size: 20px;
    cursor: pointer;
}

table .glyphicon {
    font-size: 20px !important;
    cursor: pointer !important;
}

textarea 
{ 
    resize:vertical; 

}
tablaEV 
{ 
    width:900px;
}
TamanioCol1 
{ 
    width:30px;
}
TamanioCol2 
{ 
    width:870px;
}
.datepicker {
  padding: 4px;
  border-radius: 4px;
  direction: ltr;
  /*.dow {
    border-top: 1px solid #ddd !important;
  }*/
}
