/*************************************************************************
 * ADOBE CONFIDENTIAL
 * ___________________
 *
 *  Copyright 2013 Adobe Systems Incorporated
 *  All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and are protected by all applicable intellectual property
 * laws, including trade secret and copyright laws.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 **************************************************************************/

/* this works only for MWS app. In IE behavior remains same
  with horizontal scrollbar appearing for content-width greater than device-width */
@-ms-viewport{
   width: device-width;
}

.formLoading{
    text-align: center;
    vertical-align: middle;
    background-color: white;
    height:100%;
    width:100%;
}

.xfaform {
    position: relative;
}


input:not([type="radio"]),select,textarea {
    border: 0;
    padding: 0;
    margin: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    background-color: rgba(255,255,255,0);
}

input[type="radio"] {
    padding: 0px;
    margin: 0px;
}

.widgetError {
    background-color: #D3D3D3 !important;
}

.widgetMandatoryBorder {
    outline: 1.5px solid red;
}

.dataInvalid  {
    outline: 2px solid orange;
}

#xfa_ui_freeze {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); /*dim the background*/
    cursor: wait !important; /* busy cursor */
    z-index: 100000;
}

input:focus, textarea:focus{
    outline: none;
    cursor: auto;
}

input[readonly="readonly"][type="text"]:focus, textarea[readonly="readonly"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus, select:focus, .imagefieldwidget > img:focus, .listBoxWidget > ol > li:focus {
    outline: #000000 dashed 1px;
}

input[type="button"]:focus {
    outline: #000000 dashed 2px;
}

.page {
    background-color: rgba(255,255,255,1);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffffffff,endColorstr=#ffffffff);
    overflow: hidden;
}

/*#######################################################################*/
/*#  Html-XFA Layout specific styles                                                                     */
/*#######################################################################*/

.page > div, .field > div, .draw > * {
    position: absolute
}

/* must exclude date picker icons from aligning to top left*/
table .field > *, table .draw > *, table .field div > *:not(.datepicker-calendar-icon) {
    top: 0;
    left: 0;
}

/* LC-5561 : Override the 1em extra line space between paragraphs introduced by browser user agent */
.draw p {
margin-top: 0px;
margin-bottom: 0px;
}

/*####################################### Html-XFA Layout specific styles End ##################### */

.subform {
    overflow: visible;
}

div.widget > textarea , table.widget > textarea
{
    resize: none;
    overflow: hidden;
}



svg|rect
{
    fill-opacity: 0.0
}

svg|text
{
    white-space: pre;
    -webkit-text-size-adjust: auto;
}

svg|tspan
{
    white-space: pre;
    -webkit-text-size-adjust: auto;
}

input[type=date]::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input[type=date]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.neutral {
    opacity: 0.5;
    filter: alpha(opacity=50);
}

#error-msg {
    background-color: #ee0101;
    z-index:990;
    display:none;
    position:absolute;
    opacity:0.85;
    color:#FFFFFF;
    font-size: 21px;
    border: 2px solid #ddd;
    box-shadow: 0 0 6px #000;
    -moz-box-shadow: 0 0 6px #000;
    -webkit-box-shadow: 0 0 6px #000;
    padding: 4px 10px 4px 10px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

#warning-msg {
    background-color: #FFA500;
    z-index:990;
    display:none;
    position:absolute;
    opacity:0.85;
    color:#FFFFFF;
    font-size: 21px;
    border: 2px solid #ddd;
    box-shadow: 0 0 6px #000;
    -moz-box-shadow: 0 0 6px #000;
    -webkit-box-shadow: 0 0 6px #000;
    padding: 4px 10px 4px 10px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

input[type="button"]:active {
    background-color: rgba(0,0,0,0.21)
}

.dateTimeEdit input
{
    width:100%;
    height:100%;
}
.hideElement {
	visibility: hidden !important;
}

/*************************************************************************
 * ADOBE CONFIDENTIAL
 * ___________________
 *
 *  Copyright 2013 Adobe Systems Incorporated
 *  All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and are protected by all applicable intellectual property
 * laws, including trade secret and copyright laws.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 **************************************************************************/



#msgBox_container {
    font-family: Arial, sans-serif;
    font-size: 12px;
    min-width: 300px; /* Dialog will be no smaller than this */
    max-width: 600px; /* Dialog will wrap after this width */
    background: #FFF;
    border: solid 5px #999;
    color: #000;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

#msgBox_title {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.75em;
    color: #666;
    background: #CCC  top repeat-x;
    border: solid 1px #FFF;
    border-bottom: solid 1px #999;
    cursor: default;
    padding: 0em;
    margin: 0em;
}

#msgBox_content {
    background: 16px 16px no-repeat ;
    padding: 1em 1.75em;
    margin: 0em;
}

#msgBox_message {
    padding-left: 48px;
}

#msgBox_panel {
    text-align: center;
    margin: 1em 0em 0em 1em;
}

#msgBox_prompt {
    margin: .5em 0em;
}

input#msgBox_Ok,input#msgBox_Yes,input#msgBox_No,input#msgBox_Cancel{
   background-color: buttonFace;
   padding: 5px 10px;
   -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
   -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
   box-shadow: rgba(0,0,0,1) 0 1px 0;
   text-shadow: rgba(0,0,0,.4) 0 1px 0;
   color: buttonText;
   font-size: 14px;
   font-family: Georgia, serif;
   text-decoration: none;
   vertical-align: middle;
   outline:none;
   border: 2px outset buttonface;
}

input#msgBox_Ok:focus,input#msgBox_Yes:focus,input#msgBox_No:focus,input#msgBox_Cancel:focus{
outline:highlight;
}

input#msgBox_Ok:hover,input#msgBox_Yes:hover,input#msgBox_No:hover,input#msgBox_Cancel:hover{
outline:none;
border: 2px outset buttonface;
}
.msgBoxType0{
    background-image: url(../../../../etc.clientlibs/fd/xfaforms/clientlibs/xfalib/resources/images/A_Warning_Lg_N.png);
}
.msgBoxType1{
    background-image: url(../../../../etc.clientlibs/fd/xfaforms/clientlibs/xfalib/resources/images/A_Alert2_Lg_N.png);
}
.msgBoxType2{
    background-image: url(../../../../etc.clientlibs/fd/xfaforms/clientlibs/xfalib/resources/images/C_QuestionBubble_Xl_N.png);
}
.msgBoxType3{
    background-image: url(../../../../etc.clientlibs/fd/xfaforms/clientlibs/xfalib/resources/images/A_InfoBlue_32x32_N.png);
}

/*************************************************************************
 * ADOBE CONFIDENTIAL
 * ___________________
 *
 *  Copyright 2013 Adobe Systems Incorporated
 *  All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and are protected by all applicable intellectual property
 * laws, including trade secret and copyright laws.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 **************************************************************************/

.datetimepicker {
    border: none;
    background-color: #FFF;
    display: none;
    position: absolute;
    cursor: default;
    z-index: 100;
    outline: solid #CCCCCC 2px;
}

.datetimepicker .dp-clear {
    overflow: auto;
    background-color: #F5F5F5;
    text-align: center;
}

.datetimepicker .dp-clear a {
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    padding: 0px 5px 0px 5px;
    text-align: center;
    display: inline-block;
    font-size: 0.875rem;
    color: #969696;
}

.datetimepicker-notouch .dp-close a:hover {
    color: #c8bbff;
}

.datetimepicker .dp-header {
    height: 40px;
    line-height: 40px;
    color: #555555;
    margin-bottom: 5px;
    background-color: #E6E6E6;
}

.datetimepicker .dp-header .dp-leftnav,
.datetimepicker .dp-header .dp-rightnav,
.datetimepicker .dp-header .dp-caption {
    float: left;
    text-align: center;
    cursor: pointer;
    height: 40px;
}

.datetimepicker-notouch .dp-header .dp-caption:not(.disabled):hover {
    color: #969696;
}

.datetimepicker .dp-header .dp-rightnav {
    float: right;
    background: url(xfalib/resources/images/rightnav.png) no-repeat center center;
    width: 40px;
}

.datetimepicker .dp-header .dp-leftnav {
    width: 40px;
    background: url(xfalib/resources/images/leftnav.png) no-repeat center center;
}

.datetimepicker .dp-header .dp-rightnav:hover {
    background: url(xfalib/resources/images/rightnav_hover.png) no-repeat center center;
}

.datetimepicker .dp-header .dp-leftnav:hover {
    background: url(xfalib/resources/images/leftnav_hover.png) no-repeat center center;
}

.datetimepicker .view {
    display: none;
}

.datetimepicker .view ul {
    display: block;
    list-style: none;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.datetimepicker .view ul li {
    float: left;
    padding: 0px;
    text-align: center;
    border: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    color: #666666;
}

.datetimepicker .view ul.header li {
    color: #555555;
}

.datetimepicker .view ul:not(.header) li:not(.disabled) {
    cursor: pointer;
}

.datetimepicker .view ul.header {
    color: #000;
    background-color: #FFF;
    border-bottom: #E6E6E6 1px solid;
}

.datetimepicker-notouch .view ul:not(.header) li:not(.disabled):hover {
    color: black;
    background-color: #E6E6E6;
    opacity: 0.5;
}

.datetimepicker .view ul li.disabled {
    color: #CCCCCC;
}

.datetimepicker .view ul li.dp-selected {
    outline: none;
    background-color: #666666;
    color: #FFFFFF;
    opacity: 1.0;
}

.datetimepicker .view ul li.dp-focus {
    border: 1px dashed black;
}

.datepicker-calendar-icon {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    height: 100%;
    background: url(xfalib/resources/images/calendar.png) no-repeat center center;
    background-size: contain;
}

.datefieldwidget.widgetreadonly .datepicker-calendar-icon {
    display: none;
}

/*******************************************************************************
 * ADOBE CONFIDENTIAL
 *  ___________________
 *
 *   Copyright 2015 Adobe Systems Incorporated
 *   All Rights Reserved.
 *
 *  NOTICE:  All information contained herein is, and remains
 *  the property of Adobe Systems Incorporated and its suppliers,
 *  if any.  The intellectual and technical concepts contained
 *  herein are proprietary to Adobe Systems Incorporated and its
 *  suppliers and are protected by all applicable intellectual property
 *  laws, including trade secret and copyright laws.
 *  Dissemination of this information or reproduction of this material
 *  is strictly forbidden unless prior written permission is obtained
 *  from Adobe Systems Incorporated.
 ******************************************************************************/

/** Default style to show placeholder in dropdownlist   **/
.dropDownList .placeHolder{
    color: gray;
}

.dropDownList select {
    width: 100%;
    height: 100%;
}

/*******************************************************************************
 * ADOBE CONFIDENTIAL
 *   ___________________
 *
 *    Copyright 2013 Adobe Systems Incorporated
 *    All Rights Reserved.
 *
 *   NOTICE:  All information contained herein is, and remains
 *   the property of Adobe Systems Incorporated and its suppliers,
 *   if any.  The intellectual and technical concepts contained
 *   herein are proprietary to Adobe Systems Incorporated and its
 *   suppliers and are protected by all applicable intellectual property
 *   laws, including trade secret and copyright laws.
 *   Dissemination of this information or reproduction of this material
 *   is strictly forbidden unless prior written permission is obtained
 *   from Adobe Systems Incorporated.
 ******************************************************************************/



div#iEBox_container {
    font-family: Arial, sans-serif;
    font-size: 12px;
    min-width: 300px; /* Dialog will be no smaller than this */
   /* Dialog will wrap after this width */
    background: #FFF;
    border: solid 2px #999;
    color: #000;
    
    
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
   
    display:none;
    /* the shadow */
    -moz-box-shadow: 10px 10px 5px #888888;
    -webkit-box-shadow: 10px 10px 5px #888888;
     box-shadow: 0px 0px 15px #888888;
     
    /* make dialog a non-selectatable thing */
    -moz-user-select: none; 
    -khtml-user-select: none; 
    -webkit-user-select: none; 
    -o-user-select: none; 
    
     position: absolute;
     z-index: 99998;
     padding: 0;
     margin: 0;
	 
	 line-height:0;
}

#iEBox_title {
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    line-height: 1.75em;
    color: #555555;
    background: #FFFFFF  top repeat-x;
    cursor: default;
    padding: 10px;
    margin: 0em;
    display:inline-block;
   /* border-left:2px ridge gray; */
    vertical-align:middle;
}

#iEBox_content {
    background: 16px 16px no-repeat ;
    padding: 10px 10px;
    margin: 0em;
	min-width:300px;
}

#iEBox_canvas {
  border:4px #AAAAAA dashed;
  -ms-touch-action:pinch-zoom;
  touch-action:pinch-zoom;
}

#iEBox_panel {
    text-align: center;
    margin: 0em 0em 0em 0em;
    background-color:black;
    
    -moz-border-top-right-radius: 8px;
    -webkit-border-top-right-radius: 8px;
    border-top-right-radius: 8px;
    -moz-border-top-left-radius: 8px;
    -webkit-border-top-left-radius: 8px;
    border-top-left-radius: 8px;
    
    overflow:hidden;
    
    /* title bar color */
    background: #AFB0B5;
	
    -ms-touch-action:pinch-zoom;
    touch-action:pinch-zoom;
}

#iEBox_prompt {
    margin: .5em 0em;
}

div.iEBox_button {
   background:no-repeat;
   width:40px;
   height:40px;
   background-size:40px 40px;
   display:inline-block;
   margin:10px;
}
div#iEBox_Geo{
  background-image:url('xfalib/resources/images/iEBox_geo.png');
   width:40px;
   height:40px;
   background-size:40px 40px;
   display:none;
   vertical-align:middle;
}
div#iEBox_Brush{
   background-image:url('xfalib/resources/images/iEBox_brush.png');
   width:40px;
   height:40px;
   background-size:40px 40px;

   vertical-align:middle;
}
div#iEBox_incBrush{
   background-image:url('xfalib/resources/images/iEBox_geo.png');
   width:40px;
   height:40px;
   background-size:40px 40px;
   
   vertical-align:middle;
}
div#iEBox_Ok {
    background-image:url('xfalib/resources/images/iEBox_ok.png');
     vertical-align:middle;
     float:right;
}
div#iEBox_Clear {
    background-image:url('xfalib/resources/images/iEBox_clear.png');
     vertical-align:middle;
}
div#iEBox_Cancel {
    background: url('xfalib/resources/images/iEBox_close.png') center no-repeat;
    float:right;
}
div#iEBox_moveframe{
padding:0px;
margin:0px;
    border:0px dotted rgba(0,0,0,0.5);
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    
    -moz-box-shadow: 10px 10px 5px #888888;
    -webkit-box-shadow: 10px 10px 5px #888888;
     box-shadow: 0px 0px 15px #888888;
     
   display:none;
   position:absolute;
}
div.disable_button {
   filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 3.5+ */
   filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}
div.sc_popUpMenu {
    display:none;
    width:20px;
    height:20px;
    background:no-repeat;
    background-size:20px 20px; 
    background-image:url('xfalib/resources/images/iEBox_no.png');
   
    z-index:9999;
    position:absolute;
    left:0px;
    top:0px;
}
div#iEBox_brushList{
    position:absolute;
    z-index:99999;
    background-color:white;
    -moz-box-shadow: 10px 10px 5px #888888;
    -webkit-box-shadow: 10px 10px 5px #888888;
    box-shadow: 0px 0px 15px #888888;
    display:none;
}
div#iEBox_brushList div:hover{
    background-color:gray;
}
fieldset#iEBox_caption {
    border:4px dashed #AAAAAA;
    border-bottom:0px;
    border-left:0px;
    border-right:0px;
    margin-right:4px;
    margin-left:1px;
    margin-top:0px;
    text-align:center;
    padding:0px;
}
fieldset#iEBox_caption > legend {
   width:auto;
   background-color: #FFFFFF;
   padding: 2px;
}
.emptyScribble {
    background: url(xfalib/resources/images/signature.png) no-repeat;
}

div#iEBox_canvases {
    white-space:nowrap;
}

/*******************************************************************************
 * ADOBE CONFIDENTIAL
 *  ___________________
 *
 *   Copyright 2013 Adobe Systems Incorporated
 *   All Rights Reserved.
 *
 *  NOTICE:  All information contained herein is, and remains
 *  the property of Adobe Systems Incorporated and its suppliers,
 *  if any.  The intellectual and technical concepts contained
 *  herein are proprietary to Adobe Systems Incorporated and its
 *  suppliers and are protected by all applicable intellectual property
 *  laws, including trade secret and copyright laws.
 *  Dissemination of this information or reproduction of this material
 *  is strictly forbidden unless prior written permission is obtained
 *  from Adobe Systems Incorporated.
 ******************************************************************************/

div .listBoxWidget , table.listBoxWidget{
    overflow: auto;
}

div.listBoxWidget > ol, table.listBoxWidget > ol{
    list-style-type: none;
    padding: 5px;
    margin:0px;
    outline: none;
}

ol > li.item-selectable{
    background-color: rgba(255, 255, 255, 0);
    color: black;
    padding-left: 5px;
    cursor: pointer;
}

ol> li.item-selected{
    background: #99C1DA;
    color: white;
    padding-left: 5px;
    cursor: pointer;
}
/*******************************************************************************
 * ADOBE CONFIDENTIAL
 *  ___________________
 *
 *   Copyright 2017 Adobe Systems Incorporated
 *   All Rights Reserved.
 *
 *  NOTICE:  All information contained herein is, and remains
 *  the property of Adobe Systems Incorporated and its suppliers,
 *  if any.  The intellectual and technical concepts contained
 *  herein are proprietary to Adobe Systems Incorporated and its
 *  suppliers and are protected by all applicable intellectual property
 *  laws, including trade secret and copyright laws.
 *  Dissemination of this information or reproduction of this material
 *  is strictly forbidden unless prior written permission is obtained
 *  from Adobe Systems Incorporated.
 ******************************************************************************/

.filePreview {
    position: absolute;
    top: -1000px;
    bottom: -1000px;
    visibility: hidden;
    height: 0;
}

/*******************************************************************************
 * ADOBE CONFIDENTIAL
 *  ___________________
 *
 *   Copyright 2013 Adobe Systems Incorporated
 *   All Rights Reserved.
 *
 *  NOTICE:  All information contained herein is, and remains
 *  the property of Adobe Systems Incorporated and its suppliers,
 *  if any.  The intellectual and technical concepts contained
 *  herein are proprietary to Adobe Systems Incorporated and its
 *  suppliers and are protected by all applicable intellectual property
 *  laws, including trade secret and copyright laws.
 *  Dissemination of this information or reproduction of this material
 *  is strictly forbidden unless prior written permission is obtained
 *  from Adobe Systems Incorporated.
 ******************************************************************************/
.toolbarheader {
    width: 100%;
    height: 39px;
    background-repeat: repeat-x;
    background-color: #C790F4;
    position: fixed;
    border: 1px solid rgba(0,0,0, 0.5);
    vertical-align: middle;
    z-index: 2;
    margin-bottom: 5px;
    position: relative;
}

.toolbarformslogo {
    background: url("toolbar/resources/images/AX_Form_Lg_N.png") no-repeat;
    width: 28px;
    height: 28px;
    border: none;
    margin-top:5px;
    vertical-align: middle;
    float: left;
}

.toolbarfieldhighlight {
    background: url("toolbar/resources/images/AX_HighlightFields_Lg_N.png") no-repeat;
    width: 50px;
    height: 28px;
    margin-top:5px;
    border: none;
    vertical-align: middle;
    float: right;
    /*border: 1px solid #ffffff;*/
}
.toolbarfileattachment {
    background: url("toolbar/resources/images/Attach.png") no-repeat;
    width: 35px;
    height: 32px;
    margin-top:5px;
    border: none;
    vertical-align: middle;
    float: right;
    margin-right: 10px;
    /*border: 1px solid #ffffff;*/
}
.toolbarlogger {
    background-color: #C790F4 ;
    width: 120px;
    height: 28px;
    margin-top:5px;
    border: none;
    vertical-align: middle;
    float: right;
    text-align:center;
}

.toolbartext {
    font-family: Arial, Helvetica;
    font-size: 12px;
}

.widgetBackGroundColorHighlight:not(.widgetreadonly) {
    background-color: #DEE3FF !important;
}

.widgetBackGroundColorHighlight:not(.widgetreadonly):not(.widgetMandatoryBorder):not(.dataInvalid) {
    outline: none ;
}

#loadingPage {
    background: url("toolbar/resources/images/busy-state.gif") no-repeat fixed center;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    cursor: wait; /* busy cursor */
    z-index: 100000;
}

.loadingBody {
    background-color: rgb(255, 255, 255);
}

#loadText {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 35px);
    font-size: 150%;
    z-index: 1000000;
}

input[type="file"] {
    visibility: hidden !important;
    top: -2000px !important;
    left: -2000px !important;
    position: absolute !important;
}
input[type="file"] {
    display: block;
}
.guideFieldWidget input[type="button"], .guideFieldWidget button, .guideFieldWidget .button {
    /* margin-top: @label-line-height * @label-font-size + @label-margin; */
    box-sizing: border-box;
    cursor: pointer;
    border-style: outset;
    border-width: 0px;
    border-color: #285e8e;
    color: #000000;
    background-color: #DDDDDD;
    padding: 10px 15px 10px 15px;
    font-size: 14px;
    line-height: normal;
    border-radius: 0;
}


ul.guide-fu-fileItemList {
    padding-left: 0px;
    margin:0px;
    list-style: none;
}

li.guide-fu-fileItem{
    display: block;
    padding: 10px;
    background-color: #fff;
    border-top: 1px solid #dddddd;;
    color: #000000;
}

span.guide-fu-filePreview{
    margin-right: 10px;
    float: left;
    color: #000000;
}

span.guide-fu-fileName {
    text-decoration: underline;
    cursor: pointer;
}

span.non-preview-fileName{
    text-decoration: none;
    opacity: 0.4;
}

div.guide-fu-comment[contenteditable="true"] {
    border: 1px solid;
    margin-top:5px;
}

div.guide-fu-comment {
width:100%;
height: 25px;
margin-top: 5px;
padding: 2px 30px 2px 5px;
word-break: break-word;
border-style: groove;
}

.modal-elements-font-size {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333333;
}
div.guideFileUpload div.guideFieldWidget > input[type="file"] {
    visibility:hidden !important;
    top:-2000px !important;
    left:-2000px !important;
    position:absolute !important;
}
.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}
.fade.in {
    opacity: 1;
}
.collapse {
    display: none;
}
.collapse.in {
    display: block;
}
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    transition: height 0.35s ease;
}
.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}
.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50);
}
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.modal-open {
    overflow: hidden;
}
.modal {
    display: none;
    overflow: auto;
    overflow-y: scroll;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}
.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;
}
.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}
.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: 1040;
    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: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.42857143px;
}
.modal-header .close {
    margin-top: -2px;
}
.modal-title {
    margin: 0;
    line-height: 1.42857143;
}
.modal-body {
    position: relative;
    padding: 20px;
}
.modal-footer {
    margin-top: 15px;
    padding: 19px 20px 20px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}
.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;
}
@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    .modal-sm {
        width: 300px;
    }
}
@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

/*******************************************************************************
 * ADOBE CONFIDENTIAL
 *  ___________________
 *
 *   Copyright 2013 Adobe Systems Incorporated
 *   All Rights Reserved.
 *
 *  NOTICE:  All information contained herein is, and remains
 *  the property of Adobe Systems Incorporated and its suppliers,
 *  if any.  The intellectual and technical concepts contained
 *  herein are proprietary to Adobe Systems Incorporated and its
 *  suppliers and are protected by all applicable intellectual property
 *  laws, including trade secret and copyright laws.
 *  Dissemination of this information or reproduction of this material
 *  is strictly forbidden unless prior written permission is obtained
 *  from Adobe Systems Incorporated.
 ******************************************************************************/

.pagingfooter {
    width: 100%;
    height: 39px;
    background-repeat: repeat-x;
    background-color: #C790F4;
    border: 1px solid rgba(0,0,0, 0.5);
    vertical-align: middle;
    z-index: 2;
    margin-bottom: 5px;
    position: relative;
}
.pageloadinglogo {
    border: none;
    margin-right:5px;
    vertical-align: middle;
}

.pageloadtext {
    font-family: Arial, Helvetica;
    font-size: 12px;
    font-style: italic;
}

.pageloadnow {
    width: 200px;
    height: 28px;
    margin-top:5px;
    border: none;
    vertical-align: middle;
    float: right;
    border: none;

}
/*
 * ADOBE CONFIDENTIAL
 * ___________________
 *
 * Copyright 2012-2013 Adobe Systems Incorporated
 * All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and may be covered by U.S. and Foreign Patents,
 * patents in process, and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 *
 */
.toolbarformsportalbtn{
    width: 45px;
    height: 35px;
    margin-top:5px;
    vertical-align: middle;
    float: right;
    text-align:center;
    padding: 5px;
    background: url('../../fp/components/clientlibs/xfaforms/resources/save.png') no-repeat transparent 0 0;
    border: none;
}
.fpsavemessage{
    width: 200px;
    height: 35px;
    margin-top: 45px;
    margin-right: -115px;
    vertical-align: middle;
    float: right;
    text-align: center;
    border: none;
    background: #D4D4D4;
    border-radius: 5px;
    font: 20px/24px Adobe Clean, Arial;
    padding: 10px 5px 5px 5px;
    display:none;
}
/*******************************************************************************
 * ADOBE CONFIDENTIAL
 *  ___________________
 *
 *   Copyright 2013 Adobe Systems Incorporated
 *   All Rights Reserved.
 *
 *  NOTICE:  All information contained herein is, and remains
 *  the property of Adobe Systems Incorporated and its suppliers,
 *  if any.  The intellectual and technical concepts contained
 *  herein are proprietary to Adobe Systems Incorporated and its
 *  suppliers and are protected by all applicable intellectual property
 *  laws, including trade secret and copyright laws.
 *  Dissemination of this information or reproduction of this material
 *  is strictly forbidden unless prior written permission is obtained
 *  from Adobe Systems Incorporated.
 ******************************************************************************/

body {
    margin: 0;
    padding: 0;
    background-color: #444;
}


