#inno-user-form input[type="text"],
#inno-user-form input[type="password"],
#inno-user-login-form input[type="text"],
#inno-user-login-form input[type="password"] {
	display: block;
	width: 100%;
	border: 1px solid #ccc;
	box-sizing: border-box;
	padding: 12px 6px;
	background: #fff;
	border-radius: 0;
	margin: 0.6em 0;
	font: 1em 'Helvetica Neue', Arial, sans-serif;
	height: auto;
}

#inno-user-form label,
#inno-user-login-form label {
	display: block;
}

#inno-user-form label:after {
	content: '*';
	padding-left: 6px;
	color: #c00;
}

#inno-user-form p input,
#inno-user-login-form p input {
	background: #F46F02;
	font: bold 1em 'Helvetica Neue', Arial, sans-serif;
	color: #fff;
	cursor: pointer;
	border: none;
	padding: 12px 22px;
	text-transform: uppercase;
	display: inline-block;
}

#inno-user-login-form {
	padding-top: 0;
	padding-left: 30px;
	margin-top: -18px;
}

.inno-msg {
	margin-left: 6px;
	font-weight: bold;
}
.inno-error {
	color: #c00;
}

.inno-hidden {
	display: none;
}

#inno-docs {
	clear: both;
	padding: 2em 0;
	overflow: hidden;
}

.inno-doc {
	/*float: left;
	width: 100%;
	margin-right: 1%;*/
	
	float: left;
	width: 30%;
	margin-right: 1%;
	/*background: #000;*/
}

.inno-doc h3 {
background: #F46F02;
/*
background: rgba(255,146,10,1);
background: -moz-linear-gradient(top, rgba(255,146,10,1) 0%, rgba(255,175,75,1) 92%, rgba(255,175,75,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,146,10,1)), color-stop(92%, rgba(255,175,75,1)), color-stop(100%, rgba(255,175,75,1)));
background: -webkit-linear-gradient(top, rgba(255,146,10,1) 0%, rgba(255,175,75,1) 92%, rgba(255,175,75,1) 100%);
background: -o-linear-gradient(top, rgba(255,146,10,1) 0%, rgba(255,175,75,1) 92%, rgba(255,175,75,1) 100%);
background: -ms-linear-gradient(top, rgba(255,146,10,1) 0%, rgba(255,175,75,1) 92%, rgba(255,175,75,1) 100%);
background: linear-gradient(to bottom, rgba(255,146,10,1) 0%, rgba(255,175,75,1) 92%, rgba(255,175,75,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff920a', endColorstr='#ffaf4b', GradientType=0 );
*/	
	font: bold 14px 'Helvetica Neue', Arial, sans-serif;
	color: #fff;
	text-transform: uppercase;
	padding: 7px;
	text-align: center;	
	
	border-radius: 25px;


  
}

.inno-doc ul {
	margin: 1em 0;
	padding: 0.8em;
	list-style: none;
	border: 1px solid #ddd;
	height: 280px;
}

.inno-doc ul li {
	
	margin-bottom: 1em;
}


.inno-doc ul li:before {

margin-left: -0.2em; /* same as padding-left set on li */

background-image: url('images/pdf.png');
background-size: 18px 18px;
display: inline-block;
width: 18px; 
height: 18px;
content:"";

}

.inno-doc ul li a {
	font-size: 12px;
}

.inno-doc .inno-scrollable {
	height: 280px;
	overflow: scroll;
}

.inno-doc ul.inno-accordion-content {
	padding: 0;
	border: none;
	display: none;
}

.inno-doc h4.inno-accordion-title {
	font: bold 12px 'Helvetica Neue', Arial, sans-serif;
	color: #F46F02;
	text-transform: uppercase;
	padding-bottom: 3px;
	border-bottom: 1px dashed #ccc;
	margin-bottom: 7px;
	cursor: pointer;	
}

.inno-doc h4.inno-accordion-title:after {
	content: '+';
	margin-left: 7px;
}

.inno-doc h4.inno-accordion-title.open:after {
	content: '-';
	margin-left: 7px;
}

.logout-wrap {
	text-align: right;
}

.user-logout {
	background: #F46F02;
	font: bold 1em 'Helvetica Neue', Arial, sans-serif;
	color: #fff !important;
	cursor: pointer;
	border: none;
	padding: 12px 22px;
	text-transform: uppercase;
	display: inline-block;	
}



/* dynamic columns */
div.dynamic-col-1 { Order:1; flex-basis:100%; } /* background:red; */
div.dynamic-col-2 { order:2; flex-basis:100%;} /*background:yellow; */
div.dynamic-col-3 { Order:3; flex-basis:100%;} /*background: green; */

div.clear { clear: both; }




div#column_wrap {
 display:flex;
    flex-wrap:wrap;
    flex-direction:row;
    justify-content:flex-start;
    align-items:stretch;
	}

@media screen and (min-width:780px) {
   
   div#column_wrap {
       flex-wrap:nowrap;
   } 

    div.dynamic-col-1  {
        flex-basis:31%;
        order:1;
		padding-right: 2%;
			&:last-child {
		  margin-left: 1em;
		}
    }
    div.dynamic-col-2 {
        flex-basis:31%;
        order:2;
		padding-right: 2%;
		&:last-child {
      margin-left: 1em;
    }
    }
    div.dynamic-col-3 {
        flex-basis:31%;
        order:3;
		&:last-child {
      margin-left: 1em;
    }
    }
}


/*
div.dynamic-col-1 { float: left; width: 31%; padding-right: 2%;}
div.dynamic-col-2 { float: left; width: 31%;padding-right: 2%;}
div.dynamic-col-3 { float: left; width: 30%;}
div.clear { clear: both; }




div#column_wrap {
	float: right;
	clear: none;
	width: 100%;
	}
	*/
/*
.ui-accordion-header{
   background:#F46F02 !Important;
}	
*/




.ui-accordion .ui-accordion-header {
font: bold 12px 'Helvetica Neue', Arial, sans-serif;
   background:#F46F02 !important;
 /*  padding: .2em .2em .2em .2em;*/
}	




.color_title
{
   margin-left:25px;
  color: #FFF !important;
}

.myhref:before
{
  content:"\f1c1  ";
  font-family: fontawesome;
}


.download_title
{
font-family: "Open Sans",HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
}