matlab-proxy 0.5.3__py3-none-any.whl → 0.30.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. matlab_proxy/app.py +578 -205
  2. matlab_proxy/app_state.py +1061 -431
  3. matlab_proxy/constants.py +37 -0
  4. matlab_proxy/default_configuration.py +39 -4
  5. matlab_proxy/devel.py +18 -22
  6. matlab_proxy/gui/index.html +20 -1
  7. matlab_proxy/gui/static/css/index.BedVwcEg.css +10 -0
  8. matlab_proxy/gui/static/js/index.pQwV1obF.js +64 -0
  9. matlab_proxy/gui/static/media/MATLAB-env-blur.NupTbPv_.png +0 -0
  10. matlab_proxy/matlab/evaluateUserMatlabCode.m +51 -0
  11. matlab_proxy/matlab/startup.m +3 -28
  12. matlab_proxy/settings.py +543 -112
  13. matlab_proxy/util/__init__.py +187 -59
  14. matlab_proxy/util/cookie_jar.py +72 -0
  15. matlab_proxy/util/event_loop.py +28 -10
  16. matlab_proxy/util/list_servers.py +71 -26
  17. matlab_proxy/util/mw.py +16 -15
  18. matlab_proxy/util/mwi/download.py +136 -0
  19. matlab_proxy/util/mwi/embedded_connector/__init__.py +1 -1
  20. matlab_proxy/util/mwi/embedded_connector/helpers.py +12 -4
  21. matlab_proxy/util/mwi/embedded_connector/request.py +78 -12
  22. matlab_proxy/util/mwi/environment_variables.py +120 -27
  23. matlab_proxy/util/mwi/exceptions.py +63 -9
  24. matlab_proxy/util/mwi/logger.py +141 -27
  25. matlab_proxy/util/mwi/session_name.py +28 -0
  26. matlab_proxy/util/mwi/token_auth.py +264 -121
  27. matlab_proxy/util/mwi/validators.py +231 -88
  28. matlab_proxy/util/system.py +9 -0
  29. matlab_proxy/util/windows.py +32 -6
  30. {matlab_proxy-0.5.3.dist-info → matlab_proxy-0.30.1.dist-info}/METADATA +94 -49
  31. matlab_proxy-0.30.1.dist-info/RECORD +88 -0
  32. {matlab_proxy-0.5.3.dist-info → matlab_proxy-0.30.1.dist-info}/WHEEL +1 -2
  33. {matlab_proxy-0.5.3.dist-info → matlab_proxy-0.30.1.dist-info}/entry_points.txt +1 -1
  34. matlab_proxy_manager/README.md +85 -0
  35. matlab_proxy_manager/__init__.py +6 -0
  36. matlab_proxy_manager/lib/README.md +53 -0
  37. matlab_proxy_manager/lib/__init__.py +1 -0
  38. matlab_proxy_manager/lib/api.py +419 -0
  39. matlab_proxy_manager/storage/README.md +54 -0
  40. matlab_proxy_manager/storage/__init__.py +1 -0
  41. matlab_proxy_manager/storage/file_repository.py +144 -0
  42. matlab_proxy_manager/storage/interface.py +62 -0
  43. matlab_proxy_manager/storage/server.py +172 -0
  44. matlab_proxy_manager/utils/__init__.py +1 -0
  45. matlab_proxy_manager/utils/auth.py +77 -0
  46. matlab_proxy_manager/utils/constants.py +8 -0
  47. matlab_proxy_manager/utils/decorators.py +37 -0
  48. matlab_proxy_manager/utils/environment_variables.py +51 -0
  49. matlab_proxy_manager/utils/exceptions.py +45 -0
  50. matlab_proxy_manager/utils/helpers.py +314 -0
  51. matlab_proxy_manager/utils/logger.py +76 -0
  52. matlab_proxy_manager/web/README.md +37 -0
  53. matlab_proxy_manager/web/__init__.py +1 -0
  54. matlab_proxy_manager/web/app.py +536 -0
  55. matlab_proxy_manager/web/monitor.py +45 -0
  56. matlab_proxy_manager/web/watcher.py +65 -0
  57. matlab_proxy/gui/asset-manifest.json +0 -23
  58. matlab_proxy/gui/authorization.html +0 -115
  59. matlab_proxy/gui/bootstrap.3.4.1.min.css +0 -6
  60. matlab_proxy/gui/navbar.css +0 -8
  61. matlab_proxy/gui/signin.css +0 -42
  62. matlab_proxy/gui/static/css/main.d890078a.chunk.css +0 -13
  63. matlab_proxy/gui/static/css/main.d890078a.chunk.css.map +0 -1
  64. matlab_proxy/gui/static/js/2.13be6544.chunk.js +0 -3
  65. matlab_proxy/gui/static/js/2.13be6544.chunk.js.LICENSE.txt +0 -59
  66. matlab_proxy/gui/static/js/2.13be6544.chunk.js.map +0 -1
  67. matlab_proxy/gui/static/js/main.c311d854.chunk.js +0 -2
  68. matlab_proxy/gui/static/js/main.c311d854.chunk.js.map +0 -1
  69. matlab_proxy/gui/static/js/runtime-main.f70e4d5f.js +0 -2
  70. matlab_proxy/gui/static/js/runtime-main.f70e4d5f.js.map +0 -1
  71. matlab_proxy/gui/static/media/arrow.0c2968b9.svg +0 -4
  72. matlab_proxy/gui/static/media/feedback.6e8d50eb.svg +0 -1
  73. matlab_proxy/gui/static/media/gripper.9defbc5e.svg +0 -1
  74. matlab_proxy/gui/static/media/help.15e5bfab.svg +0 -1
  75. matlab_proxy/gui/static/media/ico-header-contact-hover.0958c442.svg +0 -17
  76. matlab_proxy/gui/static/media/ico-header-contact.ae9169c8.svg +0 -17
  77. matlab_proxy/gui/static/media/restart.7987508a.svg +0 -1
  78. matlab_proxy/gui/static/media/sign-out.08356b67.svg +0 -1
  79. matlab_proxy/gui/static/media/start.50c4596f.svg +0 -1
  80. matlab_proxy/gui/static/media/stop.30c9a9ab.svg +0 -1
  81. matlab_proxy/gui/static/media/terminate.7ea1363e.svg +0 -1
  82. matlab_proxy/gui/token.html +0 -123
  83. matlab_proxy-0.5.3.dist-info/RECORD +0 -84
  84. matlab_proxy-0.5.3.dist-info/top_level.txt +0 -1
  85. /matlab_proxy/gui/static/media/{glyphicons-halflings-regular.82b1212e.woff → glyphicons-halflings-regular.BKjkU69z.woff} +0 -0
  86. /matlab_proxy/gui/static/media/{glyphicons-halflings-regular.5be1347c.eot → glyphicons-halflings-regular.BUJKDMgK.eot} +0 -0
  87. /matlab_proxy/gui/static/media/{glyphicons-halflings-regular.060b2710.svg → glyphicons-halflings-regular.CSehLiBc.svg} +0 -0
  88. /matlab_proxy/gui/static/media/{glyphicons-halflings-regular.4692b9ec.ttf → glyphicons-halflings-regular.DrwTMapi.ttf} +0 -0
  89. /matlab_proxy/gui/static/media/{glyphicons-halflings-regular.be810be3.woff2 → glyphicons-halflings-regular.DzqM6ju8.woff2} +0 -0
  90. /matlab_proxy/gui/static/media/{ico-header-account-hover.89438e91.svg → ico-header-account-hover.-jQHo6Wx.svg} +0 -0
  91. /matlab_proxy/gui/static/media/{ico-header-account.86b10d7b.svg → ico-header-account.CJCFoo5a.svg} +0 -0
  92. /matlab_proxy/gui/static/media/{ico-sprite.cbdb66c0.png → ico-sprite.DXGLgzq9.png} +0 -0
  93. /matlab_proxy/gui/static/media/{mathworks-eps.4d20e0ee.ttf → mathworks-eps.CGNQALa9.ttf} +0 -0
  94. /matlab_proxy/gui/static/media/{mathworks-eps.df1428df.svg → mathworks-eps.DrkCtQtG.svg} +0 -0
  95. /matlab_proxy/gui/static/media/{mathworks-eps.e5c41e84.woff → mathworks-eps.Ds7lQbql.woff} +0 -0
  96. /matlab_proxy/gui/static/media/{mathworks-pictograms.3fc6513a.woff → mathworks-pictograms.BdqxEfBR.woff} +0 -0
  97. /matlab_proxy/gui/static/media/{mathworks-pictograms.f6f087b0.svg → mathworks-pictograms.CCLweoD4.svg} +0 -0
  98. /matlab_proxy/gui/static/media/{mathworks-pictograms.6e128c0e.ttf → mathworks-pictograms.DZhFdRSm.ttf} +0 -0
  99. /matlab_proxy/gui/static/media/{mathworks.80a3218e.svg → mathworks.C-qsbhDy.svg} +0 -0
  100. /matlab_proxy/gui/static/media/{mathworks.c422935b.ttf → mathworks.Ceplx86V.ttf} +0 -0
  101. /matlab_proxy/gui/static/media/{mathworks.37a563ef.woff → mathworks.D08X1Vp8.woff} +0 -0
  102. /matlab_proxy/gui/static/media/{trigger-error.3f1c4ef2.svg → trigger-error.QEdsGL-m.svg} +0 -0
  103. /matlab_proxy/gui/static/media/{trigger-ok.7b9c238b.svg → trigger-ok.Dzg8OIrk.svg} +0 -0
  104. {matlab_proxy-0.5.3.dist-info → matlab_proxy-0.30.1.dist-info/licenses}/LICENSE.md +0 -0
@@ -0,0 +1,10 @@
1
+ html,#root{height:100%}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}code{font-family:source-code-pro,Menlo,Monaco,Consolas,Courier New,monospace}/*!
2
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
3
+ * Copyright 2011-2016 Twitter, Inc.
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:Glyphicons Halflings;src:url(../media/glyphicons-halflings-regular.BUJKDMgK.eot);src:url(../media/glyphicons-halflings-regular.BUJKDMgK.eot?#iefix) format("embedded-opentype"),url(../media/glyphicons-halflings-regular.DzqM6ju8.woff2) format("woff2"),url(../media/glyphicons-halflings-regular.BKjkU69z.woff) format("woff"),url(../media/glyphicons-halflings-regular.DrwTMapi.ttf) format("truetype"),url(../media/glyphicons-halflings-regular.CSehLiBc.svg#glyphicons_halflingsregular) format("svg")}.glyphicon{position:relative;top:1px;display:inline-block;font-family:Glyphicons Halflings;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"*"}.glyphicon-plus:before{content:"+"}.glyphicon-eur:before,.glyphicon-euro:before{content:"€"}.glyphicon-minus:before{content:"−"}.glyphicon-cloud:before{content:"☁"}.glyphicon-envelope:before{content:"✉"}.glyphicon-pencil:before{content:"✏"}.glyphicon-glass:before{content:""}.glyphicon-music:before{content:""}.glyphicon-search:before{content:""}.glyphicon-heart:before{content:""}.glyphicon-star:before{content:""}.glyphicon-star-empty:before{content:""}.glyphicon-user:before{content:""}.glyphicon-film:before{content:""}.glyphicon-th-large:before{content:""}.glyphicon-th:before{content:""}.glyphicon-th-list:before{content:""}.glyphicon-ok:before{content:""}.glyphicon-remove:before{content:""}.glyphicon-zoom-in:before{content:""}.glyphicon-zoom-out:before{content:""}.glyphicon-off:before{content:""}.glyphicon-signal:before{content:""}.glyphicon-cog:before{content:""}.glyphicon-trash:before{content:""}.glyphicon-home:before{content:""}.glyphicon-file:before{content:""}.glyphicon-time:before{content:""}.glyphicon-road:before{content:""}.glyphicon-download-alt:before{content:""}.glyphicon-download:before{content:""}.glyphicon-upload:before{content:""}.glyphicon-inbox:before{content:""}.glyphicon-play-circle:before{content:""}.glyphicon-repeat:before{content:""}.glyphicon-refresh:before{content:""}.glyphicon-list-alt:before{content:""}.glyphicon-lock:before{content:""}.glyphicon-flag:before{content:""}.glyphicon-headphones:before{content:""}.glyphicon-volume-off:before{content:""}.glyphicon-volume-down:before{content:""}.glyphicon-volume-up:before{content:""}.glyphicon-qrcode:before{content:""}.glyphicon-barcode:before{content:""}.glyphicon-tag:before{content:""}.glyphicon-tags:before{content:""}.glyphicon-book:before{content:""}.glyphicon-bookmark:before{content:""}.glyphicon-print:before{content:""}.glyphicon-camera:before{content:""}.glyphicon-font:before{content:""}.glyphicon-bold:before{content:""}.glyphicon-italic:before{content:""}.glyphicon-text-height:before{content:""}.glyphicon-text-width:before{content:""}.glyphicon-align-left:before{content:""}.glyphicon-align-center:before{content:""}.glyphicon-align-right:before{content:""}.glyphicon-align-justify:before{content:""}.glyphicon-list:before{content:""}.glyphicon-indent-left:before{content:""}.glyphicon-indent-right:before{content:""}.glyphicon-facetime-video:before{content:""}.glyphicon-picture:before{content:""}.glyphicon-map-marker:before{content:""}.glyphicon-adjust:before{content:""}.glyphicon-tint:before{content:""}.glyphicon-edit:before{content:""}.glyphicon-share:before{content:""}.glyphicon-check:before{content:""}.glyphicon-move:before{content:""}.glyphicon-step-backward:before{content:""}.glyphicon-fast-backward:before{content:""}.glyphicon-backward:before{content:""}.glyphicon-play:before{content:""}.glyphicon-pause:before{content:""}.glyphicon-stop:before{content:""}.glyphicon-forward:before{content:""}.glyphicon-fast-forward:before{content:""}.glyphicon-step-forward:before{content:""}.glyphicon-eject:before{content:""}.glyphicon-chevron-left:before{content:""}.glyphicon-chevron-right:before{content:""}.glyphicon-plus-sign:before{content:""}.glyphicon-minus-sign:before{content:""}.glyphicon-remove-sign:before{content:""}.glyphicon-ok-sign:before{content:""}.glyphicon-question-sign:before{content:""}.glyphicon-info-sign:before{content:""}.glyphicon-screenshot:before{content:""}.glyphicon-remove-circle:before{content:""}.glyphicon-ok-circle:before{content:""}.glyphicon-ban-circle:before{content:""}.glyphicon-arrow-left:before{content:""}.glyphicon-arrow-right:before{content:""}.glyphicon-arrow-up:before{content:""}.glyphicon-arrow-down:before{content:""}.glyphicon-share-alt:before{content:""}.glyphicon-resize-full:before{content:""}.glyphicon-resize-small:before{content:""}.glyphicon-exclamation-sign:before{content:""}.glyphicon-gift:before{content:""}.glyphicon-leaf:before{content:""}.glyphicon-fire:before{content:""}.glyphicon-eye-open:before{content:""}.glyphicon-eye-close:before{content:""}.glyphicon-warning-sign:before{content:""}.glyphicon-plane:before{content:""}.glyphicon-calendar:before{content:""}.glyphicon-random:before{content:""}.glyphicon-comment:before{content:""}.glyphicon-magnet:before{content:""}.glyphicon-chevron-up:before{content:""}.glyphicon-chevron-down:before{content:""}.glyphicon-retweet:before{content:""}.glyphicon-shopping-cart:before{content:""}.glyphicon-folder-close:before{content:""}.glyphicon-folder-open:before{content:""}.glyphicon-resize-vertical:before{content:""}.glyphicon-resize-horizontal:before{content:""}.glyphicon-hdd:before{content:""}.glyphicon-bullhorn:before{content:""}.glyphicon-bell:before{content:""}.glyphicon-certificate:before{content:""}.glyphicon-thumbs-up:before{content:""}.glyphicon-thumbs-down:before{content:""}.glyphicon-hand-right:before{content:""}.glyphicon-hand-left:before{content:""}.glyphicon-hand-up:before{content:""}.glyphicon-hand-down:before{content:""}.glyphicon-circle-arrow-right:before{content:""}.glyphicon-circle-arrow-left:before{content:""}.glyphicon-circle-arrow-up:before{content:""}.glyphicon-circle-arrow-down:before{content:""}.glyphicon-globe:before{content:""}.glyphicon-wrench:before{content:""}.glyphicon-tasks:before{content:""}.glyphicon-filter:before{content:""}.glyphicon-briefcase:before{content:""}.glyphicon-fullscreen:before{content:""}.glyphicon-dashboard:before{content:""}.glyphicon-paperclip:before{content:""}.glyphicon-heart-empty:before{content:""}.glyphicon-link:before{content:""}.glyphicon-phone:before{content:""}.glyphicon-pushpin:before{content:""}.glyphicon-usd:before{content:""}.glyphicon-gbp:before{content:""}.glyphicon-sort:before{content:""}.glyphicon-sort-by-alphabet:before{content:""}.glyphicon-sort-by-alphabet-alt:before{content:""}.glyphicon-sort-by-order:before{content:""}.glyphicon-sort-by-order-alt:before{content:""}.glyphicon-sort-by-attributes:before{content:""}.glyphicon-sort-by-attributes-alt:before{content:""}.glyphicon-unchecked:before{content:""}.glyphicon-expand:before{content:""}.glyphicon-collapse-down:before{content:""}.glyphicon-collapse-up:before{content:""}.glyphicon-log-in:before{content:""}.glyphicon-flash:before{content:""}.glyphicon-log-out:before{content:""}.glyphicon-new-window:before{content:""}.glyphicon-record:before{content:""}.glyphicon-save:before{content:""}.glyphicon-open:before{content:""}.glyphicon-saved:before{content:""}.glyphicon-import:before{content:""}.glyphicon-export:before{content:""}.glyphicon-send:before{content:""}.glyphicon-floppy-disk:before{content:""}.glyphicon-floppy-saved:before{content:""}.glyphicon-floppy-remove:before{content:""}.glyphicon-floppy-save:before{content:""}.glyphicon-floppy-open:before{content:""}.glyphicon-credit-card:before{content:""}.glyphicon-transfer:before{content:""}.glyphicon-cutlery:before{content:""}.glyphicon-header:before{content:""}.glyphicon-compressed:before{content:""}.glyphicon-earphone:before{content:""}.glyphicon-phone-alt:before{content:""}.glyphicon-tower:before{content:""}.glyphicon-stats:before{content:""}.glyphicon-sd-video:before{content:""}.glyphicon-hd-video:before{content:""}.glyphicon-subtitles:before{content:""}.glyphicon-sound-stereo:before{content:""}.glyphicon-sound-dolby:before{content:""}.glyphicon-sound-5-1:before{content:""}.glyphicon-sound-6-1:before{content:""}.glyphicon-sound-7-1:before{content:""}.glyphicon-copyright-mark:before{content:""}.glyphicon-registration-mark:before{content:""}.glyphicon-cloud-download:before{content:""}.glyphicon-cloud-upload:before{content:""}.glyphicon-tree-conifer:before{content:""}.glyphicon-tree-deciduous:before{content:""}.glyphicon-cd:before{content:""}.glyphicon-save-file:before{content:""}.glyphicon-open-file:before{content:""}.glyphicon-level-up:before{content:""}.glyphicon-copy:before{content:""}.glyphicon-paste:before{content:""}.glyphicon-alert:before{content:""}.glyphicon-equalizer:before{content:""}.glyphicon-king:before{content:""}.glyphicon-queen:before{content:""}.glyphicon-pawn:before{content:""}.glyphicon-bishop:before{content:""}.glyphicon-knight:before{content:""}.glyphicon-baby-formula:before{content:""}.glyphicon-tent:before{content:"⛺"}.glyphicon-blackboard:before{content:""}.glyphicon-bed:before{content:""}.glyphicon-apple:before{content:""}.glyphicon-erase:before{content:""}.glyphicon-hourglass:before{content:"⌛"}.glyphicon-lamp:before{content:""}.glyphicon-duplicate:before{content:""}.glyphicon-piggy-bank:before{content:""}.glyphicon-scissors:before{content:""}.glyphicon-bitcoin:before{content:""}.glyphicon-btc:before{content:""}.glyphicon-xbt:before{content:""}.glyphicon-yen:before{content:"¥"}.glyphicon-jpy:before{content:"¥"}.glyphicon-ruble:before{content:"₽"}.glyphicon-rub:before{content:"₽"}.glyphicon-scale:before{content:""}.glyphicon-ice-lolly:before{content:""}.glyphicon-ice-lolly-tasted:before{content:""}.glyphicon-education:before{content:""}.glyphicon-option-horizontal:before{content:""}.glyphicon-option-vertical:before{content:""}.glyphicon-menu-hamburger:before{content:""}.glyphicon-modal-window:before{content:""}.glyphicon-oil:before{content:""}.glyphicon-grain:before{content:""}.glyphicon-sunglasses:before{content:""}.glyphicon-text-size:before{content:""}.glyphicon-text-color:before{content:""}.glyphicon-text-background:before{content:""}.glyphicon-object-align-top:before{content:""}.glyphicon-object-align-bottom:before{content:""}.glyphicon-object-align-horizontal:before{content:""}.glyphicon-object-align-left:before{content:""}.glyphicon-object-align-vertical:before{content:""}.glyphicon-object-align-right:before{content:""}.glyphicon-triangle-right:before{content:""}.glyphicon-triangle-left:before{content:""}.glyphicon-triangle-bottom:before{content:""}.glyphicon-triangle-top:before{content:""}.glyphicon-console:before{content:""}.glyphicon-superscript:before{content:""}.glyphicon-subscript:before{content:""}.glyphicon-menu-left:before{content:""}.glyphicon-menu-right:before{content:""}.glyphicon-menu-down:before{content:""}.glyphicon-menu-up:before{content:""}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:"— "}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:""}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:" —"}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px #00000040}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.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-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\ ;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;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 #00000013;-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}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px #00000013,0 0 8px #66afe999}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\ ;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled],.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline,.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px #00000013}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px #00000013,0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px #00000013}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px #00000013,0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px #00000013}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px #00000013,0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media(min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media(min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px #00000020}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\ ;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px #0000002d}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\ }.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px #00000020}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-radius:4px 4px 0 0}.btn-group-vertical>.btn:last-child:not(:first-child){border-radius:0 0 4px 4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media(min-width:768px){.navbar{border-radius:4px}}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px #ffffff1a}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media(max-device-width:480px)and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media(min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin:8px -15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px #ffffff1a,0 1px #ffffff1a}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-radius:4px 4px 0 0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/ "}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px #0000001a}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px #00000026;-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px #0000000d}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px #0000000d}.well blockquote{border-color:#ddd;border-color:#00000026}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translateY(-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px #00000080}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px #00000080}.modal-sm{width:300px}}@media(min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px #0003;line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:#00000040;border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:#00000040;border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:#00000040}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:#00000040}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translateZ(0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:#0000;filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,#00000080 0,#0000);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000",endColorstr="#00000000",GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,#0000 0,#00000080);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#80000000",GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:"‹"}.carousel-control .icon-next:before{content:"›"}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\ ;background-color:#0000;border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}.visible-lg,.visible-md,.visible-sm,.visible-xs,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media(max-width:767px){.visible-xs-block{display:block!important}}@media(max-width:767px){.visible-xs-inline{display:inline!important}}@media(max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media(min-width:768px)and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media(min-width:768px)and (max-width:991px){.visible-sm-block{display:block!important}}@media(min-width:768px)and (max-width:991px){.visible-sm-inline{display:inline!important}}@media(min-width:768px)and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media(min-width:992px)and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media(min-width:992px)and (max-width:1199px){.visible-md-block{display:block!important}}@media(min-width:992px)and (max-width:1199px){.visible-md-inline{display:inline!important}}@media(min-width:992px)and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media(min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media(min-width:1200px){.visible-lg-block{display:block!important}}@media(min-width:1200px){.visible-lg-inline{display:inline!important}}@media(min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media(max-width:767px){.hidden-xs{display:none!important}}@media(min-width:768px)and (max-width:991px){.hidden-sm{display:none!important}}@media(min-width:992px)and (max-width:1199px){.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}@-webkit-viewport{width:device-width}@-moz-viewport{width:device-width}@-ms-viewport{width:device-width}@-o-viewport{width:device-width}@viewport{width:device-width}@font-face{font-family:mathworks;font-style:normal;font-weight:400;src:url(../media/mathworks.D08X1Vp8.woff?20181004) format("woff"),url(../media/mathworks.Ceplx86V.ttf?20181004) format("truetype"),url(../media/mathworks.C-qsbhDy.svg?20181004) format("svg")}@font-face{font-family:mathworks-eps;font-style:normal;font-weight:400;src:url(../media/mathworks-eps.Ds7lQbql.woff?20181004) format("woff"),url(../media/mathworks-eps.CGNQALa9.ttf?20181004) format("truetype"),url(../media/mathworks-eps.DrkCtQtG.svg?20181004) format("svg")}@font-face{font-family:mathworks-pictograms;font-style:normal;font-weight:400;src:url(../media/mathworks-pictograms.BdqxEfBR.woff?20181009) format("woff"),url(../media/mathworks-pictograms.DZhFdRSm.ttf?20181009) format("truetype"),url(../media/mathworks-pictograms.CCLweoD4.svg?20181009) format("svg")}.sticky_header_container [class^=col-]{min-height:0}.modal-open .sticky_header_container.affix{padding-right:17px}.modal-open #go-top{right:27px}.dropdown-toggle:focus{outline-color:#66afe999;outline-color:-webkit-focus-ring-color;outline-style:solid;outline-style:auto;outline-width:2px}#responsive_iframe{overflow:auto!important;background-color:#fff}#responsive_iframe .content_container,#responsive_iframe .content_container_no_conflict{border-bottom:none}#responsive_iframe .container{width:100%}.skip_link{transition:all .3s ease}.skip_link a{color:#fff}.skip_link:focus{height:auto;width:100%;padding:15px;background:#0076a8;color:#fff;clip:none;display:block;position:relative;transition:all .3s ease}html{min-height:100%}html body{height:100%;padding:0;margin:0;background:#f1f1f1;color:#1a1a1a;font:15px/1.46 Arial,Helvetica,sans-serif;overflow-y:scroll;-ms-overflow-style:scrollbar;-webkit-font-smoothing:antialiased}html body td{text-align:left;vertical-align:top}img{border:none}.content_container img{width:auto;max-width:100%;height:auto}img.fluid_image{width:100%;max-width:none;height:auto}h1{padding:0;margin:0 0 35px;color:#1a1a1a;font: 400 32px/1.19 futura-pt-n4,futura-pt,Arial,Helvetica,sans-serif;-moz-font-feature-settings:"kern";-webkit-font-feature-settings:"kern";font-feature-settings:"kern"}h2{padding:0;margin:0 0 15px;color:#1a1a1a;font: 400 28px/1.21 futura-pt-n4,futura-pt,Arial,Helvetica,sans-serif;-moz-font-feature-settings:"kern";-webkit-font-feature-settings:"kern";font-feature-settings:"kern"}h3{padding:0;margin:0 0 13px;color:#1a1a1a;font: 400 22px/1.18 futura-pt-n4,futura-pt,Arial,Helvetica,sans-serif;-moz-font-feature-settings:"kern";-webkit-font-feature-settings:"kern";font-feature-settings:"kern"}h4{padding:0;margin:0 0 18px;color:#1a1a1a;font: 500 18px/1.22 futura-pt-n5,futura-pt,Arial,Helvetica,sans-serif;-moz-font-feature-settings:"kern";-webkit-font-feature-settings:"kern";font-feature-settings:"kern"}h5{padding:0;margin:0 0 10px;color:#1a1a1a;font: 500 16px/1.19 futura-pt-n5,futura-pt,Arial,Helvetica,sans-serif;-moz-font-feature-settings:"kern";-webkit-font-feature-settings:"kern";font-feature-settings:"kern"}h6{padding:0;margin:0 0 10px;color:#1a1a1a;font: 15px/1.4 Arial,Helvetica,sans-serif}.h1{padding:0;margin:0 0 35px;color:#1a1a1a;font: 400 32px/1.19 futura-pt-n4,futura-pt,Arial,Helvetica,sans-serif;-moz-font-feature-settings:"kern";-webkit-font-feature-settings:"kern";font-feature-settings:"kern"}.h2{padding:0;margin:0 0 15px;color:#1a1a1a;font: 400 28px/1.21 futura-pt-n4,futura-pt,Arial,Helvetica,sans-serif;-moz-font-feature-settings:"kern";-webkit-font-feature-settings:"kern";font-feature-settings:"kern"}.h3{padding:0;margin:0 0 13px;color:#1a1a1a;font: 400 22px/1.18 futura-pt-n4,futura-pt,Arial,Helvetica,sans-serif;-moz-font-feature-settings:"kern";-webkit-font-feature-settings:"kern";font-feature-settings:"kern"}.h4{padding:0;margin:0 0 18px;color:#1a1a1a;font: 500 18px/1.22 futura-pt-n5,futura-pt,Arial,Helvetica,sans-serif;-moz-font-feature-settings:"kern";-webkit-font-feature-settings:"kern";font-feature-settings:"kern"}.h5{padding:0;margin:0 0 10px;color:#1a1a1a;font: 500 16px/1.19 futura-pt-n5,futura-pt,Arial,Helvetica,sans-serif;-moz-font-feature-settings:"kern";-webkit-font-feature-settings:"kern";font-feature-settings:"kern"}.h6{padding:0;margin:0 0 10px;color:#1a1a1a;font: 15px/1.4 Arial,Helvetica,sans-serif}h1+h2{margin-top:-25px;margin-bottom:35px;color:#1a1a1a}h2+h3{margin-top:-5px;color:#1a1a1a}p+h1,p+h2,p+h3,p+h4,p+h5,p+h6{padding-top:10px}ul+h1,ul+h2,ul+h3,ul+h4,ul+h5,ul+h6{padding-top:10px}ol+h1,ol+h2,ol+h3,ol+h4,ol+h5,ol+h6{padding-top:10px}table+h1,table+h2,table+h3,table+h4,table+h5,table+h6{padding-top:10px}h2.tagline{font-size:18px;font-style:italic;line-height:1.33}.h1.hierarchy_large,h1.hierarchy_large{font-size:40px;line-height:1}.h2.hierarchy_large,h2.hierarchy_large{margin-bottom:35px;font-size:32px;line-height:1.0625}a{color:#0076a8;text-decoration:none}a:visited{color:#005487;text-decoration:none}a:hover{color:#005487;text-decoration:underline}a.svg_link{display:inline-block;position:relative;transition:opacity .3s ease}a.svg_link:after{bottom:0;content:"";left:0;position:absolute;right:0;top:0}.content_container_no_conflict a.svg_link:hover,.content_container a.svg_link:hover{opacity:.6}ul{padding:0;margin:0 0 18px;list-style:none}ul>li{padding:0 0 0 20px;margin:0 0 7px;background:none;list-style-type:none}li>ul{padding-top:5px}.body_lead_container ul>li:before,.body_trail_container ul>li:before,.content_container_no_conflict ul>li:before,.content_container ul>li:before,.full_banner_container ul>li:before,.modal-body ul>li:before{min-width:20px;margin-left:-20px;content:"•";display:inline-block;float:left}.content_container_no_conflict ul:not(.list-unstyled) ul:not(.list-unstyled)>li:before,.content_container ul:not(.list-unstyled) ul:not(.list-unstyled)>li:before{content:"˗"}ol{padding-left:0;margin-bottom:18px;margin-left:24px}ol>li{padding-left:0;margin-bottom:7px}ul.list-unstyled{margin-left:0}ul.list-unstyled>li{padding-left:0}ul.list-unstyled>li:before{min-width:0;margin-left:0;content:none;display:inline}ul.dropdown-menu>li:before{min-width:0;margin-left:0;content:none;display:inline}ul.dropdown-menu>li{padding-left:0;margin-bottom:0}.list-inline>li{margin-bottom:0}ul.list-inline>li:before{min-width:0;margin-left:0;content:none;display:inline}ul.media-list>li{padding-left:0}ul.media-list>li:before{min-width:0;margin-left:0;content:none;display:inline}.content_container_no_conflict ul.media-list ul.media-list>li:before,.content_container ul.media-list ul.media-list>li:before{content:none}.list_pagenav li{padding-bottom:6px;margin-bottom:5px;border-bottom:1px dotted #e6e6e6}.list_pagenav li.active{color:#1a1a1a}.list_pagenav li a{display:block}.list_pagenav li a:hover{text-decoration:none}p{padding:0;margin:0 0 18px}.lead{font-size:17px;line-height:1.59}.accordion .panel-title{cursor:pointer;font-size:inherit!important}.accordion .panel-title .icon-arrow-open-down,.accordion .panel-title .icon-arrow-open-up{float:right}.accordion .panel-title .icon-arrow-open-up{display:inline-block;margin-top:-22px}.accordion .panel-title .icon-arrow-open-down,.accordion .panel-title.collapsed .icon-arrow-open-up{display:none}.accordion .panel-title.collapsed .icon-arrow-open-down{display:inline-block;margin-top:-22px}.band{padding:60px 0 45px;background-position:center center;background-repeat:no-repeat;background-size:cover;position:relative}.band .carousel{margin-bottom:0}.content_container>.band:first-child,.content_container_no_conflict>.band:first-child{margin-top:-20px}.band.band_footer_adjacent{margin-bottom:-50px}blockquote{color:#6f6f6f;font: 400 17.5px/1.46 futura-pt-n4,futura-pt,Arial,Helvetica,sans-serif}blockquote .small,blockquote footer,blockquote small{color:#6f6f6f}.breadcrumb{padding:8px 0;margin-left:0;background-color:transparent}.breadcrumb>.active,.breadcrumb>.active a{color:#6f6f6f!important}.breadcrumb>li+li:before{padding:0;content:none}.breadcrumb>li:after{padding-left:7px;color:#b1b1b1;content:"/ "}.breadcrumb>li:last-child:after{padding-left:0;content:none}.btn{padding:10px 14px 9px;border:none;border-radius:5px;font-size:15px;line-height:1;white-space:normal}.btn-block{padding-right:5px;padding-left:5px}.btn:visited{color:#1a1a1a}.btn:active,.btn:focus,.btn:hover{box-shadow:inset 0 0 0 200px #fff3}.btn-group-xs>.btn,.btn-xs{padding:5px 9px;font-size:12px;line-height:1}.btn-group-sm>.btn,.btn-sm{padding:8px 12px;font-size:12px;line-height:1}.btn-group-lg>.btn,.btn-lg{padding:12px 17px;font-size:17px;line-height:1}.btn-default{padding:9px 13px 8px;border:1px solid #e6e6e6}.btn-default.btn-xs{padding:4px 9px}.btn-default.btn-sm{padding:7px 12px}.btn-default.btn-lg{padding:11px 17px}.btn-default.active,.btn-default:focus,.btn-default:hover,.open .dropdown-toggle.btn-default{background-color:#e6e6e6;color:#1a1a1a}.btn_general,.btn_general:visited{background:#e6e6e6;color:#0076a8!important}.btn_primary,.btn_primary:visited{background:gray;color:#fff!important}.btn_secondary,.btn_secondary:visited{background:#0076a8;color:#fff!important}.btn_tertiary,.btn_tertiary:visited{background:#008013;color:#fff!important}.btn_quaternary,.btn_quaternary:visited{background:#f2a900;color:#fff!important}.btn_quinary,.btn_quinary:visited{background:#00a9e0;color:#fff!important}.btn_senary,.btn_senary:visited{background:#b7312c;color:#fff!important}.btn_septenary,.btn_septenary:visited,.btn_emphasize,.btn_emphasize:visited{background:#c05708;color:#fff!important}[class*=btn_outline]{padding:9px 13px 8px;border-style:solid;border-width:1px;background:transparent}.btn_outline_general,.btn_outline_general:visited{border-color:#e6e6e6;color:#e6e6e6!important}.btn_outline_primary,.btn_outline_primary:visited{border-color:gray;color:gray!important}.btn_outline_secondary,.btn_outline_secondary:visited{border-color:#0076a8;color:#0076a8!important}.btn_outline_tertiary,.btn_outline_tertiary:visited{border-color:#008013;color:#008013!important}.btn_outline_quaternary,.btn_outline_quaternary:visited{border-color:#f2a900;color:#f2a900!important}.btn_outline_quinary,.btn_outline_quinary:visited{border-color:#00a9e0;color:#00a9e0!important}.btn_outline_senary,.btn_outline_senary:visited{border-color:#b7312c;color:#b7312c!important}.btn_outline_septenary,.btn_outline_septenary:visited,.btn_outline_emphasize,.btn_outline_emphasize:visited{border-color:#c05708;color:#c05708!important}[class*=btn_outline]:hover{opacity:.6}[class*=btn_outline].btn-xs{padding:4px 8px}[class*=btn_outline].btn-sm{padding:7px 11px}[class*=btn_outline].btn-lg{padding:11px 16px}.btn_search{padding:9px;border-radius:0}.btn_search_adjacent:active,.btn_search_adjacent:focus,.btn_search_adjacent:hover{box-shadow:none}.btn[disabled],.btn[disabled]:active,.btn[disabled]:focus,.btn[disabled]:hover,.btn[disabled]:visited{box-shadow:none;pointer-events:all!important;opacity:.35}.btn.disabled,.btn.disabled:active,.btn.disabled:focus,.btn.disabled:hover,.btn.disabled:visited{box-shadow:none;pointer-events:all!important;opacity:.35}button.dropdown-toggle{text-align:left}button.dropdown-toggle.btn-block+ul.dropdown-menu{width:100%}button.dropdown-toggle+ul.dropdown-menu{max-height:336px;overflow-x:hidden;overflow-y:auto}button.dropdown-toggle+ul.dropdown-menu>li.dropdown-header{padding:3px 15px;color:#1a1a1a;font-size:14px;font-weight:700}button.dropdown-toggle+ul.dropdown-menu>li>a{white-space:normal}.caption,.thumbnail .caption,.video-caption{color:#6f6f6f;font-size:14px;line-height:1.46}.carousel{margin-bottom:30px}.carousel-inner>.item{min-height:280px;padding:40px 20px;background-position:center center;background-repeat:no-repeat;background-size:cover}.carousel-control.left+.carousel-control.right+.carousel-inner>.item{padding:40px 50px}.carousel-inner>.item .carousel-caption{padding:0;margin:0;color:#fff;left:20px;right:20px;text-align:left;text-shadow:none}.carousel-control.left+.carousel-control.right+.carousel-inner>.item .carousel-caption{right:50px;left:50px}.carousel-caption .h1,.carousel-caption .h2,.carousel-caption .h3,.carousel-caption h1,.carousel-caption h2,.carousel-caption h3{font-weight:500}.carousel-caption .h1+h2,.carousel-caption h1+h2,.carousel-caption h2+h3,.carousel-caption h3+h4{margin-bottom:15px;font-weight:400}.carousel-caption.add_font_color_null *{color:#fff}.carousel-caption.add_font_color_general *{color:#6f6f6f}.carousel-caption.add_font_color_primary *{color:#1a1a1a}.carousel-caption.add_font_color_secondary *{color:#005487}.carousel-caption.add_font_color_tertiary *{color:#008013}.carousel-caption.add_font_color_quaternary *{color:#f2a900}.carousel-caption.add_font_color_quinary *{color:#00a9e0}.carousel-caption.add_font_color_senary *{color:#b7312c}.carousel-caption.add_font_color_septenary *,.carousel-caption.add_font_color_emphasize *{color:#c05708}.carousel-caption.add_font_color_null .video_count,.carousel-caption.add_font_color_null .video_length{color:#e6e6e6!important}.carousel-caption.add_font_color_general .video_count,.carousel-caption.add_font_color_general .video_length{color:gray!important}.carousel-caption.add_font_color_primary .video_count,.carousel-caption.add_font_color_primary .video_length{color:#6f6f6f!important}.carousel-control{width:50px;color:#fff;z-index:10}.carousel-control:active,.carousel-control:focus,.carousel-control:hover{color:#fff}.carousel-control.left,.carousel-control.left:hover,.carousel-control.right,.carousel-control.right:hover{background:transparent none;filter:none}.carousel-control [class^=icon-]{position:absolute;top:calc(50% - 25px)}.carousel-control.left [class^=icon-]{left:0}.carousel-control.right [class^=icon-]{right:0}@media only screen and (max-width:767px){.carousel-control [class^=icon-]{margin-top:0;top:0}}.carousel-indicators{width:auto;margin-left:0;bottom:auto;left:auto;right:10px;text-align:right;top:10px}@media only screen and (max-width:767px){.carousel-control.left+.carousel-control.right+.carousel-inner+.carousel-indicators{display:none}}.carousel_fade{background-color:#000}.carousel_fade_caption_container{width:100%;display:table;position:relative;z-index:4}.carousel_fade_caption{padding:20px 15px;display:table-cell}.carousel_fade_caption :last-child{margin-bottom:0}.carousel_fade .carousel-inner .active{opacity:1}.carousel_fade .carousel-inner .active.left,.carousel_fade .carousel-inner .active.right{opacity:0;left:0;z-index:1}.carousel_fade .carousel-inner .next.left,.carousel_fade .carousel-inner .prev.right{opacity:1}.carousel_fade .item{opacity:0;transition-property:opacity}.carousel_fade .carousel_fade_caption_container~.item{background-position:center center;background-repeat:no-repeat;background-size:cover;position:absolute;top:0;right:0;bottom:0;left:0}@media(-webkit-transform-3d),(transform-3d){.carousel_fade .carousel-inner>.item.active.left,.carousel_fade .carousel-inner>.item.active.right,.carousel_fade .carousel-inner>.item.next,.carousel_fade .carousel-inner>.item.prev{opacity:0;transform:translateZ(0)}.carousel_fade .carousel-inner>.item.active,.carousel_fade .carousel-inner>.item.next.left,.carousel_fade .carousel-inner>.item.prev.right{opacity:1;transform:translateZ(0)}}code,pre{font-family:Menlo,Monaco,Consolas,Courier New,monospace}code{padding:0;border-radius:0;background-color:transparent;color:inherit;white-space:normal}pre{margin-bottom:21px;word-break:normal;word-wrap:normal}pre span.comment{color:#228b22}pre span.keyword{color:#00f}pre span.string{color:#a020f0}pre span.syscmd{color:#b28c00}pre span.untermstring{color:#b20000}.code_responsive{width:100%;margin-bottom:21px;overflow-y:hidden;overflow-x:auto;-webkit-overflow-scrolling:touch}.content_slider .carousel_counter{position:absolute;top:5px;right:70px;z-index:10}.content_slider .carousel-inner>.item{height:auto;padding:0}.content_slider .content_slider_image{width:66.666%;background-position:center center;background-repeat:no-repeat;background-size:cover}.content_slider .content_slider_image img{opacity:0}.content_slider .content_slider_caption{width:33.333%;padding:50px 15px 15px 30px}.content_slider .carousel-control{width:auto;height:auto;background-color:#0003;color:#fff;display:block;filter:none;font-size:100%;opacity:1!important;top:2px;right:2px;left:auto;bottom:auto;text-shadow:none}.content_slider .carousel-control.left{right:30px}.content_slider .carousel-control:hover{background-color:#00000080}.content_slider .carousel-control:visited{color:#fff}.content_slider .carousel-control [class^=icon-]{position:relative}.content_slider .carousel_footer{padding:10px 0;background:#fff}.content_slider.add_border .carousel_footer{padding:10px;background:#f5f5f5}.content_slider[class*=add_background_color_] .carousel_footer{background:#fff}@media(min-width:768px){.content_slider .content_slider_item{width:100%;display:table}.content_slider .content_slider_caption,.content_slider .content_slider_image{display:table-cell;position:relative;vertical-align:top}}@media(min-width:768px)and (max-width:991px){.content_slider .content_slider_image{width:58.333%}.content_slider .content_slider_caption{width:41.666%}}.cta_box{width:100%;padding:10px;border-radius:3px;background-color:#edf5f9;box-shadow:0 1px 1px #0000000d}.cta_box ul{margin-bottom:0}.cta_box li:last-of-type{margin-bottom:0}.horizontal_nav_container .cta_box{padding:20px 0 0;background-color:transparent;box-shadow:none;font-size:13px}.horizontal_nav_container .cta_box ul{float:right;text-align:right}.horizontal_nav_container .cta_box ul>li{padding-right:0;font-size:13px;line-height:1.23}.horizontal_nav_container .cta_box ul>li+li{margin-left:10px}.horizontal_nav_container .cta_box ul>li>a,.horizontal_nav_container .cta_box ul>li>a:visited{color:#0076a8}.horizontal_nav_container .cta_box ul>li>a:hover{color:#005487;text-decoration:none}del{background-color:#faf0f0;position:relative;text-decoration:none}.dl-horizontal dt{width:100px;margin-bottom:10px;text-align:left}.dl-horizontal dd{margin-left:120px;margin-bottom:10px}.content_container .dropdown ul.dropdown-menu,.content_container_no_conflict .dropdown ul.dropdown-menu{max-height:336px;overflow-x:hidden;overflow-y:auto}.expand_collapse .expand_trigger{margin:0;padding:18px 0 14px 20px;cursor:pointer}.expand_collapse span.icon-arrow-open-down{margin:0 0 0 -20px;display:inline-block!important;float:left}.expand_collapse span.icon-arrow-open-right{display:none!important}.expand_collapse .collapse{overflow:hidden}.expand_collapse .collapse,.expand_collapse .collapsed,.expand_collapse .collapsing{padding-left:20px}.expand_collapse .collapsed span.icon-arrow-open-down{display:none!important}.expand_collapse .collapsed span.icon-arrow-open-right{margin:0 0 0 -20px;display:inline-block!important;float:left}.expand_collapse.add_trigger_border .expand_trigger{padding-top:14px;border-top:1px solid #e6e6e6}.expand_collapse.add_trigger_border .expand_trigger:first-of-type{border-top:none}.form-control{border-color:gray}textarea.height_100{height:100px!important}textarea.height_200{height:200px!important}textarea.height_300{height:300px!important}textarea.height_400{height:400px!important}textarea.height_500{height:500px!important}.alert{padding:13px 8px 13px 42px;border:none;border-radius:0}.alert h3{font: 700 15px/1.11 Arial,Helvetica,sans-serif}.alert .alert_heading{margin-bottom:13px;font-size:15px;line-height:1.11}.alert ol,.alert p,.alert ul{margin-bottom:10px}.alert .alert_icon{margin:-5px 0 0 -34px;font-size:24px!important;float:left;line-height:1}.alert>:last-child,.alert>:last-child>:last-child,.alert>:last-child>:last-child>:last-child{margin-bottom:0}.alert{color:#1a1a1a;font-size:15px}.alert .close span{font-size:21px}.alert-danger{border:1px solid #b7312c;background:#faf0f0}.alert-danger .alert_icon{color:#b7312c}.alert-info{border:1px solid #0076a8;background:#edf5f9}.alert-info .alert_icon{color:#0076a8}.alert-success{border:1px solid #008013;background:#f2f8f1}.alert-success .alert_icon{color:#008013}.alert-warning{border:1px solid #c05708;background:#fef9ed}.alert-warning .alert_icon{color:#c05708}.alert-dismissible{padding-right:35px}.alert .alert-link{font-weight:400}.Standard_Eloqua_Form .input-group .input-group-btn button{padding:6px 12px;font-size:14px;line-height:1.43;white-space:nowrap}.Standard_Eloqua_Form .input-group .input-group-btn button .icon_16{font-size:15px}.allForm .Standard_Eloqua_Form .check_group .checkbox input[type=checkbox],.allForm .Standard_Eloqua_Form .radio_group .radio input[type=radio]{margin-left:0}.glyphicon-remove,.glyphicon-ok{display:none!important}.has-error .glyphicon-remove,.has-success .glyphicon-ok{display:inline-block!important}.inline_form_error{padding:8px 15px 7px;margin:0 0 20px;background:#b7312c;border-radius:4px;color:#fff;display:inline-block;font-size:11px;font-weight:700;line-height:12px}.inline_form_error_arrow{width:0;height:0;margin:6px 0 0 10px;border:6px solid transparent;border-bottom-color:#b7312c;border-width:0 6px 6px 6px}.inline_form_error a,.inline_form_error a:visited{color:#fff;text-decoration:underline}.inline_form_error a:hover{color:#fffc}.inline_form_error :last-child{margin-bottom:0}.inline_form_error+.help-block{margin-top:-15px}.password_validation_container{padding:10px 12px;margin-top:8px;border:1px solid #fff;border-radius:4px;color:#6f6f6f;display:none;font-size:12px}.password_validation_container .progress_feedback_container{width:100%;margin-bottom:5px;display:table}.password_validation_container .progress_container{width:82%;display:table-cell;vertical-align:middle}.password_validation_container .progress{height:8px;margin-top:1px;margin-bottom:0}.password_validation_container .password_validation_feedback{width:18%;padding-left:15px;display:table-cell;font-size:11px;vertical-align:middle;white-space:nowrap}.password_validation_container .icon_13{margin-right:3px;font-size:13px;line-height:1}.password_validation_container #requirements_block{padding-top:2px}.password_validation_container #requirements_block>li{margin-bottom:0}.password_validation_container #requirements_block>li+li{margin-top:7px}input[id=profile_password]::-ms-clear{display:none}.has-feedback .password_validation_container{display:block}.has-info .password_validation_container{border-color:#0076a8}.has-info .password_validation_container .icon_13{color:#e6e6e6}.has-error .password_validation_container{border-color:#b7312c}.has-error .password_validation_feedback{color:#b7312c}.has-success .password_validation_container{border-color:#008013}.has-success .password_validation_feedback{color:#008013}.password_validation_container+.input-group-addon{padding:3px 10px;background:transparent!important}.password_validation_container+.input-group-addon span[class*=icon-]:not(.glyphicon){border:none}.password_validation_container+.input-group-addon .input_group_btn{padding:0!important;border:none!important;background:transparent!important}.input-append.input-group span[class*=glyphicon-]{right:35px;z-index:3}.input-append .form-control{border-radius:4px 0 0 4px!important}.has-success .form-control{border-color:#008013}.has-success .form-control-feedback,.has-success .checkbox,.has-success .checkbox-inline,.has-success.checkbox-inline label,.has-success.checkbox label,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.radio-inline label,.has-success.radio label{color:#008013}.has-error .form-control{border-color:#b7312c}.has-error .form-control-feedback,.has-error .checkbox,.has-error .checkbox-inline,.has-error.checkbox-inline label,.has-error.checkbox label,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.radio-inline label,.has-error.radio label{color:#b7312c}#go-top{bottom:10px;display:none;position:fixed;right:10px}#responsive_iframe #go-top{display:none!important}#cookie-banner{bottom:0;display:table;padding:10px;position:fixed;width:100%;z-index:100}#cookie-banner div{display:table-cell}#cookie-banner #cookie-icon{width:20%}#cookie-banner #cookie-text{width:60%}#cookie-banner #cookie-remove{vertical-align:middle;width:20%}#cookie-banner #cookie-remove span{cursor:pointer}hr{margin-top:30px;margin-bottom:30px;border-color:#e6e6e6}hr.add_thickness_3{border-top-width:3px}hr.add_thickness_5{border-top-width:5px}hr.add_thickness_7{border-top-width:7px}hr.add_hr_spacing_5{margin-top:5px;margin-bottom:5px}hr.add_hr_spacing_10{margin-top:10px;margin-bottom:10px}hr.add_hr_spacing_15{margin-top:15px;margin-bottom:15px}hr.add_hr_spacing_20{margin-top:20px;margin-bottom:20px}hr.add_hr_spacing_25{margin-top:25px;margin-bottom:25px}.flowable_image{margin:10px}.flowable_image.pull-right{margin:0 0 10px 10px}.flowable_image.pull-left{margin:0 10px 10px 0}.image_hover_overlay{background-color:#000!important;overflow:hidden;position:relative}.image_hover_overlay *{backface-visibility:hidden;-webkit-backface-visibility:hidden}.image_hover_overlay :before{backface-visibility:hidden;-webkit-backface-visibility:hidden}.image_hover_overlay img{width:100%;max-width:none;opacity:1;transition:opacity .5s ease-in-out}.image_hover_overlay:hover img{opacity:.4}.image_hover_overlay a.image_hover_overlay_content{width:100%;color:#fff;display:block;position:relative;text-decoration:none!important}.image_hover_overlay a.image_hover_overlay_content:before{content:"";font-size:28px!important;opacity:0!important;position:absolute;top:50%;right:0;left:0;text-align:center;transform:translateY(-50%);transition:opacity .5s ease-in-out}.image_hover_overlay a.image_hover_overlay_content:hover:before{opacity:1!important}.image_hover_overlay a.image_hover_overlay_content[class*=icon-]{padding-left:0}.image_hover_overlay a.image_hover_overlay_content[class*=icon-]:before{margin-left:0}@media(max-width:767px){.image_hover_overlay a.image_hover_overlay_content:before{font-size:60px!important}}@media(min-width:768px)and (max-width:991px){.image_hover_overlay a.image_hover_overlay_content:before{font-size:42px!important}}.image_hover_overlay div.image_hover_overlay_content{padding:20px;color:#fff;opacity:0;position:absolute;top:0;right:0;bottom:0;left:0;text-align:center;transition:opacity .5s ease-in-out;z-index:2}.image_hover_overlay:hover div.image_hover_overlay_content{opacity:1}.image_hover_overlay div.image_hover_overlay_content *{color:#fff}.image_hover_overlay div.image_hover_overlay_content :last-child{margin-bottom:0}.image_hover_overlay div.image_hover_overlay_content.add_vertical_align_middle{top:50%;bottom:auto;transform:translateY(-50%)}.image_hover_overlay div.image_hover_overlay_content.add_vertical_align_bottom{top:auto;bottom:0}@media(max-width:767px){.image_hover_overlay div.image_hover_overlay_content,.image_hover_overlay div.image_hover_overlay_content.add_vertical_align_bottom{top:50%;bottom:auto;transform:translateY(-50%)}}.image_gallery_container .thumbnail{margin-bottom:0}.image_gallery_container .thumbnail img{border:none}ins{background-color:#f2f8f1;position:relative;text-decoration:none}.media{margin-bottom:20px}.media img{max-width:none}.media-right,.media>.pull-right{padding-left:15px}.media-left,.media>.pull-left{padding-right:15px}.media-bottom{padding-bottom:15px}.opacity_container{padding:10px 15px 5px;margin-left:-20px;margin-right:-20px;background-color:#e4e4e4cc}.opacity_container.opacity_dark,.opacity_container.opacity_dark_8{background-color:#000c}.opacity_container.opacity_dark_6{background-color:#0009}.opacity_container.opacity_dark_4{background-color:#0006}.opacity_container.opacity_dark_2{background-color:#0003}.opacity_container.opacity_light,.opacity_container.opacity_light_8{background-color:#fffc}.opacity_container.opacity_light_6{background-color:#fff9}.opacity_container.opacity_light_4{background-color:#fff6}.opacity_container.opacity_light_2{background-color:#fff3}.opacity_container[class*=opacity_light] :not(a){color:#1a1a1a}.pagination_container{float:right;font-size:13px}.pagination_container #search_btn{padding:1px 8px 1px 0;margin:0 5px 0 0;border-right:1px solid #f5f5f5;color:#0076a8;cursor:pointer;display:inline-block}.pagination_container #search_btn:not(.collapsed):before{content:"Close "}.pagination_container .next_page,.pagination_container .prev_page{padding:3px 8px;margin:-3px 0 0;border:1px solid #b1b1b1;background:#fff;color:#b1b1b1}.pagination_container .next_page span,.pagination_container .prev_page span{width:12px;display:inline-block}.pagination_container .prev_page{margin-left:5px;border-radius:5px 0 0 5px}.pagination_container .next_page{margin-left:-4px;border-radius:0 5px 5px 0}.panel{margin-bottom:30px;border-radius:0;box-shadow:none;background-position:center center;background-repeat:no-repeat;position:relative}.panel.panel-default{border-color:#e6e6e6;box-shadow:0 1px 1px #0000000d}.panel-heading{border-bottom:none;border-top-right-radius:0;border-top-left-radius:0;background-position:center center;background-repeat:no-repeat;position:relative}.panel-heading *{margin-bottom:0}.panel-heading h2{font-size:24px;line-height:1.13}.panel_align_bottom,.panel_heading_align_bottom{bottom:10px;position:absolute!important}.panel-default .panel-heading{border-bottom:1px solid #e6e6e6}.panel .panel-footer[style^=background-],.panel .panel-heading[style^=background-]{min-height:50px}.panel_image_cover .panel-footer,.panel_image_cover .panel-heading{background-size:cover}.panel-body{position:relative}.panel .category_label{margin-bottom:0!important;color:gray;font-size:14px;font-weight:700;text-transform:uppercase}.panel-footer{border-bottom:none;border-top:none;border-bottom-right-radius:0;border-bottom-left-radius:0;background-color:#fff;background-position:center center;background-repeat:no-repeat;position:relative}.panel-footer[class*=add_transparent_background_]{background-color:transparent}.panel-footer:empty{min-height:36px}.panel_color_general .panel-heading{background-color:#f5f5f5}.panel_color_primary .panel-heading{background-color:#6f6f6f;border-bottom-color:#6f6f6f}.panel_color_primary .panel-heading *{color:#fff}.panel_color_secondary .panel-heading{background-color:#005487;border-bottom-color:#005487}.panel_color_secondary .panel-heading *{color:#fff}.panel_color_quaternary .panel-heading{background-color:#f2a900;border-bottom-color:#f2a900}.panel_color_quaternary .panel-heading *{color:#fff}.panel_color_quinary .panel-heading{background-color:#00a9e0;border-bottom-color:#00a9e0}.panel_color_quinary .panel-heading *{color:#fff}.panel_color_senary .panel-heading{background-color:#b7312c;border-bottom-color:#b7312c}.panel_color_senary .panel-heading *{color:#fff}.panel_color_septenary .panel-heading{background-color:#c05708;border-bottom-color:#c05708}.panel_color_septenary .panel-heading *{color:#fff}.panel_color_tertiary .panel-heading{background-color:#008013;border-bottom-color:#008013}.panel_color_tertiary .panel-heading *{color:#fff}.panel_color_emphasize .panel-heading{background-color:#c05708;border-bottom-color:#c05708}.panel_color_emphasize .panel-heading *{color:#fff}.panel.panel_footer_overlay{position:relative}.panel.panel_footer_overlay .panel-footer{background-color:#e4e4e4cc;bottom:0;left:0;position:absolute;right:0}.panel.panel_footer_overlay.opacity_dark .panel-footer,.panel.panel_footer_overlay.opacity_dark_8 .panel-footer{background-color:#000c}.panel.panel_footer_overlay.opacity_dark_6 .panel-footer{background-color:#0009}.panel.panel_footer_overlay.opacity_dark_4 .panel-footer{background-color:#0006}.panel.panel_footer_overlay.opacity_dark_2 .panel-footer{background-color:#0003}.panel.panel_footer_overlay.opacity_light .panel-footer,.panel.panel_footer_overlay.opacity_light_8 .panel-footer{background-color:#fffc}.panel.panel_footer_overlay.opacity_light_6 .panel-footer{background-color:#fff9}.panel.panel_footer_overlay.opacity_light_4 .panel-footer{background-color:#fff6}.panel.panel_footer_overlay.opacity_light_2 .panel-footer{background-color:#fff3}.panel.panel_image_right{background-position:right center;background-repeat:no-repeat;background-size:contain}.panel.panel_image_left{background-position:left center;background-repeat:no-repeat;background-size:contain}.panel.panel_image_right_cover{background-position:right center;background-repeat:no-repeat;background-size:cover}.panel_card .panel-body{padding-top:30px}.panel_icon{width:40px;height:40px;border:3px solid #fff!important;border-radius:50%;position:relative}.panel_icon:before{font-size:18px;color:#fff;line-height:1;position:absolute;top:calc(50% - 9px);left:calc(50% - 9px)}.panel_card .panel_icon{position:absolute;left:auto;top:-20px}.panel_fill_override_default,.panel_color_fill.panel_color_default{background-color:#f5f5f5}.panel_color_fill.panel_color_primary{background-color:#6f6f6f}.panel_color_fill.panel_color_secondary{background-color:#005487}.panel_color_fill.panel_color_tertiary{background-color:#008013}.panel_color_fill.panel_color_quaternary{background-color:#f2a900}.panel_color_fill.panel_color_quinary{background-color:#00a9e0}.panel_color_fill.panel_color_senary{background-color:#b7312c}.panel_color_fill.panel_color_septenary,.panel_color_fill.panel_color_emphasize{background-color:#c05708}.panel_color_fill.panel_color_transparent{background-color:transparent}.panel_color_fill.panel_color_emphasize *,.panel_color_fill.panel_color_primary *,.panel_color_fill.panel_color_quaternary *,.panel_color_fill.panel_color_quinary *,.panel_color_fill.panel_color_secondary *,.panel_color_fill.panel_color_senary *,.panel_color_fill.panel_color_septenary *,.panel_color_fill.panel_color_tertiary *{color:#fff}.panel_color_fill * a{text-decoration:underline}.panel_color_fill h1 a,.panel_color_fill h2 a,.panel_color_fill h3 a,.panel_color_fill h4 a,.panel_color_fill h5 a,.panel_color_fill h6 a{text-decoration:none}.panel_color_fill a:hover{text-decoration:underline}.panel_color_transparent * a,.panel_color_white * a,.panel_color_default * a{text-decoration:none}.panel_color_default * a:hover{text-decoration:underline}.panel_color_fill a.btn{text-decoration:none!important}.panel_form{border-radius:6px}.panel_form .panel-heading{padding-top:15px;padding-bottom:15px;background:transparent}.panel_form .panel-footer{padding-top:15px;padding-bottom:15px;border-top:1px solid #e6e6e6;background:transparent;text-align:right}.panel_font_downsize{font-size:86%}.panel_font_downsize .h1,.panel_font_downsize h1{font-size:28px}.panel_font_downsize .h2,.panel_font_downsize h2{font-size:24px}.panel_font_downsize .h3,.panel_font_downsize h3{font-size:19px}.panel_font_downsize .h4,.panel_font_downsize h4{font-size:17px}.panel_font_downsize .h5,.panel_font_downsize h5{font-size:16px}.panel_font_downsize .h6,.panel_font_downsize h6{font-size:13px}.panel_font_downsize .panel-body .h1,.panel_font_downsize .panel-body h1{margin-bottom:30px}.panel_font_downsize .panel-body .h2,.panel_font_downsize .panel-body h2{margin-bottom:13px}.panel_font_downsize .panel-body .h3,.panel_font_downsize .panel-body h3{margin-bottom:11px}.panel_font_downsize .panel-body .h4,.panel_font_downsize .panel-body h4{margin-bottom:10px}.panel_font_downsize .panel-body .h5,.panel_font_downsize .panel-body h5,.panel_font_downsize .panel-body .h6,.panel_font_downsize .panel-body h6{margin-bottom:9px}.panel_font_downsize ol>li,.panel_font_downsize ul>li{margin-bottom:6px}.panel_font_downsize a[class*=icon-]:before{font-size:16px;line-height:1}.panel_icon_16 .panel-body{padding-left:32px}.panel_icon_24 .panel-body{padding-left:48px}.panel_icon_32 .panel-body{padding-left:64px}.panel_icon_48 .panel-body{padding-left:96px}.panel_icon_56 .panel-body{padding-left:112px}.panel_icon_16 .panel-body .icon_16{margin-top:3px;margin-left:-17px;float:left}.panel_icon_24 .panel-body .icon_24{margin-left:-33px;float:left}.panel_icon_32 .panel-body .icon_32{margin-left:-49px;float:left}.panel_icon_48 .panel-body .icon_48{margin-left:-81px;float:left}.panel_icon_56 .panel-body .icon_56{margin-left:-97px;float:left}.panel_sidebar .panel-body{border-right:5px solid #f5f5f5}.panel_sidebar.panel_color_primary .panel-body{border-right-color:#6f6f6f}.panel_sidebar.panel_color_secondary .panel-body{border-right-color:#005487}.panel_sidebar.panel_color_tertiary .panel-body{border-right-color:#008013}.panel_sidebar.panel_color_quaternary .panel-body{border-right-color:#f2a900}.panel_sidebar.panel_color_quinary .panel-body{border-right-color:#00a9e0}.panel_sidebar.panel_color_senary .panel-body{border-right-color:#b7312c}.panel_sidebar.panel_color_septenary .panel-body,.panel_sidebar.panel_color_emphasize .panel-body{border-right-color:#c05708}.panel_sidebar_left .panel-body{border-left:5px solid #f5f5f5}.panel_sidebar_left.panel_color_primary .panel-body{border-left-color:#6f6f6f}.panel_sidebar_left.panel_color_secondary .panel-body{border-left-color:#005487}.panel_sidebar_left.panel_color_tertiary .panel-body{border-left-color:#008013}.panel_sidebar_left.panel_color_quaternary .panel-body{border-left-color:#f2a900}.panel_sidebar_left.panel_color_quinary .panel-body{border-left-color:#00a9e0}.panel_sidebar_left.panel_color_senary .panel-body{border-left-color:#b7312c}.panel_sidebar_left.panel_color_septenary .panel-body,.panel_sidebar_left.panel_color_emphasize .panel-body{border-left-color:#c05708}.panel_topbar .panel-heading{border-bottom:none}.panel_topbar .panel-body{border-top:5px solid #f5f5f5}.panel_topbar.panel_color_primary .panel-body{border-top-color:#6f6f6f}.panel_topbar.panel_color_secondary .panel-body{border-top-color:#005487}.panel_topbar.panel_color_tertiary .panel-body{border-top-color:#008013}.panel_topbar.panel_color_quaternary .panel-body{border-top-color:#f2a900}.panel_topbar.panel_color_quinary .panel-body{border-top-color:#00a9e0}.panel_topbar.panel_color_senary .panel-body{border-top-color:#b7312c}.panel_topbar.panel_color_septenary .panel-body,.panel_topbar.panel_color_emphasize .panel-body{border-top-color:#c05708}[class*=pictogram-]:before{display:inline-block;font-family:mathworks-pictograms;font-size:54px;font-style:normal;font-variant:normal;font-weight:400;line-height:1;speak:none;text-decoration:none!important;text-transform:none;vertical-align:middle}[class*=pictogram-]{color:#6f6f6f;display:inline-block}a[class*=pictogram-]:before{text-decoration:underline}a[class*=pictogram-]:before,a[class*=pictogram-]:hover:before{text-decoration:none}.pictogram_56,img.pictogram_56{width:56px;height:auto}.pictogram_64,img.pictogram_64{width:64px;height:auto}.pictogram_72,img.pictogram_72{width:72px;height:auto}.pictogram_100,img.pictogram_100{width:100px;height:auto}.pictogram_125,img.pictogram_125{width:125px;height:auto}.pictogram_150,img.pictogram_150{width:150px;height:auto}.pictogram_56[class*=pictogram-],.pictogram_64[class*=pictogram-],.pictogram_72[class*=pictogram-],.pictogram_100[class*=pictogram-],.pictogram_125[class*=pictogram-],.pictogram_150[class*=pictogram-]{width:auto}.pictogram_56[class*=pictogram-]:before{font-size:56px}.pictogram_64[class*=pictogram-]:before{font-size:64px}.pictogram_72[class*=pictogram-]:before{font-size:72px}.pictogram_100[class*=pictogram-]:before{font-size:100px}.pictogram_125[class*=pictogram-]:before{font-size:125px}.pictogram_150[class*=pictogram-]:before{font-size:150px}.pictogram-5g:before{content:""!important}.pictogram-account:before{content:""!important}.pictogram-add-item:before{content:""!important}.pictogram-add-on:before{content:""!important}.pictogram-aerospace:before{content:""!important}.pictogram-agile-development:before{content:""!important}.pictogram-algorithm-development:before{content:""!important}.pictogram-answers:before{content:""!important}.pictogram-application-deployment:before{content:""!important}.pictogram-apps:before{content:""!important}.pictogram-arrow:before{content:""!important}.pictogram-atom:before{content:""!important}.pictogram-audio:before{content:""!important}.pictogram-automotive:before{content:""!important}.pictogram-award:before{content:""!important}.pictogram-battery:before{content:""!important}.pictogram-big-data:before{content:""!important}.pictogram-biotech-pharmaceuticals:before{content:""!important}.pictogram-blocks:before{content:""!important}.pictogram-blog:before{content:""!important}.pictogram-bolt:before{content:""!important}.pictogram-book:before{content:""!important}.pictogram-brain:before{content:""!important}.pictogram-briefcase:before{content:""!important}.pictogram-bug-report:before{content:""!important}.pictogram-calendar:before{content:""!important}.pictogram-calendar-addto:before{content:""!important}.pictogram-checkmark:before{content:""!important}.pictogram-chemistry:before{content:""!important}.pictogram-chevron:before{content:""!important}.pictogram-clock:before{content:""!important}.pictogram-cloud-computing:before{content:""!important}.pictogram-code:before{content:""!important}.pictogram-code-generation:before{content:""!important}.pictogram-communications:before{content:""!important}.pictogram-computational-biology:before{content:""!important}.pictogram-computer:before{content:""!important}.pictogram-computervision-eye:before{content:""!important}.pictogram-computervision-webcam:before{content:""!important}.pictogram-container:before{content:""!important}.pictogram-control-systems:before{content:""!important}.pictogram-corporation:before{content:""!important}.pictogram-coupon:before{content:""!important}.pictogram-data-acquisition:before{content:""!important}.pictogram-data-analysis:before{content:""!important}.pictogram-data-analytics:before{content:""!important}.pictogram-database-connectivity-and-reporting:before{content:""!important}.pictogram-deep-learning:before{content:""!important}.pictogram-desktop-tower:before{content:""!important}.pictogram-development:before{content:""!important}.pictogram-document:before{content:""!important}.pictogram-documentation:before{content:""!important}.pictogram-download:before{content:""!important}.pictogram-earth:before{content:""!important}.pictogram-ebook:before{content:""!important}.pictogram-embedded-systems:before{content:""!important}.pictogram-energy:before{content:""!important}.pictogram-engine:before{content:""!important}.pictogram-enterprise-it-systems:before{content:""!important}.pictogram-equation:before{content:""!important}.pictogram-event-based-modeling:before{content:""!important}.pictogram-examine:before{content:""!important}.pictogram-examples:before{content:""!important}.pictogram-expand:before{content:""!important}.pictogram-eye:before{content:""!important}.pictogram-fileexchange:before{content:""!important}.pictogram-finance:before{content:""!important}.pictogram-flowchart:before{content:""!important}.pictogram-folder:before{content:""!important}.pictogram-function:before{content:""!important}.pictogram-gears:before{content:""!important}.pictogram-globe:before{content:""!important}.pictogram-gpu:before{content:""!important}.pictogram-grader:before{content:""!important}.pictogram-graph:before{content:""!important}.pictogram-hardware:before{content:""!important}.pictogram-hdl-code-generation:before{content:""!important}.pictogram-house:before{content:""!important}.pictogram-hub:before{content:""!important}.pictogram-image:before{content:""!important}.pictogram-image-processing:before{content:""!important}.pictogram-interactive:before{content:""!important}.pictogram-internet-of-things:before{content:""!important}.pictogram-key:before{content:""!important}.pictogram-laptop:before{content:""!important}.pictogram-laptop-code:before{content:""!important}.pictogram-learning-management-system:before{content:""!important}.pictogram-lightbulb:before{content:""!important}.pictogram-location-marker:before{content:""!important}.pictogram-machine-learning:before{content:""!important}.pictogram-magnifyingglass:before{content:""!important}.pictogram-mail:before{content:""!important}.pictogram-mathematical-modeling:before{content:""!important}.pictogram-math-statistics-optimization:before{content:""!important}.pictogram-mathsymbols:before{content:""!important}.pictogram-matlab:before{content:""!important}.pictogram-matlab-certification:before{content:""!important}.pictogram-matlab-computer:before{content:""!important}.pictogram-matlab-drive:before{content:""!important}.pictogram-matlab-laptop:before{content:""!important}.pictogram-matlab-mobile:before{content:""!important}.pictogram-matlab-online:before{content:""!important}.pictogram-medical:before{content:""!important}.pictogram-message:before{content:""!important}.pictogram-mining:before{content:""!important}.pictogram-mixed-signal:before{content:""!important}.pictogram-model-based-system-development:before{content:""!important}.pictogram-modular:before{content:""!important}.pictogram-motor-and-power-control:before{content:""!important}.pictogram-news:before{content:""!important}.pictogram-newsletter:before{content:""!important}.pictogram-oil-gas:before{content:""!important}.pictogram-palette:before{content:""!important}.pictogram-parallel-computing:before{content:""!important}.pictogram-people:before{content:""!important}.pictogram-people-network:before{content:""!important}.pictogram-phone:before{content:""!important}.pictogram-physical-modeling:before{content:""!important}.pictogram-pi:before{content:""!important}.pictogram-piechart:before{content:""!important}.pictogram-pointer:before{content:""!important}.pictogram-polyspace:before{content:""!important}.pictogram-predictive-analytics:before{content:""!important}.pictogram-prism:before{content:""!important}.pictogram-project:before{content:""!important}.pictogram-quality:before{content:""!important}.pictogram-quantitative-finance:before{content:""!important}.pictogram-question-mark:before{content:""!important}.pictogram-quote:before{content:""!important}.pictogram-racetrack:before{content:""!important}.pictogram-rapid-prototyping:before{content:""!important}.pictogram-report-generation:before{content:""!important}.pictogram-realtime-simulation-and-testing:before{content:""!important}.pictogram-reinforcement-learning:before{content:""!important}.pictogram-release:before{content:""!important}.pictogram-request:before{content:""!important}.pictogram-research:before{content:""!important}.pictogram-robotics:before{content:""!important}.pictogram-rover:before{content:""!important}.pictogram-safety:before{content:""!important}.pictogram-satellitedish:before{content:""!important}.pictogram-scale:before{content:""!important}.pictogram-script:before{content:""!important}.pictogram-security:before{content:""!important}.pictogram-sensor:before{content:""!important}.pictogram-server:before{content:""!important}.pictogram-share:before{content:""!important}.pictogram-signal-processing:before{content:""!important}.pictogram-simulation-graphics:before{content:""!important}.pictogram-simulink:before{content:""!important}.pictogram-smart-phone:before{content:""!important}.pictogram-smartphone-sensors:before{content:""!important}.pictogram-space:before{content:""!important}.pictogram-speed:before{content:""!important}.pictogram-store:before{content:""!important}.pictogram-student:before{content:""!important}.pictogram-sun:before{content:""!important}.pictogram-support:before{content:""!important}.pictogram-target:before{content:""!important}.pictogram-teacher:before{content:""!important}.pictogram-techsupport:before{content:""!important}.pictogram-test-and-measurement:before{content:""!important}.pictogram-thingspeak:before{content:""!important}.pictogram-train:before{content:""!important}.pictogram-training:before{content:""!important}.pictogram-transportation:before{content:""!important}.pictogram-tutorials:before{content:""!important}.pictogram-university:before{content:""!important}.pictogram-userstory:before{content:""!important}.pictogram-variants:before{content:""!important}.pictogram-verification-validation-and-test:before{content:""!important}.pictogram-video:before{content:""!important}.pictogram-video-strip:before{content:""!important}.pictogram-webbrowser:before{content:""!important}.pictogram-webcam:before{content:""!important}.pictogram-webinar:before{content:""!important}.pictogram-wireless-communications:before{content:""!important}.pictogram-wireless-connection:before{content:""!important}.pictogram-wrench:before{content:""!important}.popover{font-size:13px}.progress_spinner{width:64px;height:64px;margin:0 auto;border-radius:50%;border:4px solid #e6e6e6;position:relative}.progress_spinner_dial{width:64px;height:64px;border-radius:50%;clip:rect(0,64px,64px,32px);content:"";position:absolute;top:-4px;left:-4px}.progress_spinner_dial:before{width:64px;height:64px;border:4px solid #00a9e0;border-radius:50%;clip:rect(0,32px,64px,0);content:"";position:absolute;transform:rotate(0)}.gt_50 .progress_spinner_dial:after{width:64px;height:64px;border:4px solid #00a9e0;border-radius:50%;clip:rect(0,64px,64px,32px);content:"";position:absolute;transform:rotate(0)}.gt_50 .progress_spinner_dial{clip:rect(0,64px,64px,0px)}.progress_spinner_determinate.gt_50 .progress_spinner_dial:before{clip:rect(0,32px,64px,0px)}.progress_spinner_text_container{width:56px;height:56px;border-radius:50%;background:#fff;content:"";display:table;position:absolute;top:calc(50% - 28px);left:calc(50% - 28px);text-align:center}.progress_spinner_text{display:table-cell;vertical-align:middle}.progress_spinner_text_container span{display:block;font-size:20px;font-weight:700;color:#00a9e0}.progress_spinner_percent_complete.add_percent_symbol:after{content:"%"}.progress_spinner_determinate.complete{border-color:#008013}.progress_spinner_determinate.complete .progress_spinner_dial:before{border-color:transparent}.progress_spinner_determinate.complete{-webkit-animation:pulsate-fwd .5s ease-in-out .2s both;animation:pulsate-fwd .5s ease-in-out .2s both}.progress_spinner_determinate.complete.scale-out-center{-webkit-animation:scale-out-center .5s cubic-bezier(.55,.085,.68,.53) both;animation:scale-out-center .5s cubic-bezier(.55,.085,.68,.53) both}span[class*=icon-].progress_spinner_loading_complete:not(.glyphicon){display:none}.progress_spinner.progress_spinner_indeterminate{animation:rotation 2s infinite linear}.progress_spinner.progress_spinner_indeterminate .progress_spinner_dial:before{transform:rotate(60deg)}@-webkit-keyframes pulsate-fwd{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}to{-webkit-transform:scale(1);transform:scale(1)}}@keyframes pulsate-fwd{0%{-webkit-transform:scale(1);transform:scale(1)}50%{-webkit-transform:scale(1.1);transform:scale(1.1)}to{-webkit-transform:scale(1);transform:scale(1)}}@-webkit-keyframes scale-out-center{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(0);transform:scale(0);opacity:1}}@keyframes scale-out-center{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(0);transform:scale(0);opacity:1}}@keyframes rotation{0%{transform:rotate(0)}to{transform:rotate(359deg)}}.rating_container{white-space:nowrap}.rating_container p{display:inline-block;font-size:22px}.rating_scale{display:inline-block}.rate_input,.rating_scale{color:#e6e6e6;display:inline-block;font:15px/1.75 mathworks;position:relative}.rating:before{content:""}.rated{color:#f2a900;overflow:hidden;position:absolute;left:0;top:0;white-space:nowrap}.rated:before{content:""}.ranking{font-size:13px}.ranking .list-inline li+li{border-left:1px solid #1a1a1a}.rating_container .radio_group_label{margin-bottom:0;display:inline-block;font-size:15px;line-height:1.75;vertical-align:top}.rating_container .control-label.radio_group_label{padding-top:0;font-weight:700}.rate_input:not(:checked)>input{width:1px;height:1px;padding:0;border:none;margin:-1px;clip:rect(0 0 0 0);overflow:hidden;position:absolute}.rate_input:not(:checked)>label{width:1.175em;padding:0 .0625em;margin-bottom:0;margin-right:.0625em;float:right;cursor:pointer;overflow:hidden;white-space:nowrap}.rate_input:not(:checked)>label:before{content:"";margin-right:.5em}.rate_input>input:checked~label{color:#f2a900}.rate_input:not(:checked)>label:hover,.rate_input:not(:checked)>label:hover~label{color:#f2a900}.rate_input>input:checked+label:hover,.rate_input>input:checked+label:hover~label,.rate_input>input:checked~label:hover,.rate_input>input:checked~label:hover~label,.rate_input>label:hover~input:checked~label{color:#f2a900}.rate_input>label:active{left:2px;position:relative;top:2px}.visuallyhidden{width:1px;height:1px;padding:0;border:none;margin:-1px;clip:rect(0 0 0 0);overflow:hidden;position:absolute}.row_striped{padding:0 15px}.row_striped>.row:nth-of-type(odd){background-color:#f5f5f5}.content_container .search_nested_content_container .conjoined_search{height:30px;padding:3px 12px;border-radius:4px 0 0 4px!important}.content_container .search_nested_content_container .input-group-btn:last-child>.btn{margin-left:0}.content_container .search_nested_content_container .btn_search_adjacent{padding-left:8px;padding-right:8px;border-radius:0 4px 4px 0;background-color:#005487;color:#fff!important}.content_container .search_nested_content_container .btn_search_adjacent.icon-search{padding-top:6px;padding-bottom:6px}.content_container .search_nested_content_container .dropdown-toggle{height:30px;padding-top:4px;padding-right:22px;padding-bottom:3px;margin-right:1px;border-radius:0;font-size:13px;line-height:1}.content_container .search_nested_content_container input[type=search]::-webkit-search-cancel-button{-webkit-appearance:searchfield-cancel-button}.content_container .band:not(.add_background_color_gray) .search_nested_content_container .conjoined_search{color:#1a1a1a!important;border:none}.content_container .band:not(.add_background_color_gray) .search_nested_content_container .btn_search_adjacent{background-color:#fff;color:#005487!important}.content_container .search_nested_content_container .form-control.conjoined_search:focus,.content_container .search_nested_content_container button:focus{outline:2px solid rgba(102,175,233,.6);outline-offset:2px}.content_container .band:not(.add_background_color_gray) .search_nested_content_container .form-control.conjoined_search:focus,.content_container .band:not(.add_background_color_gray) .search_nested_content_container button:focus{outline:2px solid rgba(255,255,255,.65);outline-offset:3px}.content_container .section_header .search_nested_content_container button:focus{outline-color:#ffffffa6;outline-offset:0}.content_container .section_header .search_nested_content_container .form-control.conjoined_search:focus{outline-color:#ffffffa6}.nugget_container{padding:5px 5px 0;margin-top:10px;background:#f5f5f5;overflow:hidden}.nugget_label{margin:8px 13px 0 5px;font-size:11px;float:left;text-transform:uppercase}.nugget{max-width:200px;border:1px solid #e6e6e6;border-radius:5px;margin-bottom:5px;background:#fff;float:left}.nugget+.nugget{margin-left:5px}.nugget .label{padding:0;color:#1a1a1a;font-size:12px;font-weight:400}.nugget:hover{background-color:#0000000a;border-color:#6f6f6f}.nugget:hover .label{text-decoration:line-through}.nugget a{padding:3px 25px 5px 5px;color:#1a1a1a;display:block;overflow:hidden;position:relative;text-overflow:ellipsis;white-space:nowrap}.nugget a:hover{text-decoration:none}.nugget a.icon-remove{padding-left:5px}.nugget a.icon-remove:before{right:3px;top:5px}.nugget_remove_all{background:transparent}.nugget_remove_all a{padding-right:5px}.nugget_remove_all:hover{border:1px solid #6f6f6f;background:transparent}.nugget_remove_all:hover .label{text-decoration:none}@media screen and (max-width:420px){.nugget_label{margin:6px 0 11px 5px;display:block;float:none}.nugget{max-width:none;border:none;border-radius:0;display:block;float:none;overflow:hidden}.nugget+.nugget{margin-left:0}.nugget_remove_all:hover{border:none}}.search_nuggets{height:41px;margin-bottom:20px;opacity:0;overflow:hidden;transition:opacity .25s ease,height .25s ease}.nuggets_v2{width:100%;padding:6px 9px 0 87px;background:#f5f5f5;float:left;overflow:visible;position:relative}.nuggets_v2 .nuggets_title{padding:7px 8px 6px 9px;margin:0 0 6px;display:inline-block;float:left;font-size:11px;text-transform:uppercase;position:absolute;top:6px;left:0}.nuggets_v2 .nugget_list_container{float:left;font-size:0}.nuggets_v2 .nugget_list{margin-bottom:0;display:inline-block;font-size:0;white-space:nowrap}.nuggets_v2 .nugget{margin:0 0 6px 5px;display:inline-block;font-size:12px;line-height:1;float:none}.nuggets_v2 .nugget:hover{text-decoration:line-through}.nuggets_v2 .nugget a{padding:8px 25px 7px 5px;line-height:1}.nuggets_v2 .nugget a.icon-remove:before{font-size:16px;right:3px;top:calc(50% - 11px)}.nuggets_v2 .nugget_remove_all{margin-bottom:6px;border:1px solid transparent;display:inline-block;float:left;line-height:1}.nuggets_v2 .nugget_remove_all a{padding:8px 5px 7px;color:#0076a8!important;display:inline-block;font-size:12px;line-height:1}#nugget_overflow_actuator{margin:0 0 6px 5px;border:1px solid #e6e6e6;border-radius:5px;display:inline-block;float:left;font-size:12px;line-height:1}#nugget_overflow_actuator a{padding:8px 5px 7px;color:#1a1a1a!important;display:inline-block;text-decoration:none!important}#nugget_overflow_actuator:hover{border-color:#1a1a1a}#nugget_overflow_actuator a{font-size:0}#nugget_overflow_actuator a:before{content:"view less";font-size:12px}#nugget_overflow_actuator a.collapsed{font-size:12px}#nugget_overflow_actuator a.collapsed:before{content:""}#nugget_overflow_container{width:100%}.nugget_overflow_list{margin-bottom:0;display:inline-block;float:left;font-size:0}@media(max-width:767px){.nuggets_v2{padding-left:9px!important}.nuggets_v2 .nuggets_title{display:block;float:none;position:relative;top:auto;left:auto}.nuggets_v2 .nugget_list_container,.nuggets_v2 .nugget_list{float:none}.nuggets_v2 .nugget_overflow{padding-left:0!important}}.subsection{padding-top:30px;margin-top:30px;border-top:1px solid #e6e6e6}.separator{margin:0 0 21px;border-top:1px solid #e6e6e6}.slider_container{padding:20px 15px 0;margin-bottom:30px;display:block;background-color:#f5f5f5;overflow:hidden}.slider_container p{margin-bottom:0}.slider_container .slide{margin:0 auto;position:relative}.slider-inner{width:100%;overflow:hidden;position:relative}.slider-inner>.item{display:none;position:relative;transition:.6s ease-in-out left;-webkit-transition:.6s ease-in-out left}.slider-inner>.item>a>img,.slider-inner>.item>img{max-width:100%;height:auto;display:block;line-height:1}.slider-inner>.active,.slider-inner>.next,.slider-inner>.prev{display:block}.slider-inner>.next,.slider-inner>.prev{width:100%;position:absolute;top:0}.slider-inner>.next{left:100%}.slider-inner>.prev{left:-100%}.slider-inner>.active,.slider-inner>.next.left,.slider-inner>.prev.right{left:0}.slider-control{width:30px;bottom:0;color:#0076a8;font-size:26px;position:absolute;text-align:center;text-shadow:none;top:-20px}.slider-control.left{left:-15px}.slider-control.right{right:-15px}.slider-control [class*=icon-]{position:absolute;top:calc(50% - 14px);z-index:5}.slider-control.left [class*=icon-]{left:1px}.slider-control.right [class*=icon-]{right:1px}.slider-control:focus [class*=icon-],.slider-control:hover [class*=icon-]{color:#005487;opacity:.9;text-decoration:none}.slider-control .icon-next,.slider-control .icon-prev{font-family:mathworks}.slider-control .icon-prev:before{content:""}.slider-control .icon-next:before{content:""}.small ol,.small p,.small ul,small ol,small p,small ul{margin-bottom:15px}.small.small_90,small.small_90{font-size:90%}.small.small_70,small.small_70{font-size:70%}small.percent_90{font-size:90%}small.percent_70{font-size:70%}.social_media.large img,.social_media.large object{width:24px;height:24px;display:inline-block}.social_media.large .social_media_icons li{padding-left:0;margin-bottom:0;float:left}.social_media.large .social_media_icons li+li{padding-left:14px}.sharebuttons li{height:24px}.fb_iframe_widget span{vertical-align:baseline!important}.sharebuttons.list-inline .fb-share-button span{height:20px!important}sub,sup{font-size:55%;line-height:0;position:relative}sup{top:-.85em}.nav-tabs{margin-left:0}.nav-tabs li{padding-left:0;margin-bottom:-1px;font: 400 16px/1.13 Arial,Helvetica,sans-serif}ul.nav-tabs li:before{min-width:0;margin-left:0;content:"";display:block}.nav-tabs li:hover a{color:#005487}.nav-tabs li span[class*=icon-]:not(.glyphicon){margin:-2px 5px 0 0;float:left}.tab-content{padding:30px 15px;border:1px solid #e6e6e6;border-top:none}.tab-container .panel-title{font-size:19px}.tab-container .responsive .panel-heading{padding:0}.tab-container .responsive .panel-heading a{padding:10px 15px;color:#1a1a1a;overflow:auto}.tab-container a.accordion-toggle{display:block;text-decoration:none}.tab-container a.accordion-toggle:hover{color:#1a1a1a}.tab-container a.accordion-toggle .label-description{display:none}.tab-container .accordion-toggle .icon-arrow-open-down,.tab-container .accordion-toggle .icon-arrow-open-up{float:right}.tab-container .accordion-toggle .icon-arrow-open-up{display:inline-block}.tab-container .accordion-toggle .icon-arrow-open-down,.tab-container .accordion-toggle.collapsed .icon-arrow-open-up{display:none}.tab-container .accordion-toggle.collapsed .icon-arrow-open-down{display:inline-block}.tab-container .tabs-vertical .tab-pane.active{padding-bottom:0;border-bottom:none}.tab-container .tabs-vertical{width:25%;padding-top:30px;border:none;float:left;position:relative}.tab-container .tabs-vertical+.tab-content{width:75%;padding-left:15px;padding-right:15px;border-top:1px solid #e6e6e6;border-left:1px solid #e6e6e6;float:left;position:relative}.tab-container .tabs-vertical .label-description{color:#1a1a1a;display:block;font: 400 14px/1 Arial,Helvetica,sans-serif;text-decoration:none}.tab-container .tabs-vertical>li{margin-bottom:2px;float:none}.tab-container .tabs-vertical>li>a{margin-right:0;border-radius:4px 0 0 4px;display:block}.tab-container .tabs-vertical>li.active>a,.tab-container .tabs-vertical>li.active>a:focus,.tab-container .tabs-vertical>li.active>a:hover{margin-right:-1px;border-right-color:#fff;border-bottom-color:#e6e6e6;background:#fff;z-index:1000}.table{font-size:14px;line-height:1.5}.table p,.table ul{margin-bottom:10px}.table li{margin-bottom:3px}.agenda[class*=table]{border:1px solid #e6e6e6}.agenda .table-responsive{margin-bottom:20px}.agenda .table{margin-bottom:0}.agenda .table td[class*=add_background_color]{font-weight:700;vertical-align:bottom}.agenda .table .agenda_speaker{color:#6f6f6f;display:block;font-style:italic}.table-bordered,.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-color:#e6e6e6}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:1px}.table-condensed{font-size:13px}.datatable{margin:0 0 21px}.datatable th{padding:8px 15px;background:#f5f5f5;color:#1a1a1a;font-size:14px;font-weight:400;line-height:1.14;vertical-align:middle}.datatable td{padding:8px 15px;font-size:12px;line-height:1.14}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f5f5f5}a.tag_component{display:inline-block;padding:4px 12px;border:1px solid #0076a8;border-radius:20px;margin:0 10px 10px 0;color:#0076a8;font-size:12px;line-height:1;vertical-align:middle;text-decoration:none;text-transform:lowercase}a.tag_component:hover,a.tag_component:visited{border-color:#005487;color:#005487;text-decoration:none;cursor:pointer}a.tag_component.tag_large{font-size:15px;line-height:1.2}a.tag_component.tag_remove .icon-remove{margin-right:-5px;color:#0076a8}a.tag_component.tag_remove .icon-remove:hover{color:#005487}.thumbnail{padding:0;border:none;border-radius:0;background-color:transparent}.thumbnail img{border:1px solid #e6e6e6}.thumbnail>img,.thumbnail a>img{margin-left:0;margin-right:0}.thumbnail.thumbnail_asset a{width:100%;margin-bottom:10px;display:block;float:left;position:relative;text-decoration:none}.asset_overlay{position:relative}.asset_title{display:block}.thumbnail.thumbnail_asset .overlay_container{padding:2px;margin:1px;background:#1a1a1a;background:#000000b3;bottom:0;font-size:12px;line-height:1;position:absolute;right:0}.thumbnail.thumbnail_asset.large .overlay_container{padding:6px 9px;font-size:20px}.thumbnail.thumbnail_asset:focus .overlay_container,.thumbnail.thumbnail_asset:hover .overlay_container{background:#5a5a5a}.thumbnail.thumbnail_asset .overlay_container.left{left:0;right:auto}.thumbnail.thumbnail_asset .overlay_container .video_length{padding-left:.2em;color:#fff!important;font-family:Arial,Helvetica,sans-serif;font-size:12px;line-height:1}.typeahead_container.dropdown-menu{margin-top:11px;border-radius:0 0 4px 4px}.typeahead_container{max-height:calc(100vh - 118px);overflow-y:auto}.typeahead_container dl{width:100%;margin-bottom:26px;float:left;position:relative}.typeahead_container dt{width:90px;float:left;color:#c05708;font-weight:700;position:absolute}.typeahead_container dd{width:calc(100% - 101px);max-height:270px;padding:0;margin:0 0 0 101px;float:left;overflow-y:auto}.typeahead_container dd ul.list-unstyled>li{margin-bottom:10px}.typeahead_container *{font-size:14px;line-height:1.25}.typeahead_container :last-child{margin-bottom:0!important}.typeahead_container a:not(.icon-chevron){padding-right:30px;color:#1a1a1a!important;display:block;text-decoration:none!important;transition:background-color .3s ease}.typeahead_container a:not(.icon-chevron):hover{background-color:#f5f5f5}.typeahead_container a:not(.icon-chevron):active{background-color:#e6e6e6}.typeahead_container a.icon-chevron{overflow:hidden;position:relative}.typeahead_container li.selected-suggestion,.typeahead_container li.selected-suggestion a{background-color:#f5f5f5}.typeahead_container li.suggestion{width:auto;padding:0;color:inherit;cursor:default;float:none;line-height:inherit}.typeahead_container .suggestion_summary{width:100%;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.typeahead_container .suggestion_highlight{color:#1a1a1a;font-weight:700}.typeahead_container .suggestion_product{color:gray;display:block}.typeahead_container dl.typeahead_suggestions dt{padding-top:5px}.typeahead_container dl.typeahead_suggestions dd ul.list-unstyled>li{margin-bottom:0}.typeahead_container dl.typeahead_suggestions a{padding-top:5px;padding-bottom:5px}.typeahead_container.typeahead_type_grouped{margin-left:-100px;padding:20px 0 20px 10px}.typeahead_container.typeahead_type_basic{padding:15px 0}.typeahead_container.typeahead_type_basic dl{float:none}.typeahead_container.typeahead_type_basic dt{display:none}.typeahead_container.typeahead_type_basic dd{width:100%;max-height:none;margin-left:0;float:none;overflow-y:visible}.typeahead_container.typeahead_type_basic a{padding-left:10px}@media(min-width:768px)and (max-width:991px){.typeahead_container dd ul.list-unstyled>li{margin-bottom:15px}.typeahead_container a:not(.icon-chevron){padding-right:20px}.typeahead_container dl.typeahead_suggestions dd ul.list-unstyled>li{margin-bottom:5px}}@media(max-width:767px){.typeahead_container dl{margin-bottom:20px;float:none}.typeahead_container dt{width:100%;margin-bottom:15px;float:none;position:relative}.typeahead_container dd{width:100%;margin-left:0;float:none}.typeahead_container dd ul.list-unstyled>li{margin-bottom:15px}.typeahead_container a:not(.icon-chevron){padding-right:26px}.typeahead_container dl.typeahead_suggestions dd ul.list-unstyled>li{margin-bottom:5px}.typeahead_container.typeahead_type_grouped{padding:8px 0;margin-left:0}.typeahead_container.typeahead_type_grouped dt{padding-left:11px}.typeahead_container.typeahead_type_grouped a:not(.icon-chevron){padding-left:11px}.typeahead_container.typeahead_type_grouped a.icon-chevron{margin-left:11px}.typeahead_container.typeahead_type_basic{padding:3px 0}}#suggestions.typeahead_v2{margin-top:11px;border:1px solid rgba(0,0,0,.15);border-radius:0 0 4px 4px;box-shadow:0 6px 12px #0000002d}#suggestions.typeahead_v2 .typeahead_container.typeahead_type_grouped{margin-left:0;overflow-x:hidden}@media(min-width:768px){#suggestions.typeahead_v2{margin-left:-100px}}@media(max-width:767px){#suggestions.typeahead_v2{width:calc(100% - 69px)!important;margin:0}}.video_count,.video_length{color:#6f6f6f}.well{border-radius:0}.header{background:#fff}.navbar{min-height:0;margin-bottom:0;border:none}.navbar-default{background-color:transparent}.navbar-collapse ul{margin-bottom:0}.navbar-collapse li{padding-left:0;margin-bottom:0;background:none;font-size:14px}.navbar-default #topnav{margin-top:11px}.navbar-default #topnav.navbar-nav>li>a{padding:5px 10px;color:#0076a8;display:block;text-decoration:none;white-space:nowrap}.navbar-default #topnav.navbar-nav>li>a,.navbar-default #topnav.navbar-nav>li>a:visited{color:#1a1a1a}.navbar-default #topnav.navbar-nav>li>a:hover{color:#0076a8}.navbar-default #topnav.navbar-nav>li.active>a,.navbar-default #topnav.navbar-nav>li.active>a:hover{border-radius:4px;background:#edf5f9;color:#1a1a1a}.navbar-header{float:none}.logo_container{margin-top:5px;margin-bottom:6px;float:left}.logo_container .mw_logo{width:173px;height:35px;margin:0 20px 0 -6px;float:left}.logo_container .mlc_logo{width:173px;height:23px;margin:0 20px 0 -6px;float:left}#header_desktop .logo_container.ptools_off{margin-top:18px}@media only screen and (min-width:992px){#headernav{padding-top:13px}#headernav>li{margin-left:12px}#headernav{min-width:220px;font-size:0;text-align:right}#headernav>li{display:inline-block;float:none}#headernav_collapse li.headernav_store{top:-7px}#headernav_collapse .navbar-nav>.open>a,#headernav_collapse .navbar-nav>.open>a:focus,#headernav_collapse .navbar-nav>.open>a:hover{background-color:transparent;color:#6f6f6f}#headernav_collapse li.headernav_store [class*=companion_btn].btn-xs{height:25px;padding-top:2px;padding-bottom:0}#headernav_collapse li.headernav_login .dropdown-menu{z-index:1037}#headernav_collapse li.headernav_contact a,#headernav_collapse li.headernav_login>a{width:24px;height:24px;padding:0;display:block;background:transparent no-repeat center center;background-size:cover;transition:background-image .3s ease}#headernav_collapse li.headernav_contact a{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2023.0.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2024%2024'%20style='enable-background:new%200%200%2024%2024;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:%23B3B3B4;}%20%3c/style%3e%3cpath%20class='st0'%20d='M17.9,24c-1.4,0-5.8-0.5-11.7-6.1C0.5,12.5,0,6.8,0,6.1c0-0.8,0.1-3.8,3.9-5.8C4.4,0,5.6-0.2,6,0.3%20c0.2,0.2,3.1,5.1,3.2,5.1c0.1,0.2,0.2,0.5,0.2,0.7c0,0.4-0.2,0.7-0.6,1.2c-0.3,0.3-0.7,0.7-1.1,1C7.3,8.5,7,8.7,6.7,9%20C6.4,9.3,6.4,9.4,6.4,9.4c0,0.1,0.2,1.8,3.4,4.7c3.3,2.9,4.7,3.5,4.7,3.5c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.4-0.3%20c0.1-0.1,0.4-0.5,0.7-0.9c0.5-0.6,0.8-1,1-1.2c0.7-0.7,1.3-0.7,1.8-0.4c0,0,5,2.9,5.2,3.1c0.1,0.1,0.5,0.5-0.2,2.3l0,0%20C22.2,23.6,19.2,24,17.9,24C17.9,24,17.9,24,17.9,24z%20M5.2,1C5,1,4.6,1.1,4.4,1.2C1.2,2.9,1,5.2,1,6.1c0,0.6,0.5,6,5.8,11.1%20c6,5.6,10.3,5.9,11.1,5.8c1.3,0,3.6-0.4,4.7-3c0.2-0.5,0.4-1.1,0.4-1.3c-0.7-0.4-4.6-2.7-4.8-2.8c-0.1,0-0.2-0.1-0.2-0.1%20c0,0-0.1,0-0.5,0.3c-0.1,0.1-0.5,0.6-0.9,1c-0.3,0.4-0.6,0.8-0.8,1c-0.6,0.6-1,0.7-1.6,0.5c-0.3-0.1-2-1.1-5-3.7%20c-3.4-3-3.8-4.9-3.8-5.5c0-0.4,0.2-0.7,0.6-1.1C6.3,8,6.7,7.7,7.1,7.4C7.4,7.1,7.7,6.9,8,6.6c0.3-0.3,0.3-0.5,0.3-0.5%20c0-0.1,0-0.2-0.1-0.2C8.2,5.6,5.8,1.7,5.3,1C5.3,1,5.3,1,5.2,1z'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2023.0.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2024%2024'%20style='enable-background:new%200%200%2024%2024;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:%236F6F6F;}%20%3c/style%3e%3cpath%20class='st0'%20d='M17.9,24c-1.4,0-5.8-0.5-11.7-6.1C0.5,12.5,0,6.8,0,6.1c0-0.8,0.1-3.8,3.9-5.8C4.4,0,5.6-0.2,6,0.3%20c0.2,0.2,3.1,5.1,3.2,5.1c0.1,0.2,0.2,0.5,0.2,0.7c0,0.4-0.2,0.7-0.6,1.2c-0.3,0.3-0.7,0.7-1.1,1C7.3,8.5,7,8.7,6.7,9%20C6.4,9.3,6.4,9.4,6.4,9.4c0,0.1,0.2,1.8,3.4,4.7c3.3,2.9,4.7,3.5,4.7,3.5c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.4-0.3%20c0.1-0.1,0.4-0.5,0.7-0.9c0.5-0.6,0.8-1,1-1.2c0.7-0.7,1.3-0.7,1.8-0.4c0,0,5,2.9,5.2,3.1c0.1,0.1,0.5,0.5-0.2,2.3l0,0%20C22.2,23.6,19.2,24,17.9,24C17.9,24,17.9,24,17.9,24z%20M5.2,1C5,1,4.6,1.1,4.4,1.2C1.2,2.9,1,5.2,1,6.1c0,0.6,0.5,6,5.8,11.1%20c6,5.6,10.3,5.9,11.1,5.8c1.3,0,3.6-0.4,4.7-3c0.2-0.5,0.4-1.1,0.4-1.3c-0.7-0.4-4.6-2.7-4.8-2.8c-0.1,0-0.2-0.1-0.2-0.1%20c0,0-0.1,0-0.5,0.3c-0.1,0.1-0.5,0.6-0.9,1c-0.3,0.4-0.6,0.8-0.8,1c-0.6,0.6-1,0.7-1.6,0.5c-0.3-0.1-2-1.1-5-3.7%20c-3.4-3-3.8-4.9-3.8-5.5c0-0.4,0.2-0.7,0.6-1.1C6.3,8,6.7,7.7,7.1,7.4C7.4,7.1,7.7,6.9,8,6.6c0.3-0.3,0.3-0.5,0.3-0.5%20c0-0.1,0-0.2-0.1-0.2C8.2,5.6,5.8,1.7,5.3,1C5.3,1,5.3,1,5.2,1z'/%3e%3c/svg%3e")}#headernav_collapse li.headernav_contact a:hover{background-image:url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2023.0.1,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2024%2024'%20style='enable-background:new%200%200%2024%2024;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:%236F6F6F;}%20%3c/style%3e%3cpath%20class='st0'%20d='M17.9,24c-1.4,0-5.8-0.5-11.7-6.1C0.5,12.5,0,6.8,0,6.1c0-0.8,0.1-3.8,3.9-5.8C4.4,0,5.6-0.2,6,0.3%20c0.2,0.2,3.1,5.1,3.2,5.1c0.1,0.2,0.2,0.5,0.2,0.7c0,0.4-0.2,0.7-0.6,1.2c-0.3,0.3-0.7,0.7-1.1,1C7.3,8.5,7,8.7,6.7,9%20C6.4,9.3,6.4,9.4,6.4,9.4c0,0.1,0.2,1.8,3.4,4.7c3.3,2.9,4.7,3.5,4.7,3.5c0.1,0,0.2,0,0.2,0c0,0,0.1,0,0.4-0.3%20c0.1-0.1,0.4-0.5,0.7-0.9c0.5-0.6,0.8-1,1-1.2c0.7-0.7,1.3-0.7,1.8-0.4c0,0,5,2.9,5.2,3.1c0.1,0.1,0.5,0.5-0.2,2.3l0,0%20C22.2,23.6,19.2,24,17.9,24C17.9,24,17.9,24,17.9,24z%20M5.2,1C5,1,4.6,1.1,4.4,1.2C1.2,2.9,1,5.2,1,6.1c0,0.6,0.5,6,5.8,11.1%20c6,5.6,10.3,5.9,11.1,5.8c1.3,0,3.6-0.4,4.7-3c0.2-0.5,0.4-1.1,0.4-1.3c-0.7-0.4-4.6-2.7-4.8-2.8c-0.1,0-0.2-0.1-0.2-0.1%20c0,0-0.1,0-0.5,0.3c-0.1,0.1-0.5,0.6-0.9,1c-0.3,0.4-0.6,0.8-0.8,1c-0.6,0.6-1,0.7-1.6,0.5c-0.3-0.1-2-1.1-5-3.7%20c-3.4-3-3.8-4.9-3.8-5.5c0-0.4,0.2-0.7,0.6-1.1C6.3,8,6.7,7.7,7.1,7.4C7.4,7.1,7.7,6.9,8,6.6c0.3-0.3,0.3-0.5,0.3-0.5%20c0-0.1,0-0.2-0.1-0.2C8.2,5.6,5.8,1.7,5.3,1C5.3,1,5.3,1,5.2,1z'/%3e%3c/svg%3e")}#headernav_collapse li.headernav_login>a{border-radius:50%;background-image:url(../media/ico-header-account.CJCFoo5a.svg),url(../media/ico-header-account-hover.-jQHo6Wx.svg)}#headernav_collapse li.headernav_login>a:hover{background-image:url(../media/ico-header-account-hover.-jQHo6Wx.svg)}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{background:transparent}#header_desktop li.headernav_matrix button{top:-5px}}.section_header{width:100%;height:52px;background:#0076a8 none!important;display:table;color:#fff}.section_header_content{width:100%;height:52px;padding:8px 0 11px;display:table-cell;vertical-align:bottom}.section_header_title{float:left}.section_header_title a:focus{outline-color:#fff}.section_header .form-control.conjoined_search:focus{outline:2px solid rgba(255,255,255,.65);outline-offset:3px}.section_header button:focus{outline-color:#fff}.section_header h1,.section_header p.h1{padding:0;margin-bottom:0;color:#fff;font: 400 28px/1 futura-pt-n4,futura-pt,Arial,Helvetica,sans-serif;letter-spacing:-.02em;float:left}.section_header form{padding-top:11px}.section_header .btn_search_adjacent{background:#0006;color:#fff}.section_header .btn_search_adjacent:active,.section_header .btn_search_adjacent:focus,.section_header .btn_search_adjacent:hover{color:#fff}.section_header .btn_search_adjacent.icon-search{padding-top:6px;padding-bottom:6px}.section_header .btn_search_adjacent.icon-arrow-down{padding-right:8px;padding-left:8px;border-left:1px solid #0076a8}.section_header .conjoined_search{height:30px;padding:3px 12px;border:none;border-radius:4px 0 0 4px!important}.section_header .input-group-btn:last-child>.btn{margin-left:0}.section_header .btn_search{padding-left:8px;padding-right:8px;border-radius:0}.section_header .btn_search_adjacent{border-radius:0 4px 4px 0;background-color:#0006;color:#fff}.section_header .dropdown-toggle{height:30px;margin-right:1px;padding-top:4px;padding-right:22px;padding-bottom:3px;border-radius:0;font-size:13px;line-height:1}.section_header .dropdown-toggle .caret{margin:6px -16px 0 0;float:right}.section_header .dropdown-menu{z-index:1045}.section_header .navbar-toggle{margin:0;padding-left:0;border:none;color:#fff;display:block;float:left}.section_header .navbar-toggle .icon-menu-reverse{padding-top:0;padding-bottom:0;margin-bottom:-1px}.section_header .search_scope_label{white-space:nowrap}.section_header input[type=search]::-webkit-search-cancel-button{-webkit-appearance:searchfield-cancel-button}@media only screen and (min-width:768px){.section_header .dropdown-toggle{white-space:nowrap}#mobile_search.collapse{height:auto!important;display:block}}.section_header [class*=filter] .input-group .form-control{height:30px;padding:2px;border:none;border-radius:4px 0 0 4px;box-shadow:inset 0 1px 1px #00000013}.section_header [class*=filter] .input-group .conjoined_search.form-control{height:26px;padding:3px 0 3px 12px;box-shadow:none}.section_header [class*=filter] .input-group .conjoined_search.form-control:focus{outline-offset:5px}.section_header .filterless .input-group .conjoined_search.form-control{width:100%}.section_header .filtered .input-group .conjoined_search.form-control{width:calc(100% - 102px);margin-left:2px}.section_header .filterless .input-group .nugget{display:none}.section_header .filtered .input-group .nugget{width:100px;margin-bottom:0;background:#f5f5f5;border-color:#b1b1b1;transition:border-color .3s ease}.section_header .filtered .input-group .nugget a{padding-top:2px;padding-bottom:2px;text-decoration:none!important}.section_header .filtered .input-group .nugget:hover{border-color:#6f6f6f}.section_header .filtered .nugget a.icon-remove:before{top:3px}.sticky_header_container.affix-bottom:not(.offcanvas_v2),.sticky_header_container.affix:not(.offcanvas_v2){width:100%;box-shadow:0 2px 2px #00000040;top:0;z-index:1035}@media(min-width:992px){.sticky_header_container.affix+.full_banner_container{padding-top:52px}.sticky_header_container.affix+.body_lead_container{padding-top:82px}.sticky_header_container.affix+.content_container,.sticky_header_container.affix+.content_container_no_conflict{padding-top:72px}.sticky_header_container.affix+.cta_container_mobile+.body_lead_container{padding-top:82px}.sticky_header_container.affix+.cta_container_mobile+.content_container,.sticky_header_container.affix+.cta_container_mobile+.content_container_no_conflict{padding-top:72px}.sticky_header_container.affix.includes_subnav+.full_banner_container{padding-top:96px}.sticky_header_container.affix.includes_subnav+.body_lead_container{padding-top:126px}.sticky_header_container.affix.includes_subnav+.content_container,.sticky_header_container.affix.includes_subnav+.content_container_no_conflict{padding-top:116px}.sticky_header_container.affix.includes_subnav+.cta_container_mobile+.body_lead_container{padding-top:126px}.sticky_header_container.affix.includes_subnav+.cta_container_mobile+.content_container,.sticky_header_container.affix.includes_subnav+.cta_container_mobile+.content_container_no_conflict{padding-top:116px}.sticky_header_container.affix+.content_container,.sticky_header_container.affix+.content_container_no_conflict{min-height:602px}.sticky_header_container.affix+.cta_container_mobile+.content_container,.sticky_header_container.affix+.cta_container_mobile+.content_container_no_conflict{min-height:602px}.sticky_header_container.affix.includes_subnav+.content_container,.sticky_header_container.affix.includes_subnav+.content_container_no_conflict{min-height:646px}.sticky_header_container.affix.includes_subnav+.cta_container_mobile+.content_container,.sticky_header_container.affix.includes_subnav+.cta_container_mobile+.content_container_no_conflict{min-height:646px}}.horizontal_nav_container{width:100%;height:44px;background:#fff;display:table}.horizontal_nav_container .navbar-nav{padding-top:12px;padding-left:5px;margin-left:-30px}.horizontal_nav_container .navbar-nav>li{padding:0 5px;font-size:13px;line-height:1}.horizontal_nav_container .navbar-nav>li+li{border-left:1px solid #e6e6e6}.horizontal_nav_container .navbar-nav>li>a{padding:0 5px;color:#1a1a1a;font-weight:400}.horizontal_nav_container .navbar-nav>li>a,.horizontal_nav_container .navbar-nav>li>a:visited{color:#0076a8}.horizontal_nav_container .navbar-nav>li:active>a,.horizontal_nav_container .navbar-nav>li>a:hover{background:transparent;color:#005487}.horizontal_nav_container .navbar-nav>.open>a,.horizontal_nav_container .navbar-nav>.open>a:focus,.horizontal_nav_container .navbar-nav>.open>a:hover{background:transparent;color:#005487}.horizontal_nav_container .navbar-nav>li.active>a,.horizontal_nav_container .navbar-nav>li.active>a:focus,.horizontal_nav_container .navbar-nav>li.active>a:hover{background:transparent;color:#1a1a1a}.horizontal_nav_container .caret{margin-left:5px}.horizontal_nav_container .cta_box{padding-top:14px}.full_banner_container{background:#fff}.full_banner .carousel-inner>.item{min-height:400px}.full_banner.small .carousel-inner>.item{min-height:250px}.full_banner .opacity_container{margin-left:-15px;margin-right:-15px}.cta_container_mobile{padding:20px 0;background:#fff}.body_lead_container{padding:30px 0 10px;background:#f5f5f5;border-bottom:1px solid #e6e6e6}.content_container,.content_container_no_conflict{min-height:550px;padding:20px 0 50px;border-bottom:1px solid #e6e6e6;background:#fff}#content_container:focus{outline:none}.body_lead_container+.content_container,.body_lead_container+.content_container_no_conflict{padding-top:40px}#search_result_footer .link_disabled,#search_result_header .link_disabled{cursor:default!important;pointer-events:none}#search_result_footer .link_disabled [class*=icon-],#search_result_header .link_disabled [class*=icon-]{opacity:.25}.search_result_table{margin-bottom:0}.search_result_table .search_title{margin-bottom:5px;font-weight:700}.search_result_table .additional_field{margin-bottom:5px}.search_result_table .new_indicator{padding-left:5px}.search_result_table .search_result_additional_left.thumb{width:20%}.search_result_table .search_result_additional_right.thumb{width:15%}.search_result_table .result_element_thumb.workaround{padding:0;margin:0 0 5px 50px;background:transparent url(data:image/gif;base64,R0lGODlhDAAYAPeTAHy2dPT19Onu6Xu2dH+5eHq1cnu1dHGtat3m3Zq6mn24daPDo4W+fXy3dH64dny3dajDp26qZ4G6eYG7eVKQTqC+n/b39vP18/b29s3fzczezJe4l364eIrCgYnBgaG/n5++n16bWHOncF+cW9Th04O8errQuJu6moC6earHqarEqWigY4S8fOzw616XWvP081SQUO3x7YrCgmyjanaxb3Wwbn+5duDo4FmWVH+4d2OYYVeUU3q1c63IrGqeZ4a+fqjFplyZV8rcyrjOuGypZsLUwXmked/o3urv6Xaidb3RvW2pZ3OubG+qaIS9fIjAf9Pg01WSUevv6leWU2ejYWShX8jYx4K8emCdW9De0PHz8MvbymGZX/X29d3n3bvSuVeSU1mTV3OtbIywioO8e8nayX+5d1+VXOvv66LBoWaiY4CwfGmmZp/En2+raKbDpJS6k3OvbICxfZG7kI64jbHJsNHe0HeycOjt55/An1iUU2GYXWmgZsbXxm2qaXirc364d422iXKta5y8m2KYX36nfmqcaGGXYMrZyZ69nV+WXZm5mKPBonGlcIyxiofAf9Hf0GqmZHu2c/f39wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAAJMALAAAAAAMABgAAAjvACcJzNDmgsCDBzX44TDHIMJJQth46DCAzouHCxo5eaQGjpeHkxagYDAjAMhJaRyU4GMSZB4AEkb0aAEyUQECNgRx2fJwUIQ7ChQ02FEGYRYQGxQ1eTAgDBKBXawkKCLAyJIBESpMsjAmyAEshdAc4lFAhwUoUySpDdHnxAFJFPAMoWJAkgEiEOpEgnsEQRRJAADgsJMgDgAYAiZBAFNFzyIpZx40MHTwhhIEApIwAeRGxUFEFRztqWHGAaEYBz/QIDBhAgEXkBAyykHmihgfJB6+kcBghQktIIGweCKi5cMUP2T8MY7wyxo5gTA8DAgAOw==) no-repeat 0 0}.search_result_table .result_element_thumb.workaround img{width:0;height:24px;margin:0;padding:0}.search_result_table .result_element_thumb.answer_frame{width:60px;padding:9px 0 4px;margin:0 auto 5px;border:1px solid #e6e6e6;color:#008013;font-size:1em;line-height:1.2;text-align:center}.search_result_table .result_element_thumb.answer_frame.accepted{border:1px solid #008013}.search_result_table .result_element_thumb.accepted{color:#008013}.search_result_table .search_url,.search_result_table .search_url a{color:#008013;text-decoration:none}.search_result_table .search_highlight em{font-weight:700;font-style:normal}@media only screen and (max-width:767px){.search_result_table .search_highlight{display:none}.search_result_table .search_result_additional_left.thumb,.search_result_table .search_result_additional_right.thumb{width:40%}}div.search_results_container{margin-bottom:30px}div.search_result{border-top:1px solid #b1b1b1;overflow:hidden}div.search_results_container div.search_result:last-child{border-bottom:1px solid #b1b1b1}div.search_result_content,div.search_result_supplemental_content{padding:8px;float:left;font-size:14px;line-height:1.35}div.search_result_content{width:calc(100% - 185px)}div.search_result_supplemental_content{width:185px}div.search_result_content p{margin-bottom:3px}div.search_result_content .search_result_title{font-weight:700}div.search_result_content .search_result_title .search_result_summary{font-weight:400}div.search_result_content .search_result_desc em{font-style:normal;font-weight:700}div.search_result_content .search_result_meta{margin-bottom:3px}div.search_result_content .search_result_breadcrumb{padding:0;margin-bottom:3px}div.search_result_content .search_result_breadcrumb>li{margin-bottom:2px;line-height:1.45}div.search_result_content .search_result_breadcrumb>li>a{color:#008013!important}div.search_result_content :last-child{margin-bottom:0}@media(min-width:768px)and (max-width:991px){div.search_result_content,div.search_result_supplemental_content{font-size:13px}}@media(max-width:767px){div.search_result_content{width:calc(100% - 120px)}div.search_result_supplemental_content{width:120px}div.search_result_content,div.search_result_supplemental_content{font-size:13px}div.search_result_content .breadcrumb{display:none}}div.search_result:not(.has_supplemental_content) div.search_result_content{width:100%}div.search_result:not(.has_supplemental_content) div.search_result_supplemental_content,div.search_result_supplemental_content:empty{display:none}#facets_area{margin-top:-9px;margin-left:-5px}.search_refine{margin:0 0 18px;color:#1a1a1a;font-size:12px}.search_refine h3{padding:7px 5px 6px;margin:0;border-bottom:1px solid #e6e6e6;color:#1a1a1a;font:700 14px/1 Arial,Helvetica,sans-serif}.search_refine ul{margin-bottom:0}.search_refine ul>li{padding-left:0;margin-bottom:1px;line-height:1.25}.search_refine ul>li>ul{margin-top:1px}.search_refine a{padding:7px 5px 5px;color:gray;display:block}.search_refine a:hover{background:#f5f5f5;color:#1a1a1a;text-decoration:none}.search_refine a:active,.search_refine a:focus{text-decoration:none}.search_refine .facet_title{padding:7px 5px 5px;color:gray;display:block}.search_refine ul li li{padding-left:10px}.search_refine .refine_category_count,.search_refine .refine_product_count,.search_refine .refine_type_count{margin:0 0 5px 7px;display:block;float:right}.search_refine li.refined{position:relative}.search_refine li.refined>a{padding-right:30px;background:#f5f5f5;color:#1a1a1a}.search_refine li.refined>a:after{margin-top:-3px;color:gray;content:"";display:inline-block;font-family:mathworks;font-size:16px;font-style:normal;font-variant:normal;font-weight:400;opacity:.9;position:absolute;right:5px;speak:none;text-transform:none}.search_refine_scroll{max-height:200px;overflow-x:hidden;overflow-y:auto}.search_refine_v2 #facets_area{margin-top:0;margin-left:0}.search_refine_v2 .search_refine{color:#6f6f6f}.search_refine_v2 .search_refine h2{color:#b1b1b1;font-family:Arial,Helvetica Neue,Helvetica,sans-serif;font-size:14px;font-weight:700;text-transform:uppercase}.search_refine_v2 .search_refine h3{padding-right:36px;padding-bottom:4px;padding-left:0;margin-bottom:2px;position:relative}.search_refine_v2 .search_refine h3 .remove_category_facets{color:gray;font-weight:400;float:right;position:absolute;right:0;bottom:5px}.search_refine_v2 .search_refine h3 .remove_category_facets a{padding:0!important;background:transparent!important;color:gray!important;font-size:13px;text-decoration:none!important}.search_refine_v2 .search_refine h3 .remove_category_facets a:hover{color:#00a9e0!important}.search_refine_v2 .search_refine ul>li>a{padding:4px 5px 4px 20px!important}.search_refine_v2 .search_refine ul>li>ul{padding-top:0!important;margin-top:0!important}.search_refine_v2 .search_refine ul>li>ul>li{padding-left:20px}.search_refine_v2 .search_refine li.refinable_heading>a{color:#1a1a1a;font-weight:700}.search_refine_v2 .search_refine li.refinable_heading.refined>ul>li>a{color:#1a1a1a}.search_refine_v2 .search_refine li.refined>a{padding-right:5px;background:transparent;color:#00a9e0;position:relative}.search_refine_v2 .search_refine li.refined>a:after{margin-top:auto;content:none}.search_refine_v2 .search_refine li.refined>a:before{margin-top:-3px;color:#00a9e0;content:"";display:inline-block;font-family:mathworks;font-size:16px;font-style:normal;font-variant:normal;font-weight:400;opacity:.9;position:absolute;left:0;text-transform:none}.search_refine_v2 .search_refine li.refined>a:hover{background:#f5f5f5}.search_refine_v2 .search_refine li.refined>a:hover:before{content:""}@media only screen and (max-width:991px){.search_refine_v2 #facets_area{padding:20px}}.search_refine_v3 #facets_area{margin-top:0;margin-left:0}.search_refine_v3 .search_refine h2{color:#b1b1b1;font-family:Arial,Helvetica Neue,Helvetica,sans-serif;font-size:14px;font-weight:700;text-transform:uppercase}.search_refine_v3 .search_refine h3{padding-right:36px;padding-bottom:4px;padding-left:0;margin-bottom:2px;position:relative}.search_refine_v3 .search_refine h3 .remove_category_facets{color:gray;font-weight:400;float:right;position:absolute;right:0;bottom:5px}.search_refine_v3 .search_refine h3 .remove_category_facets a{padding:0!important;background:transparent!important;color:gray!important;font-size:13px;text-decoration:none!important}.search_refine_v3 .search_refine h3 .remove_category_facets a:hover{color:#00a9e0!important}.search_refine_v3 .search_refine ul>li>a{padding:4px 5px 4px 20px!important;position:relative}.search_refine_v3 .search_refine ul>li>ul{padding-top:0!important;margin-top:0!important}.search_refine_v3 .search_refine ul>li>ul>li{padding-left:20px}.search_refine_v3 .search_refine li.refinable_heading>a{color:#1a1a1a;font-weight:700}.search_refine_v3 .search_refine li.refinable_heading.refinable>a:hover+ul>li.refinable>a:before{margin-top:-3px;color:#6f6f6f;content:"";display:inline-block;font-family:mathworks;font-size:16px;font-style:normal;font-variant:normal;font-weight:400;opacity:.9;position:absolute;left:0;text-transform:none}.search_refine_v3 .search_refine li.refinable_heading.refined>a:hover+ul>li.refined>a:before{margin-top:-3px;color:#00a9e0;content:"";display:inline-block;font-family:mathworks;font-size:16px;font-style:normal;font-variant:normal;font-weight:400;opacity:.9;position:absolute;left:0;text-transform:none}.search_refine_v3 .search_refine li.refinable>a:hover:before{margin-top:-3px;color:#6f6f6f;content:"";display:inline-block;font-family:mathworks;font-size:16px;font-style:normal;font-variant:normal;font-weight:400;opacity:.9;position:absolute;left:0;text-transform:none}.search_refine_v3 .search_refine li.refined>a{padding-right:5px;background:transparent;color:#00a9e0}.search_refine_v3 .search_refine li.refined>a:after{margin-top:auto;content:none}.search_refine_v3 .search_refine li.refined>a:before{margin-top:-3px;color:#00a9e0;content:"";display:inline-block;font-family:mathworks;font-size:16px;font-style:normal;font-variant:normal;font-weight:400;opacity:.9;position:absolute;left:0;text-transform:none}.search_refine_v3 .search_refine li.refined>a:hover{background:#f5f5f5}.search_refine_v3 .search_refine li.refined>a:hover:before{content:""}@media only screen and (max-width:991px){.search_refine_v3 #facets_area{padding:20px}}.search_refine_v3 .search_refine a{color:#6f6f6f}.search_refine_v3 .search_refine h3 .remove_category_facets a{color:#6f6f6f!important}.search_refine_v3 .search_refine li.refinable_heading>a{color:#1a1a1a!important}.search_refine_v3 .search_refine li.refinable_heading>a:before{color:#1a1a1a!important}.search_refine_v3 .search_refine li.refinable_heading.refinable>a:hover+ul>li.refinable>a:before{color:#6f6f6f}.search_refine_v3 .search_refine li.refinable_heading.refined>a:hover+ul>li.refined>a:before{color:#6f6f6f}.search_refine_v3 .search_refine li.refinable>a:hover:before{color:#6f6f6f}.search_refine_v3 .search_refine li.refined>a{color:#6f6f6f;background-color:#f5f5f5}.search_refine_v3 .search_refine li.refined>a:before{color:#6f6f6f}.search_refine_v3 .search_refine ul>li{margin-bottom:0;margin-top:1px}.search_refine_v3 .search_refine ul>li{margin-top:0;border-top:1px solid #fff}.search_refine_v3 .search_refine li.refined{background-color:#f5f5f5}.search_refine_v3 .search_refine li.refinable{background-color:#fff}.search_refine_v3 .search_refine ul>li>ul>li{padding-left:0}.search_refine_v3 .search_refine ul>li>ul>li>a{margin-left:20px}.search_refine_v3 .search_refine ul>li>ul>li>ul>li>a{margin-left:40px}.search_refine_v3 .search_refine ul>li>ul>li>ul>li>ul>li>a{margin-left:60px}.body_trail_container{padding:30px 0;background:#f5f5f5}footer{padding:10px 0 0;background:#e6e6e6;color:#1a1a1a;font-size:13px;line-height:1.4}footer a,footer a:focus,footer a:hover,footer a:visited{color:#1a1a1a}footer .ff_section_title,footer .h4,footer h4,footer h4 a,footer h4 a:hover,footer h4 a:visited,footer h5,footer h5 a,footer h5 a:hover,footer h5 a:visited,footer h6,footer h6 a,footer h6 a:hover,footer h6 a:visited{color:#1a1a1a}footer .ff_section_title,footer h5{padding-bottom:3px;margin-bottom:10px;border-bottom:1px solid #1a1a1a;font-family:Arial,Helvetica,sans-serif;font-size:13px;font-weight:700;line-height:1.19}.fat_footer_container{padding:20px 0}.footer{min-height:100px;padding:18px 0;overflow:hidden}.footer p{margin-bottom:12px}.countrynav{margin-bottom:20px;float:left}.countrynav li{padding-left:0;margin-bottom:0;font-size:15px;float:left}.countrynav li.footernav_country [class*=icon-]{margin-right:6px}.countrynav li.footernav_country a{padding:7px 14px 7px 10px;border:1px solid #808080;border-radius:18px;color:#1a1a1a;display:block;text-decoration:none}.countrynav li.footernav_country a .icon_color_quinary:before{color:#1a1a1a!important}.countrynav li.footernav_country a:hover{box-shadow:inset 0 0 0 200px #ffffff1a}.footernav{margin-bottom:5px;overflow:hidden}.footernav li{padding-left:0;margin-bottom:0;float:left}.footernav li+li{border-left:1px solid #808080}.footernav a{padding:0 8px;display:block}.footernav li:first-child a{padding-left:0}.footernav li:last-child a{padding-right:0}.kr_footernav{margin-bottom:5px}.kr_footernav li{padding:0 8px}.kr_footernav li:first-child{padding-left:0}.footer .social_media{font-size:11px;line-height:1.09;text-align:right}.footer .social_media_icons{margin-bottom:5px;float:right}.footer .social_media_icons li{padding-left:0;margin-bottom:0;background:none;float:left}.footer .social_media_icons li+li{margin:0 0 0 8px}.footer .social_media_icons [class*=ico_]{width:16px;height:16px}.footer .social_media_icons .ico_sm{width:16px;height:16px;background-image:url(../media/ico-sprite.DXGLgzq9.png);display:block}.ico_sm.ico_google{background-position:0 0}.ico_sm.ico_facebook{background-position:0 -16px}.ico_sm.ico_linkedin{background-position:0 -32px}.ico_sm.ico_rss{background-position:0 -48px}.ico_sm.ico_twitter{background-position:0 -64px}.ico_sm.ico_weibo{background-position:0 -80px}iframe[name=google_conversion_frame]{width:0!important;height:0!important;float:left;visibility:hidden}.add_background_cover{background-size:cover!important}.add_border{border:1px solid #e6e6e6}.add_border_top{border-top:1px solid #e6e6e6}.add_border_bottom{border-bottom:1px solid #e6e6e6}.add_border_radius_0{border-radius:0!important}.add_border_radius_5{border-radius:5px}.add_border_radius_10{border-radius:10px}.add_border_radius_15{border-radius:15px}.add_border_radius_20{border-radius:20px}.add_border_radius_25{border-radius:25px}.add_border_radius_50{border-radius:50%}.add_browser_height_match_50{min-height:50vh}.add_browser_height_match_75{min-height:75vh}.add_browser_height_match_100{min-height:100vh}.add_clear_right{clear:right}.add_clear_left{clear:left}.add_clear_both{clear:both}.add_border_left,.add_border_right{position:relative}.add_border_left:before,.add_border_right:after{width:0;height:auto;border-right:1px solid #e6e6e6;bottom:20px;content:"";position:absolute;top:0}.add_border_left:before{left:0}.add_border_right:after{right:0}.body_trail_container .add_border_left:before,.body_trail_container .add_border_right:after{border-right-color:#e6e6e6}#footer .add_border_left:before,#footer .add_border_right:after{border-right-color:#6f6f6f}.add_cursor_pointer{cursor:pointer}.add_disabled,.add_disabled:active,.add_disabled:focus,.add_disabled:hover,.add_disabled:visited{box-shadow:none;cursor:not-allowed;pointer-events:all!important;opacity:.35;text-decoration:none}.add_display_block{display:block!important}.add_display_inline{display:inline!important}.add_display_inlineblock{display:inline-block!important}.add_display_none{display:none}@media(min-width:768px){.add_display_table{width:100%;display:table;float:none}.add_display_table_cell{display:table-cell;float:none}}@media only screen and (min-width:768px){.add_equal_heights,.add_equal_heights>div[class*=col-]{display:flex;flex:1 1 auto}.add_equal_heights{flex:0;flex-direction:row;flex-wrap:wrap}.add_equal_heights>div[class*=col-] .row{min-width:100%}.add_equal_heights>div[class*=col-]>.panel{width:100%}.row.add_equal_heights:before{font:0/0 a;content:normal}.add_equal_heights .col-xs-1{max-width:8.33333333%}.add_equal_heights .col-xs-2{max-width:16.66666667%}.add_equal_heights .col-xs-3{max-width:25%}.add_equal_heights .col-xs-4{max-width:33.33333333%}.add_equal_heights .col-xs-5{max-width:41.66666667%}.add_equal_heights .col-xs-6{max-width:50%}.add_equal_heights .col-xs-7{max-width:58.33333333%}.add_equal_heights .col-xs-8{max-width:66.66666667%}.add_equal_heights .col-xs-9{max-width:75%}.add_equal_heights .col-xs-10{max-width:83.33333333%}.add_equal_heights .col-xs-11{max-width:91.66666667%}.add_equal_heights .col-xs-12{max-width:100%}.add_equal_heights .col-sm-1{max-width:8.33333333%}.add_equal_heights .col-sm-2{max-width:16.66666667%}.add_equal_heights .col-sm-3{max-width:25%}.add_equal_heights .col-sm-4{max-width:33.33333333%}.add_equal_heights .col-sm-5{max-width:41.66666667%}.add_equal_heights .col-sm-6{max-width:50%}.add_equal_heights .col-sm-7{max-width:58.33333333%}.add_equal_heights .col-sm-8{max-width:66.66666667%}.add_equal_heights .col-sm-9{max-width:75%}.add_equal_heights .col-sm-10{max-width:83.33333333%}.add_equal_heights .col-sm-11{max-width:91.66666667%}.add_equal_heights .col-sm-12{max-width:100%}}@media(min-width:992px){.add_equal_heights .col-md-1{max-width:8.33333333%}.add_equal_heights .col-md-2{max-width:16.66666667%}.add_equal_heights .col-md-3{max-width:25%}.add_equal_heights .col-md-4{max-width:33.33333333%}.add_equal_heights .col-md-5{max-width:41.66666667%}.add_equal_heights .col-md-6{max-width:50%}.add_equal_heights .col-md-7{max-width:58.33333333%}.add_equal_heights .col-md-8{max-width:66.66666667%}.add_equal_heights .col-md-9{max-width:75%}.add_equal_heights .col-md-10{max-width:83.33333333%}.add_equal_heights .col-md-11{max-width:91.66666667%}.add_equal_heights .col-md-12{max-width:100%}}@media(min-width:1200px){.add_equal_heights .col-lg-1{max-width:8.33333333%}.add_equal_heights .col-lg-2{max-width:16.66666667%}.add_equal_heights .col-lg-3{max-width:25%}.add_equal_heights .col-lg-4{max-width:33.33333333%}.add_equal_heights .col-lg-5{max-width:41.66666667%}.add_equal_heights .col-lg-6{max-width:50%}.add_equal_heights .col-lg-7{max-width:58.33333333%}.add_equal_heights .col-lg-8{max-width:66.66666667%}.add_equal_heights .col-lg-9{max-width:75%}.add_equal_heights .col-lg-10{max-width:83.33333333%}.add_equal_heights .col-lg-11{max-width:91.66666667%}.add_equal_heights .col-lg-12{max-width:100%}}.add_font_color_null{color:#fff!important}.add_font_color_general{color:#6f6f6f!important}.add_font_color_primary{color:#1a1a1a!important}.add_font_color_secondary{color:#005487!important}.add_font_color_tertiary{color:#008013!important}.add_font_color_quaternary{color:#f2a900!important}.add_font_color_quinary{color:#00a9e0!important}.add_font_color_senary{color:#b7312c!important}.add_font_color_septenary,.add_font_color_emphasize{color:#c05708!important}a.add_font_color_primary:hover{color:#005487!important;text-decoration:none}[class*=add_font_]{-moz-font-feature-settings:"kern";-webkit-font-feature-settings:"kern";font-feature-settings:"kern"}.add_font_arial{font-family:Arial,Helvetica,sans-serif!important}span.add_font_arial{padding-left:2px;display:inline-block;font-size:90%}.add_font_automate{font-family:automate,sans-serif!important;font-style:normal!important;font-weight:700!important;text-transform:uppercase!important}.add_font_futura_book{font-family:futura-pt-n4,futura-pt,Arial,Helvetica,sans-serif!important;font-style:normal!important;font-weight:400!important}.add_font_futura_book em{font-family:futura-pt-i4,futura-pt,Arial,Helvetica,sans-serif!important;font-style:italic!important;font-weight:400!important}.add_font_futura_book strong,.add_font_futura_medium{font-family:futura-pt-n5,futura-pt,Arial,Helvetica,sans-serif!important;font-style:normal!important;font-weight:500!important}.add_font_futura_book em strong,.add_font_futura_book strong em,.add_font_futura_medium em{font-family:futura-pt-i5,futura-pt,Arial,Helvetica,sans-serif!important;font-style:italic!important;font-weight:500!important}.add_font_futura_medium strong{font-family:futura-pt-n7,futura-pt,Arial,Helvetica,sans-serif!important;font-style:normal!important;font-weight:700!important}.add_font_futura_medium em strong,.add_font_futura_medium strong em{font-family:futura-pt-i7,futura-pt,Arial,Helvetica,sans-serif!important;font-style:italic!important;font-weight:700!important}.add_font_minion_pro,.add_font_product_wordmark{font-family:minion-pro-subhead-n4,minion-pro-subhead,serif!important;font-style:normal!important;font-weight:400!important}.add_font_product_wordmark{font-size:36px!important;font-variant:small-caps;line-height:.83!important}.add_font_product_wordmark:first-letter{font-size:41px}.add_font_monospace{font-family:Menlo,Monaco,Consolas,Courier New,monospace!important}.add_font_museo{font-family:museo-slab-n7,museo-slab,serif!important;font-style:normal!important;font-weight:700!important}.add_indent_5{margin-left:5px!important}.add_indent_10{margin-left:10px!important}.add_indent_15{margin-left:15px!important}.add_indent_20{margin-left:20px!important}.add_indent_25{margin-left:25px!important}.add_indent_30{margin-left:30px!important}.add_list_spacing_3 li{margin-bottom:3px!important}.add_list_spacing_5 li{margin-bottom:5px!important}.add_list_spacing_7 li{margin-bottom:7px!important}.add_list_spacing_10 li{margin-bottom:10px!important}.add_list_spacing_12 li{margin-bottom:12px!important}.add_list_spacing_15 li{margin-bottom:15px!important}.add_list_spacing_3 li>ul{padding-top:3px}.add_list_spacing_5 li>ul{padding-top:5px}.add_list_spacing_7 li>ul{padding-top:7px}.add_list_spacing_10 li>ul{padding-top:10px}.add_list_spacing_12 li>ul{padding-top:12px}.add_list_spacing_15 li>ul{padding-top:15px}.add_spacing_3 li{margin-bottom:3px}.add_spacing_5 li{margin-bottom:5px}.add_spacing_7 li{margin-bottom:7px}.add_spacing_10 li{margin-bottom:10px}.add_spacing_12 li{margin-bottom:12px}.add_spacing_15 li{margin-bottom:15px}.add_spacing_3 li>ul{padding-top:3px}.add_spacing_5 li>ul{padding-top:5px}.add_spacing_7 li>ul{padding-top:7px}.add_spacing_10 li>ul{padding-top:10px}.add_spacing_12 li>ul{padding-top:12px}.add_spacing_15 li>ul{padding-top:15px}li.add_list_separator_right{padding-right:10px;border-right:1px solid #e6e6e6}li.add_list_separator_left{padding-left:10px;border-left:1px solid #e6e6e6}.add_margin_0{margin-bottom:0!important}.add_margin_5{margin-bottom:5px!important}.add_margin_10{margin-bottom:10px!important}.add_margin_15{margin-bottom:15px!important}.add_margin_20{margin-bottom:20px!important}.add_margin_25{margin-bottom:25px!important}.add_margin_30{margin-bottom:30px!important}.add_margin_35{margin-bottom:35px!important}.add_margin_40{margin-bottom:40px!important}.add_margin_45{margin-bottom:45px!important}.add_margin_50{margin-bottom:50px!important}.add_margin_60{margin-bottom:60px!important}.add_margin_70{margin-bottom:70px!important}.add_margin_80{margin-bottom:80px!important}.add_margin_90{margin-bottom:90px!important}.add_margin_100{margin-bottom:100px!important}.add_min_height_100{min-height:100px!important}.add_min_height_150{min-height:150px!important}.add_min_height_175{min-height:175px!important}.add_min_height_200{min-height:200px!important}.add_min_height_250{min-height:250px!important}.add_min_height_350{min-height:350px!important}.add_min_height_450{min-height:450px!important}.add_display_table.add_min_height_100,.add_display_table_cell.add_min_height_100{height:100px!important}.add_display_table.add_min_height_150,.add_display_table_cell.add_min_height_150{height:150px!important}.add_display_table.add_min_height_175,.add_display_table_cell.add_min_height_175{height:175px!important}.add_display_table.add_min_height_200,.add_display_table_cell.add_min_height_200{height:200px!important}.add_display_table.add_min_height_250,.add_display_table_cell.add_min_height_250{height:250px!important}.add_display_table.add_min_height_350,.add_display_table_cell.add_min_height_350{height:350px!important}.add_display_table.add_min_height_450,.add_display_table_cell.add_min_height_450{height:450px!important}.add_opacity_25{opacity:.25}.add_opacity_50{opacity:.5}.add_opacity_75{opacity:.75}.add_padding_0{padding:0!important}.add_padding_5{padding:5px!important}.add_padding_10{padding:10px!important}.add_padding_15{padding:15px!important}.add_padding_20{padding:20px!important}.add_padding_30{padding:30px!important}.add_padding_40{padding:40px!important}.add_padding_60{padding:60px!important}.add_padding_80{padding:80px!important}.add_padding_100{padding:100px!important}.table.add_padding_0 td{padding:0!important}.table.add_padding_5 td{padding:5px!important}.table.add_padding_10 td{padding:10px!important}.table.add_padding_15 td{padding:15px!important}.table.add_padding_20 td{padding:20px!important}.add_padding_top_0{padding-top:0!important}.add_padding_top_5{padding-top:5px!important}.add_padding_top_10{padding-top:10px!important}.add_padding_top_15{padding-top:15px!important}.add_padding_top_20{padding-top:20px!important}.add_padding_top_30{padding-top:30px!important}.add_padding_top_40{padding-top:40px!important}.add_padding_top_60{padding-top:60px!important}.add_padding_top_80{padding-top:80px!important}.add_padding_top_100{padding-top:100px!important}.add_padding_bottom_0{padding-bottom:0!important}.add_padding_bottom_5{padding-bottom:5px!important}.add_padding_bottom_10{padding-bottom:10px!important}.add_padding_bottom_15{padding-bottom:15px!important}.add_padding_bottom_20{padding-bottom:20px!important}.add_padding_bottom_30{padding-bottom:30px!important}.add_padding_bottom_40{padding-bottom:40px!important}.add_padding_bottom_60{padding-bottom:60px!important}.add_padding_bottom_80{padding-bottom:80px!important}.add_padding_bottom_100{padding-bottom:100px!important}.band[class*=add_padding_]{padding-right:0!important;padding-left:0!important}.add_bottom_rule{padding-bottom:2px;border-bottom:1px solid #e6e6e6}.add_center_rule{padding:0;background:#fff;text-align:center;position:relative;z-index:1}.add_center_rule:before{width:100%;content:"";border-bottom:1px solid #e6e6e6;display:block;position:absolute;top:50%;z-index:-1}.add_center_rule span{padding:0 60px;background:linear-gradient(to right,#fff0,#fff 10%,#fff 90%,#fff0);display:inline-block}.add_text_wrapping{word-wrap:break-word}@media(min-width:768px){.add_vertical_align_top{vertical-align:top!important}.add_vertical_align_middle{vertical-align:middle!important}.add_vertical_align_bottom{vertical-align:bottom!important}}.remove_background_image{background-image:none!important}.remove_background_image:before{background:transparent!important}.remove_border{border:none!important}.remove_border_top{border-top:none!important}.remove_border_bottom{border-bottom:none!important}tr.remove_border td{border:none!important}tr.remove_border_top td{border-top:none!important}tr.remove_border_bottom td{border-bottom:none!important}.remove_bold{font-weight:400!important}.h4.remove_bold,.h5.remove_bold,h4 .remove_bold,h4.remove_bold,h5 .remove_bold,h5.remove_bold{font-family:futura-pt-n4,futura-pt,Arial,Helvetica,sans-serif!important;font-weight:400!important}.no-gutters{margin-right:0;margin-left:0}.no-gutters>[class*=col-]{padding-right:0;padding-left:0}.remove_cursor_pointer{cursor:default!important}.remove_margin_0{margin-top:0!important}.remove_margin_5{margin-top:-5px!important}.remove_margin_10{margin-top:-10px!important}.remove_margin_15{margin-top:-15px!important}.remove_margin_20{margin-top:-20px!important}.remove_margin_25{margin-top:-25px!important}.remove_margin_30{margin-top:-30px!important}.remove_margin_35{margin-top:-35px!important}.remove_margin_40{margin-top:-40px!important}.remove_margin_45{margin-top:-45px!important}.remove_margin_50{margin-top:-50px!important}.remove_margin_60{margin-top:-60px!important}.remove_margin_70{margin-top:-70px!important}.remove_margin_80{margin-top:-80px!important}.remove_margin_90{margin-top:-90px!important}.remove_margin_100{margin-top:-100px!important}.remove_padding{padding:0!important}.remove_text_wrapping{white-space:nowrap}a[class*=icon-]:not(.glyphicon):before,h1[class*=icon-]:not(.glyphicon):before,h2[class*=icon-]:not(.glyphicon):before,h3[class*=icon-]:not(.glyphicon):before,h4[class*=icon-]:not(.glyphicon):before,h5[class*=icon-]:not(.glyphicon):before,h6[class*=icon-]:not(.glyphicon):before,p[class*=icon-]:not(.glyphicon):before,td[class*=icon-]:not(.glyphicon):before,ul.list-unstyled>li[class*=icon-]:before{margin-left:-1.65em;display:inline-block;font-family:mathworks;font-size:106.5%;font-style:normal;font-variant:normal;font-weight:400;line-height:1.4;opacity:.95;position:absolute;speak:none;text-decoration:none!important;text-transform:none}a[class*=icon-]:before{text-decoration:underline}a[class*=icon-]:before,a[class*=icon-]:hover:before{text-decoration:none}a[class*=icon-mw-]:before,h1[class*=icon-mw-]:before,h2[class*=icon-mw-]:before,h3[class*=icon-mw-]:before,h4[class*=icon-mw-]:before,h5[class*=icon-mw-]:before,h6[class*=icon-mw-]:before,p[class*=icon-mw-]:before,td[class*=icon-mw-]:before,ul.list-unstyled>li[class*=icon-mw-]:before{font-family:mathworks-eps!important}a[class*=icon-],h1[class*=icon-],h2[class*=icon-],h3[class*=icon-],h4[class*=icon-],h5[class*=icon-],h6[class*=icon-],p[class*=icon-],td[class*=icon-],ul.list-unstyled>li[class*=icon-]{padding-left:1.8em}a[class*=icon-]{display:block}.text-center a[class*=icon-]{display:inline-block}button[class*=icon-],span[class*=icon-]:not(.glyphicon){border:1px solid transparent;display:inline-block;font-family:mathworks;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-variant:normal;font-weight:400;text-transform:none;speak:none}_::-webkit-:not(:root:root),span[class*=icon-]:not(.glyphicon){vertical-align:middle}:root span[class*=icon-]:not(.glyphicon),_::-webkit-full-page-media,_:future{vertical-align:middle}.btn>span[class*=icon-]{border:none;font-size:100%;line-height:0}button[class*=icon-mw-],span[class*=icon-mw-]{font-family:mathworks-eps!important}.icon_16{font-size:16px;line-height:1}.icon_24{font-size:24px;line-height:1}.icon_32{font-size:32px;line-height:1}.icon_48{font-size:48px;line-height:1}.icon_56{font-size:56px;line-height:1}.icon_64{font-size:64px;line-height:1}.glyphicon.glyphicon-ok,.glyphicon.glyphicon-remove{border:1px transparent solid;display:inline-block;font-family:mathworks;font-style:normal;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-variant:normal;font-weight:400;text-transform:none;speak:none}.icon-account:before{content:""!important}.icon-activation:before{content:""!important}.icon-add:before{content:""!important}.icon-add-circle:before{content:""!important}.icon-add-circle-reverse:before{content:""!important}.icon-add-to-list:before{content:""!important}.icon-added-to-list:before{content:""!important}.icon-addons:before{content:""!important}.icon-alert-error:before{content:""!important}.icon-alert-info-reverse:before{content:""!important}.icon-alert-success:before{content:""!important}.icon-alert-warning:before{content:""!important}.icon-answers:before{content:""!important}.icon-app:before{content:""!important}.icon-arrow-boxed-down:before{content:""!important}.icon-arrow-boxed-left:before{content:""!important}.icon-arrow-boxed-right:before{content:""!important}.icon-arrow-boxed-up:before{content:""!important}.icon-arrow-down:before{content:""!important}.icon-arrow-left:before{content:""!important}.icon-arrow-open-down:before{content:""!important}.icon-arrow-open-down-reverse:before{content:""!important}.icon-arrow-open-left:before{content:""!important}.icon-arrow-open-left-reverse:before{content:""!important}.icon-arrow-open-right:before{content:""!important}.icon-arrow-open-right-reverse:before{content:""!important}.icon-arrow-open-up:before{content:""!important}.icon-arrow-open-up-reverse:before{content:""!important}.icon-arrow-point-left:before{content:""!important}.icon-arrow-point-right:before{content:""!important}.icon-arrow-right:before{content:""!important}.icon-arrow-up:before{content:""!important}.icon-attachment:before{content:""!important}.icon-block:before{content:""!important}.icon-blogs:before{content:""!important}.icon-bug-report:before{content:""!important}.icon-bookmark:before{content:""!important}.icon-bookmarked:before{content:""!important}.icon-calendar:before{content:""!important}.icon-cc-amex:before{content:""!important}.icon-cc-mastercard:before{content:""!important}.icon-cc-visa:before{content:""!important}.icon-certification:before{content:""!important}.icon-chat:before{content:""!important}.icon-check:before{content:""!important}.icon-check-small:before{content:""!important}.icon-checkbox-checked:before{content:""!important}.icon-checkbox-unchecked:before{content:""!important}.icon-chevron:before{content:""!important}.icon-cloud:before{content:""!important}.icon-code:before{content:""!important}.icon-cody:before{content:""!important}.icon-cog:before{content:""!important}.icon-community:before{content:""!important}.icon-contactus:before{content:""!important}.icon-corporation:before{content:""!important}.icon-data:before{content:""!important}.icon-data-view:before{content:""!important}.icon-database:before{content:""!important}.icon-database-multiple:before{content:""!important}.icon-document:before{content:""!important}.icon-documentation:before{content:""!important}.icon-download:before{content:""!important}.icon-ebook:before{content:""!important}.icon-edit:before{content:""!important}.icon-email:before{content:""!important}.icon-examples:before{content:""!important}.icon-features:before{content:""!important}.icon-feedback:before{content:""!important}.icon-file-excel:before{content:""!important}.icon-fileexchange:before{content:""!important}.icon-file-pdf:before{content:""!important}.icon-file-zip:before{content:""!important}.icon-filter:before{content:""!important}.icon-format-bold:before{content:""!important}.icon-format-bullet-list:before{content:""!important}.icon-format-code:before{content:""!important}.icon-format-header:before{content:""!important}.icon-format-image:before{content:""!important}.icon-format-italic:before{content:""!important}.icon-format-monospace:before{content:""!important}.icon-format-number-list:before{content:""!important}.icon-format-underline:before{content:""!important}.icon-function:before{content:""!important}.icon-globe:before{content:""!important}.icon-guaranteed:before{content:""!important}.icon-hardware:before{content:""!important}.icon-headset:before{content:""!important}.icon-help:before{content:""!important}.icon-help-circle:before{content:""!important}.icon-history:before{content:""!important}.icon-home:before{content:""!important}.icon-homeuse:before{content:""!important}.icon-image-broken:before{content:""!important}.icon-image-gallery:before{content:""!important}.icon-info:before{content:""!important}.icon-info-circle:before{content:""!important}.icon-installation-help:before{content:""!important}.icon-license-management:before{content:""!important}.icon-like:before{content:""!important}.icon-link:before{content:""!important}.icon-link-external:before{content:""!important}.icon-locked:before{content:""!important}.icon-matrix:before{content:""!important}.icon-membrane:before{content:""!important}.icon-menu:before{content:""!important}.icon-menu-reverse:before{content:""!important}.icon-mobile:before{content:""!important}.icon-model:before{content:""!important}.icon-new-indicator-tag:before{content:""!important}.icon-newsletter-subscribe:before{content:""!important}.icon-note:before{content:""!important}.icon-op-blogger:before{content:""!important}.icon-payment:before{content:""!important}.icon-phone:before{content:""!important}.icon-print:before{content:""!important}.icon-quote:before{content:""!important}.icon-rating:before{content:""!important}.icon-refresh:before{content:""!important}.icon-releasenotes:before{content:""!important}.icon-remove:before{content:""!important}.icon-remove-circle:before{content:""!important}.icon-remove-circle-reverse:before{content:""!important}.icon-rss:before{content:""!important}.icon-rss-enclosed:before{content:""!important}.icon-save:before{content:""!important}.icon-script:before{content:""!important}.icon-search:before{content:""!important}.icon-search-boxed-reverse:before{content:""!important}.icon-secure:before{content:""!important}.icon-server:before{content:""!important}.icon-server-instance:before{content:""!important}.icon-server-local:before{content:""!important}.icon-simulink:before{content:""!important}.icon-smartphone:before{content:""!important}.icon-sort-ascending:before{content:""!important}.icon-sort-descending:before{content:""!important}.icon-sort-unsorted:before{content:""!important}.icon-spinner:before{content:""!important}.icon-startup:before{content:""!important}.icon-store:before{content:""!important}.icon-student:before{content:""!important}.icon-submit:before{content:""!important}.icon-support:before{content:""!important}.icon-supported:before{content:""!important}.icon-systemobject:before{content:""!important}.icon-system-requirements:before{content:""!important}.icon-techkit:before{content:""!important}.icon-technical-article:before{content:""!important}.icon-thingspeak:before{content:""!important}.icon-training:before{content:""!important}.icon-training-classroom:before{content:""!important}.icon-training-facility:before{content:""!important}.icon-training-online-live:before{content:""!important}.icon-training-online-selfpaced:before{content:""!important}.icon-translate:before{content:""!important}.icon-trendy:before{content:""!important}.icon-trial-circle:before{content:""!important}.icon-tutorial:before{content:""!important}.icon-university:before{content:""!important}.icon-unlocked:before{content:""!important}.icon-upload:before{content:""!important}.icon-userstory:before{content:""!important}.icon-video:before{content:""!important}.icon-video-cc:before{content:""!important}.icon-video-contract:before{content:""!important}.icon-video-expand:before{content:""!important}.icon-video-locked:before{content:""!important}.icon-video-locked-reverse:before{content:""!important}.icon-webinar:before{content:""!important}.icon-workaround:before{content:""!important}.icon-zoomin:before{content:""!important}.icon-zoomout:before{content:""!important}.icon-mw-application-instance:before{content:""!important}.icon-mw-archives:before{content:""!important}.icon-mw-badge:before{content:""!important}.icon-mw-blogger:before{content:""!important}.icon-mw-circle:before{content:""!important}.icon-mw-cut:before{content:""!important}.icon-mw-copy:before{content:""!important}.icon-mw-discussions:before{content:""!important}.icon-mw-folder:before{content:""!important}.icon-mw-folder-open:before{content:""!important}.icon-mw-hot-pick:before{content:""!important}.icon-mw-license:before{content:""!important}.icon-mw-mvp:before{content:""!important}.icon-mw-paste:before{content:""!important}.icon-mw-questions:before{content:""!important}.icon-mw-rename:before{content:""!important}.icon-mw-report:before{content:""!important}.icon-mw-restart:before{content:""!important}.icon-mw-risingstar:before{content:""!important}.icon-mw-run:before{content:""!important}.icon-mw-running:before{content:""!important}.icon-mw-staff:before{content:""!important}.icon-mw-stop:before{content:""!important}.icon-mw-trash:before{content:""!important}.icon-mw-watch:before{content:""!important}.glyphicon.glyphicon-remove:before{content:""!important}.glyphicon.glyphicon-ok:before{content:""!important}.icon-alert-error.icon_alert_color{color:#b7312c}.icon-alert-info-reverse.icon_alert_color{color:#0076a8}.icon-alert-success.icon_alert_color{color:#008013}.icon-alert-warning.icon_alert_color{color:#c05708}.icon-cog-reverse:before{content:""!important}.icon-contactus-menu:before{content:""!important}.icon-contactus-menu-reverse:before{content:""!important}.icon-email-circle:before{content:""!important}.icon-help-reverse:before{content:""!important}.icon-phone-circle:before{content:""!important}.icon-subscribe:before{content:""!important}.icon-mw-comment:before{font-family:mathworks!important;content:""!important}.icon-mw-help:before{font-family:mathworks!important;content:""!important}.icon-mw-server:before{font-family:mathworks!important;content:""!important}.icon-mw-server-instance:before{font-family:mathworks!important;content:""!important}.icon-mw-server-local:before{font-family:mathworks!important;content:""!important}.icon-mw-trendy-plot:before{font-family:mathworks!important;content:""!important}.icon_color_null:before,span.icon_color_null{color:#fff}.icon_color_general:before,span.icon_color_general{color:#6f6f6f}.icon_color_primary:before,span.icon_color_primary{color:#1a1a1a}.icon_color_secondary:before,span.icon_color_secondary{color:#005487}.icon_color_tertiary:before,span.icon_color_tertiary{color:#008013}.icon_color_quaternary:before,span.icon_color_quaternary{color:#f2a900}.icon_color_quinary:before,span.icon_color_quinary{color:#00a9e0}.icon_color_senary:before,span.icon_color_senary{color:#b7312c}.icon_color_septenary:before,span.icon_color_septenary{color:#c05708}.icon_color_emphasize:before,span.icon_color_emphasize{color:#c05708}table.table_20{width:20%}table.table_25{width:25%}table.table_33{width:33.3333%}table.table_35{width:35%}table.table_40{width:40%}table.table_50{width:50%}table.table_60{width:60%}table.table_65{width:65%}table.table_66{width:66.6666%}table.table_70{width:70%}table.table_100{width:100%}.cell_5{width:5%}.cell_10{width:10%}.cell_15{width:15%}.cell_20{width:20%}.cell_25{width:25%}.cell_30{width:30%}.cell_33{width:33.333%}.cell_35{width:35%}.cell_40{width:40%}.cell_45{width:45%}.cell_50{width:50%}.cell_55{width:55%}.cell_60{width:60%}.cell_65{width:65%}.cell_66{width:66.666%}.cell_70{width:70%}.cell_75{width:75%}.cell_80{width:80%}.cell_85{width:85%}.cell_90{width:90%}.cell_95{width:95%}.cell_100{width:100%}table.padded_5 td,td.padded_5{padding:5px}table.padded_10 td,td.padded_10{padding:10px}table.padded_15 td,td.padded_15{padding:15px}table.padded_20 td,td.padded_20{padding:20px}td.valign_middle{vertical-align:middle!important}td.valign_bottom{vertical-align:bottom!important}td.valign_center{vertical-align:middle!important}.table-striped>tbody>tr.general:nth-child(odd)>td,.table-striped>tbody>tr.general:nth-child(odd)>th,.table td.general,.table th.general,.table tr.general>td,.table tr.general>th{background-color:#f5f5f5}.table-striped>tbody>tr.primary:nth-child(odd)>td,.table-striped>tbody>tr.primary:nth-child(odd)>th,.table td.primary,.table th.primary,.table tr.primary>td,.table tr.primary>th{background-color:#6f6f6f;color:#fff}.table-striped>tbody>tr.secondary:nth-child(odd)>td,.table-striped>tbody>tr.secondary:nth-child(odd)>th,.table td.secondary,.table th.secondary,.table tr.secondary>td,.table tr.secondary>th{background-color:#0076a8;color:#fff}.table-striped>tbody>tr.tertiary:nth-child(odd)>td,.table-striped>tbody>tr.tertiary:nth-child(odd)>th,.table td.tertiary,.table th.tertiary,.table tr.tertiary>td,.table tr.tertiary>th{background-color:#008013;color:#fff}.table-striped>tbody>tr.quaternary:nth-child(odd)>td,.table-striped>tbody>tr.quaternary:nth-child(odd)>th,.table td.quaternary,.table th.quaternary,.table tr.quaternary>td,.table tr.quaternary>th{background-color:#f2a900;color:#fff}.table-striped>tbody>tr.quinary:nth-child(odd)>td,.table-striped>tbody>tr.quinary:nth-child(odd)>th,.table td.quinary,.table th.quinary,.table tr.quinary>td,.table tr.quinary>th{background-color:#00a9e0;color:#fff}.table-striped>tbody>tr.senary:nth-child(odd)>td,.table-striped>tbody>tr.senary:nth-child(odd)>th,.table td.senary,.table th.senary,.table tr.senary>td,.table tr.senary>th{background-color:#b7312c;color:#fff}.table-striped>tbody>tr.septenary:nth-child(odd)>td,.table-striped>tbody>tr.septenary:nth-child(odd)>th,.table td.septenary,.table th.septenary,.table tr.septenary>td,.table tr.septenary>th{background-color:#c05708;color:#fff}.table-striped>tbody>tr.emphasize:nth-child(odd)>td,.table-striped>tbody>tr.emphasize:nth-child(odd)>th,.table td.emphasize,.table th.emphasize,.table tr.emphasize>td,.table tr.emphasize>th{background-color:#c05708;color:#fff}.table-striped>tbody>tr.active:nth-child(odd)>td,.table-striped>tbody>tr.active:nth-child(odd)>th{background-color:#f5f5f5}.table-striped>tbody>tr.danger:nth-child(odd)>td,.table-striped>tbody>tr.danger:nth-child(odd)>th{background-color:#faf0f0}.table-striped>tbody>tr.info:nth-child(odd)>td,.table-striped>tbody>tr.info:nth-child(odd)>th{background-color:#edf5f9}.table-striped>tbody>tr.success:nth-child(odd)>td,.table-striped>tbody>tr.success:nth-child(odd)>th{background-color:#f2f8f1}.table-striped>tbody>tr.warning:nth-child(odd)>td,.table-striped>tbody>tr.warning:nth-child(odd)>th{background-color:#fef9ed}.table-hover>tbody.general>tr:hover>td,.table-hover>tbody.general>tr:hover>th{background-color:#f5f5f5}.table-hover>tbody.primary>tr:hover>td,.table-hover>tbody.primary>tr:hover>th{background-color:#6f6f6f;color:#fff}.table-hover>tbody.secondary>tr:hover>td,.table-hover>tbody.secondary>tr:hover>th{background-color:#005487;color:#fff}.table-hover>tbody.tertiary>tr:hover>td,.table-hover>tbody.tertiary>tr:hover>th{background-color:#008013;color:#fff}.table-hover>tbody.quaternary>tr:hover>td,.table-hover>tbody.quaternary>tr:hover>th{background-color:#f2a900;color:#fff}.table-hover>tbody.quinary>tr:hover>td,.table-hover>tbody.quinary>tr:hover>th{background-color:#00a9e0;color:#fff}.table-hover>tbody.senary>tr:hover>td,.table-hover>tbody.senary>tr:hover>th{background-color:#b7312c;color:#fff}.table-hover>tbody.septenary>tr:hover>td,.table-hover>tbody.septenary>tr:hover>th{background-color:#c05708;color:#fff}.table-hover>tbody.emphasize>tr:hover>td,.table-hover>tbody.emphasize>tr:hover>th{background-color:#c05708;color:#fff}/*!
6
+ * Lightbox for Bootstrap 3 by @ashleydw
7
+ * https://github.com/ashleydw/lightbox
8
+ *
9
+ * License: https://github.com/ashleydw/lightbox/blob/master/LICENSE
10
+ */.ekko-lightbox-container{position:relative}.ekko-lightbox-container iframe{width:100%!important;height:100%;overflow:hidden}.ekko-lightbox-nav-overlay{height:100%;width:100%;left:0;position:absolute;top:0;z-index:100}.ekko-lightbox-nav-overlay a{height:100%;width:49%;padding-top:45%;color:#fff;display:block;font-size:30px;opacity:0;text-shadow:2px 2px 4px #1a1a1a;transition:opacity .5s;z-index:100}.ekko-lightbox-nav-overlay a:empty{width:49%}.ekko-lightbox a:hover{text-decoration:none;opacity:1}.ekko-lightbox .glyphicon-chevron-left{padding-left:15px;float:left;left:0;text-align:left}.ekko-lightbox .glyphicon-chevron-right{padding-right:15px;float:right;right:0;text-align:right}.ekko-lightbox .modal-body{overflow:hidden}.ekko-lightbox .modal-footer{text-align:left}#responsive_iframe .content_container,#responsive_iframe .content_container_no_conflict{padding:0}.section_downsize{font-size:86%}.section_downsize .h1,.section_downsize h1{font-size:28px}.section_downsize .h2,.section_downsize h2{font-size:25px}.section_downsize .h3,.section_downsize h3{font-size:20px}.section_downsize .h4,.section_downsize h4{font-size:17px}.section_downsize .h5,.section_downsize h5{font-size:16px}.section_downsize .h6,.section_downsize h6{font-size:13px}.section_downsize .panel-body .h1,.section_downsize .panel-body h1{margin-bottom:30px}.section_downsize .panel-body .h2,.section_downsize .panel-body h2{margin-bottom:13px}.section_downsize .panel-body .h3,.section_downsize .panel-body h3{margin-bottom:11px}.section_downsize .panel-body .h4,.section_downsize .panel-body h4{margin-bottom:10px}.section_downsize .panel-body .h5,.section_downsize .panel-body h5,.section_downsize .panel-body .h6,.section_downsize .panel-body h6{margin-bottom:9px}.section_downsize ol>li,.section_downsize ul>li{margin-bottom:6px}.section_downsize .alert h3,.section_downsize blockquote{font-size:15px}.section_downsize .caption,.section_downsize .thumbnail .caption,.section_downsize .video-caption{font-size:13px}.section_downsize pre{font-size:86%}@media only screen and (min-width:768px){.section_upsize{font-size:115%;line-height:1.6}.section_upsize .h1,.section_upsize h1{font-size:42px}.section_upsize .h2,.section_upsize h2{font-size:32px}.section_upsize .h3,.section_upsize h3{font-size:25px}.section_upsize .h4,.section_upsize h4{font-size:21px}.section_upsize .h5,.section_upsize h5{font-size:18px}.section_upsize .h6,.section_upsize h6{font-size:15px}.section_upsize h1+h2{font-size:32px}.section_upsize p{margin-bottom:22px}.section_upsize .table{font-size:16px}.section_upsize .panel-body .h1,.section_upsize .panel-body h1{margin-bottom:30px}.section_upsize .panel-body .h2,.section_upsize .panel-body h2{margin-bottom:13px}.section_upsize .panel-body .h3,.section_upsize .panel-body h3{margin-bottom:11px}.section_upsize .panel-body .h4,.section_upsize .panel-body h4{margin-bottom:10px}.section_upsize .panel-body .h5,.section_upsize .panel-body h5,.section_upsize .panel-body .h6,.section_upsize .panel-body h6{margin-bottom:9px}.section_upsize ol>li,.section_upsize ul>li{margin-bottom:9px}.section_upsize .alert h3{font-size:16px}.section_upsize blockquote{font-size:20px;line-height:1.75;font-weight:400}.section_upsize .caption,.section_upsize .thumbnail .caption,.section_upsize .video-caption{font-size:15px}.section_upsize pre{font-size:14px}}@media only screen and (min-width:768px){h1.hero{font-size:40px}}.remove_gutters{padding-right:0;padding-left:0;margin-right:0;margin-left:0}.add_overlapping_container{width:100%;left:8%;position:absolute;z-index:1}.remove_underline a{text-decoration:none}.section_header h1 a,.section_header p.h1 a{color:#fff;text-decoration:none}.dropdown>.btn>span[class*=icon-]{line-height:1}section.section_downsize .carousel-indicators li.active{margin-bottom:5px}.gf-author,.gf-snippet,.gf-spacer,.gfc-resultsHeader,.blog_post_hide_date .gf-relativePublishedDate{display:none!important}.panel .add_panel_image_left{background-position:left center}.full_banner_container .carousel{margin-top:0;margin-bottom:0}.add_background_color_transparent{background-color:transparent!important}.add_background_color_white{background-color:#fff!important}.add_background_color_gray,tr.add_background_color_gray td{background-color:#f5f5f5!important}.add_background_color_mediumgray,tr.add_background_color_mediumgray td{background-color:#6f6f6f!important}.add_background_color_blue,tr.add_background_color_blue td{background-color:#0076a8!important}.add_background_color_darkblue,tr.add_background_color_darkblue td{background-color:#005487!important}.add_background_color_green,tr.add_background_color_green td{background-color:#008013!important}.add_background_color_yellow,tr.add_background_color_yellow td{background-color:#f2a900!important}.add_background_color_orange,tr.add_background_color_orange td,.add_background_color_darkorange,tr.add_background_color_darkorange td{background-color:#c05708!important}.add_background_color_aqua,tr.add_background_color_aqua td{background-color:#00a9e0!important}.add_background_color_red,tr.add_background_color_red td{background-color:#b7312c!important}.add_background_color_purple,tr.add_background_color_purple td{background-color:#715091!important}.add_background_color_aqua:not(.add_revert_color),.add_background_color_aqua:not(.add_revert_color) *,.add_background_color_blue:not(.add_revert_color),.add_background_color_blue:not(.add_revert_color) *,.add_background_color_darkblue:not(.add_revert_color),.add_background_color_darkblue:not(.add_revert_color) *,.add_background_color_darkorange:not(.add_revert_color),.add_background_color_darkorange:not(.add_revert_color) *,.add_background_color_green:not(.add_revert_color),.add_background_color_green:not(.add_revert_color) *,.add_background_color_mediumgray:not(.add_revert_color),.add_background_color_mediumgray:not(.add_revert_color) *,.add_background_color_orange:not(.add_revert_color),.add_background_color_orange:not(.add_revert_color) *,.add_background_color_purple:not(.add_revert_color),.add_background_color_purple:not(.add_revert_color) *,.add_background_color_red:not(.add_revert_color),.add_background_color_red:not(.add_revert_color) *,.add_background_color_yellow:not(.add_revert_color),.add_background_color_yellow:not(.add_revert_color) *{color:#fff!important}.add_font_color_white,.add_font_color_white *{color:#fff!important}.add_font_color_black,.add_font_color_black *{color:#000!important}.add_font_color_gray,.add_font_color_gray *{color:#e6e6e6!important}.add_font_color_mediumgray,.add_font_color_mediumgray *{color:#6f6f6f!important}.add_font_color_darkgray,.add_font_color_darkgray *{color:#1a1a1a!important}.add_font_color_darkblue,.add_font_color_darkblue *{color:#005487!important}.add_font_color_green,.add_font_color_green *{color:#008013!important}.add_font_color_orange,.add_font_color_orange *,.add_font_color_darkorange,.add_font_color_darkorange *{color:#c05708!important}.add_background_position_right{background-position:right center!important}.add_background_position_center{background-position:center center!important}.add_background_position_left{background-position:left center!important}.add_background_position_top{background-position:center top!important}.add_background_position_bottom{background-position:center bottom!important}[class*=add_gradient_background_]:before,[class*=add_transparent_background_]:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0}.add_transparent_background_black_20:before{background-color:#0003!important}.add_transparent_background_black_40:before{background-color:#0006!important}.add_transparent_background_black_60:before{background-color:#0009!important}.add_transparent_background_black_80:before{background-color:#000c!important}.add_transparent_background_white_20:before{background-color:#fff3!important}.add_transparent_background_white_40:before{background-color:#fff6!important}.add_transparent_background_white_60:before{background-color:#fff9!important}.add_transparent_background_white_80:before{background-color:#fffc!important}.add_gradient_background_from_top:before{background:linear-gradient(to bottom,#000000d9,#00000080 40%,#0000,#0000)}.add_gradient_background_from_bottom:before{background:linear-gradient(to bottom,#0000,#0000 40%,#00000080,#000000d9)}.panel[class*=add_gradient_background_],.panel[class*=add_transparent_background_],[class*=panel-][class*=add_gradient_background_],[class*=panel-][class*=add_transparent_background_]{z-index:2}.panel[class*=add_gradient_background_]:before,.panel[class*=add_transparent_background_]:before,[class*=panel-][class*=add_gradient_background_]:before,[class*=panel-][class*=add_transparent_background_]:before{z-index:-1}.panel .panel-footer[style^=background-],.panel .panel-heading[style^=background-]{min-height:41px}.add_border_color_gray{border-color:#e6e6e6!important}.add_border_color_mediumgray{border-color:#6f6f6f!important}.add_border_color_aqua{border-color:#00a9e0!important}.add_border_color_blue{border-color:#0076a8!important}.add_border_color_darkblue{border-color:#005487!important}.add_border_color_green{border-color:#008013!important}.add_border_color_orange{border-color:#c05708!important}.add_border_color_purple{border-color:#715091!important}.panel-body.panel_icon_16{padding-left:32px}.panel-body.panel_icon_24{padding-left:48px}.panel-body.panel_icon_32{padding-left:64px}.panel-body.panel_icon_48{padding-left:96px}.panel-body.panel_icon_56{padding-left:112px}.panel-body[class*=panel_icon_]>span[class*=icon-]:not(.glyphicon):first-child{line-height:1;float:left}.panel-body.panel_icon_16>span[class*=icon-]:not(.glyphicon):first-child{margin-top:3px;margin-left:-24px;font-size:16px}.panel-body.panel_icon_24>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-33px;font-size:24px}.panel-body.panel_icon_32>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-49px;font-size:32px}.panel-body.panel_icon_48>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-81px;font-size:48px}.panel-body.panel_icon_56>span[class*=icon-]:not(.glyphicon):first-child{margin-left:-97px;font-size:56px}.section_downsize .panel-footer[style^=background-]{min-height:38px}.btn[class*=btn_color_]{color:#fff!important}.btn.btn_color_mediumgray,.btn.btn_color_mediumgray:visited{background:#6f6f6f}.btn.btn_color_blue,.btn.btn_color_blue:visited{background:#0076a8}.btn.btn_color_green,.btn.btn_color_green:visited{background:#008013}.btn.btn_color_orange,.btn.btn_color_orange:visited{background:#c05708}[class*=companion_btn]{padding:9px 13px 8px;border-style:solid;border-width:1px;background:transparent!important}.companion_btn.btn_color_mediumgray,.companion_btn.btn_color_mediumgray:visited{border-color:#6f6f6f;color:#6f6f6f!important}.companion_btn.btn_color_blue,.companion_btn.btn_color_blue:visited{border-color:#0076a8;color:#0076a8!important}.companion_btn.btn_color_green,.companion_btn.btn_color_green:visited{border-color:#008013;color:#008013!important}.companion_btn.btn_color_orange,.companion_btn.btn_color_orange:visited{border-color:#c05708;color:#c05708!important}[class*=companion_btn]:hover{opacity:.6}[class*=companion_btn].btn-xs{padding:4px 8px}[class*=companion_btn].btn-sm{padding:7px 11px}[class*=companion_btn].btn-lg{padding:11px 16px}.panel-group.accordion_variant_01 .panel{margin-bottom:10px}.panel-group.accordion_variant_01 .panel-default .panel-heading{border-bottom:none}.panel-group.accordion_variant_01 .panel-collapse.collapse{padding:0!important;background:transparent}.panel-group.accordion_variant_01 .panel-heading{padding-left:55px;position:relative}.panel-group.accordion_variant_01 .panel-heading:before{width:40px;margin-left:-40px;display:inline-block;font-family:mathworks;font-size:24px;font-style:normal;font-variant:normal;font-weight:400;line-height:1;opacity:.95;position:absolute;speak:none;text-decoration:none!important;text-transform:none;top:calc(50% - 11px)}.panel-group.accordion_variant_01 .panel-heading:before{content:""!important}.panel-group.accordion_variant_01 .panel-heading.collapsed:before{content:""!important;top:calc(50% - 11px)}.panel-group.accordion_variant_01 .panel-body :last-child{margin-bottom:0}.panel-group.accordion_variant_03 .panel-heading{padding:0}.panel-group.accordion_variant_03 .panel-heading .btn{width:100%;border-radius:4px;background:transparent!important;display:block;text-align:left}.panel-group.accordion_variant_03 .panel-heading .btn,.panel-group.accordion_variant_03 .panel-heading .btn *{font: 700 13px/1.333 Arial,Helvetica,sans-serif!important;color:#1a1a1a!important}.panel-group.accordion_variant_03 .panel-heading .btn *{padding:0!important;margin:0!important;border:none!important}.panel-group.accordion_variant_03 .panel{margin-bottom:10px}.panel-group.accordion_variant_03 .panel-default .panel-heading{border-bottom:none}.panel-group.accordion_variant_03 .panel-collapse.collapse{padding:0!important;background:transparent}.panel-group.accordion_variant_03 .panel-heading .btn{padding-left:55px;position:relative}.panel-group.accordion_variant_03 .panel-heading .btn:before{width:40px;margin-left:-40px;display:inline-block;font-family:mathworks;font-size:24px;font-style:normal;font-variant:normal;font-weight:400;line-height:1;opacity:.95;position:absolute;speak:none;text-decoration:none!important;text-transform:none;top:calc(50% - 11px)}.panel-group.accordion_variant_03 .panel-heading .btn:before{content:""!important}.panel-group.accordion_variant_03 .panel-heading .btn.collapsed:before{content:""!important;top:calc(50% - 11px)}.panel-group.accordion_variant_03 .panel-body :last-child{margin-bottom:0}.add_icon_color_white:before,span.add_icon_color_white{color:#fff}.add_icon_color_gray:before,span.add_icon_color_gray{color:#e6e6e6}.add_icon_color_mediumgray:before,span.add_icon_color_mediumgray{color:#6f6f6f}.add_icon_color_darkblue:before,span.add_icon_color_darkblue{color:#005487}.add_icon_color_green:before,span.add_icon_color_green{color:#008013}.add_icon_color_yellow:before,span.add_icon_color_yellow{color:#f2a900}.add_icon_color_orange:before,span.add_icon_color_orange{color:#c05708}.show_more_toggle{position:relative;overflow:hidden}.show_more_toggle .read_more{position:absolute;bottom:0;left:0;width:100%;padding-top:20px;background:linear-gradient(to bottom,#fff0,#fff 40%)}.show_more_toggle.add_background_gradient_gray .read_more{background:linear-gradient(to bottom,#f5f5f500,#f5f5f5 40%)}.show_more_toggle.add_background_gradient_mediumgray .read_more{background:linear-gradient(to bottom,#6f6f6f00,#6f6f6f 40%)}.show_more_toggle.add_background_gradient_aqua .read_more{background:linear-gradient(to bottom,#00a9e000,#00a9e0 40%)}.show_more_toggle.add_background_gradient_blue .read_more{background:linear-gradient(to bottom,#0076a800,#0076a8 40%)}.show_more_toggle.add_background_gradient_darkblue .read_more{background:linear-gradient(to bottom,#004b8700,#004b87 40%)}.show_more_toggle.add_background_gradient_purple .read_more{background:linear-gradient(to bottom,#521f7700,#521f77 40%)}.show_more_toggle.add_background_gradient_green .read_more{background:linear-gradient(to bottom,#48a23f00,#48a23f 40%)}.show_more_toggle.add_background_gradient_yellow .read_more{background:linear-gradient(to bottom,#f2a90000,#f2a900 40%)}.show_more_toggle.add_background_gradient_orange .read_more{background:linear-gradient(to bottom,#d7882500,#d78825 40%)}.show_more_toggle.add_background_gradient_darkorange .read_more{background:linear-gradient(to bottom,#cb601500,#cb6015 40%)}.show_more_toggle.add_background_gradient_red .read_more{background:linear-gradient(to bottom,#b7312c00,#b7312c 40%)}.show_more_toggle.show_more_toggle_expanded .read_more{padding-top:0}.show_more_toggle .read_more a:focus{text-decoration:none}.show_more_toggle .read_more a:hover{text-decoration:underline}.show_more_toggle_element{position:relative;padding-bottom:40px}.show_more_toggle_element .read_more_actuator{width:100%;height:20px;padding:0;margin-bottom:0;position:absolute;bottom:0;left:0}.show_more_toggle_content{overflow:hidden}.show_more_toggle_content :last-child{margin-bottom:0}.show_more_toggle_mask{overflow:hidden;transition:height .3s ease-out;-webkit-mask-image:linear-gradient(to bottom,black 0%,rgba(0,0,0,0) 95%)}.show_more_toggle_mask.show_more_toggle_expanded,.show_more_toggle_mask.more_toggle_remove_mask{-webkit-mask-image:linear-gradient(to bottom,black 0%,black 100%)}.tab-container.tab-container-vertical{display:block;overflow:hidden;background-color:#fff;width:100%;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px}ul.nav-tabs.tabs-vertical{display:block;float:left;position:relative;border-radius:4px 0 0 4px;-moz-border-radius:4px 0px 0px 4px;-webkit-border-radius:4px 0px 0px 4px;border:1px solid #b1b1b1;width:25%;background-color:#f5f5f5;padding:10px}.tab-container .tabs-vertical>li>a{margin-right:0;border-radius:0;display:block;border-bottom:1px solid #e6e6e6;border-top:1px solid #fff;padding-left:5px}.tab-container .tabs-vertical>li:first-of-type>a{border-top-color:transparent}.tab-container .tabs-vertical>li:last-of-type:after{border-top:1px solid #fff;display:block;content:""}.tab-container .tabs-vertical>li,.tab-container .tabs-vertical>li.active{background:transparent;position:relative;margin:0;width:100%}.tab-container .tabs-vertical>li.active>a,.tab-container .tabs-vertical>li.active>a:focus,.tab-container .tabs-vertical>li.active>a:hover{border-right-color:#0076a8;border-bottom-color:#0076a8;border-left:1px solid #0076a8;border-top-color:#0076a8;background:#0076a8;z-index:1000;color:#fff;margin-right:-10px;margin-left:-10px;padding-left:15px;padding-right:20px}.tab-container .tabs-vertical>li.active>a:after,.tab-container .tabs-vertical>li.active>a:focus:after,.tab-container .tabs-vertical>li.active>a:hover:after{content:"";position:absolute;left:100%;top:50%;margin-top:-13px;border-left:0;border-bottom:13px solid transparent;border-top:13px solid transparent;border-left:10px solid #0076a8}.tab-container .tabs-vertical>li>a:hover{background-color:#f5f5f5;border-left-color:#f5f5f5;border-right-color:#f5f5f5}.tab-container.tab-container-vertical .tab-content{display:block;overflow:hidden;margin:0;position:relative;background-color:#fff;float:left;width:75%;height:100%;border-radius:0 4px 4px 0;-moz-border-radius:0px 4px 4px 0px;-webkit-border-radius:0px 4px 4px 0px;border:1px solid #b1b1b1;border-left:0px;padding:40px}.tab-container .tabs-vertical>li.active .label-description{color:#fff!important}a span[class*=pictogram-][class*=pictogram-]{color:inherit!important}.asset_description{color:#6f6f6f}form .form_captcha_input{width:140px!important;margin-bottom:20px}form .form_captcha_input input{width:150px!important}form .form_captcha_img{margin-bottom:20px}form .form_captcha_refresh{float:none!important;display:inline!important}.lSSlideOuter{overflow:hidden;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.lightSlider:after,.lightSlider:before{content:" ";display:table}.lightSlider{overflow:hidden;margin:0}.lSSlideWrapper{max-width:100%;overflow:hidden;position:relative}.lSSlideWrapper>.lightSlider:after{clear:both}.lSSlideWrapper .lSSlide{-webkit-transform:translate(0px,0px);-ms-transform:translate(0px,0px);transform:translate(0);-webkit-transition:all 1s;-webkit-transition-property:-webkit-transform,height;-moz-transition-property:-moz-transform,height;transition-property:transform,height;-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lSSlideWrapper .lSFade{position:relative}.lSSlideWrapper .lSFade>*{position:absolute!important;top:0;left:0;z-index:9;margin-right:0;width:100%}.lSSlideWrapper.usingCss .lSFade>*{opacity:0;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lSSlideWrapper .lSFade>.active{z-index:10}.lSSlideWrapper.usingCss .lSFade>.active{opacity:1}.lSSlideOuter .lSPager.lSpg{margin:10px 0 0;padding:0;text-align:center}.lSSlideOuter ul.lSPager.lSpg>li{cursor:pointer;display:inline-block;padding:0 5px}.lSSlideOuter ul.lSPager.lSpg>li a{background-color:#1a1a1a;border-radius:30px;display:inline-block;height:8px;overflow:hidden;text-indent:-999em;width:8px;position:relative;z-index:99;-webkit-transition:all .5s linear 0s;transition:all .5s linear 0s}.lSSlideOuter .lSPager.lSpg>li.active a,.lSSlideOuter ul.lSPager.lSpg>li:hover a{background-color:#0076a8}.lSSlideOuter .media{opacity:.8}.lSSlideOuter .media.active{opacity:1}.lSSlideOuter .lSPager.lSGallery{list-style:none outside none!important;padding-left:0;margin:0;overflow:hidden;transform:translateZ(0);-moz-transform:translate3d(0px,0px,0px);-ms-transform:translate3d(0px,0px,0px);-webkit-transform:translate3d(0px,0px,0px);-o-transform:translate3d(0px,0px,0px);-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.lSSlideOuter ul.lSPager.lSGallery li{overflow:hidden!important;-webkit-transition:border-radius .12s linear 0s .35s linear 0s!important;transition:border-radius .12s linear 0s .35s linear 0s!important}.lSSlideOuter .lSPager.lSGallery li:hover,.lSSlideOuter ul.lSPager.lSGallery li.active{border-radius:5px}.lSSlideOuter ul.lSPager.lSGallery img{display:block!important;height:auto!important;max-width:100%!important}.lSSlideOuter .lSPager.lSGallery:after,.lSSlideOuter ul.lSPager.lSGallery:before{content:" ";display:table}.lSSlideOuter ul.lSPager.lSGallery:after{clear:both}.lSAction>a{width:24px;display:block;top:50%;height:24px;cursor:pointer;line-height:1;position:absolute;z-index:99}.lSAction>a.lSNext{margin-right:-9px;top:25%!important;text-decoration:none!important}.lSAction>a.lSNext:before{content:""!important;font-family:mathworks;font-size:24px}.lSAction>a.lSPrev{margin-left:-9px;top:25%!important;text-decoration:none!important}.lSAction>a.lSPrev:before{content:""!important;font-family:mathworks;font-size:24px}@media(max-width:767px){.lSAction>a{background-color:#0076a8;color:#fff}}.lSAction>a:hover{opacity:1}.lSAction>.lSPrev{background-position:0 0;left:10px;top:calc(50% - 12px)!important}.lSAction>.lSNext{background-position:-32px 0;right:10px;top:calc(50% - 12px)!important}.lSAction>a.disabled{pointer-events:none}.cS-hidden{height:1px;opacity:0;filter:alpha(opacity=0);overflow:hidden}.lSSlideOuter.vertical{position:relative}.lSSlideOuter.vertical.noPager{padding-right:0!important}.lSSlideOuter.vertical .lSGallery{position:absolute!important;right:0;top:0}.lSSlideOuter.vertical .lightSlider>*{width:100%!important;max-width:none!important}.lSSlideOuter.vertical .lSAction>a{left:50%;margin-left:-14px;margin-top:0}.lSSlideOuter.vertical .lSAction>.lSNext{background-position:31px -31px;bottom:10px;top:auto}.lSSlideOuter.vertical .lSAction>.lSPrev{background-position:0 -31px;bottom:auto;top:10px}.lSSlideOuter.lSrtl{direction:rtl}.lSSlideOuter .lightSlider,.lSSlideOuter ul.lSPager{padding-left:0;list-style:none outside none!important}.lSSlideOuter.lSrtl .lightSlider,.lSSlideOuter.lSrtl .lSPager{padding-right:0}.lSSlideOuter .lightSlider>*,.lSSlideOuter .lSGallery li{float:left}.lSSlideOuter.lSrtl .lightSlider>*,.lSSlideOuter.lSrtl .lSGallery li{float:right!important}@-webkit-keyframes rightEnd{0%{left:0}50%{left:-15px}to{left:0}}@keyframes rightEnd{0%{left:0}50%{left:-15px}to{left:0}}@-webkit-keyframes topEnd{0%{top:0}50%{top:-15px}to{top:0}}@keyframes topEnd{0%{top:0}50%{top:-15px}to{top:0}}@-webkit-keyframes leftEnd{0%{left:0}50%{left:15px}to{left:0}}@keyframes leftEnd{0%{left:0}50%{left:15px}to{left:0}}@-webkit-keyframes bottomEnd{0%{bottom:0}50%{bottom:-15px}to{bottom:0}}@keyframes bottomEnd{0%{bottom:0}50%{bottom:-15px}to{bottom:0}}.lSSlideOuter .rightEnd{-webkit-animation:rightEnd .3s;animation:rightEnd .3s;position:relative}.lSSlideOuter .leftEnd{-webkit-animation:leftEnd .3s;animation:leftEnd .3s;position:relative}.lSSlideOuter.vertical .rightEnd{-webkit-animation:topEnd .3s;animation:topEnd .3s;position:relative}.lSSlideOuter.vertical .leftEnd{-webkit-animation:bottomEnd .3s;animation:bottomEnd .3s;position:relative}.lSSlideOuter.lSrtl .rightEnd{-webkit-animation:leftEnd .3s;animation:leftEnd .3s;position:relative}.lSSlideOuter.lSrtl .leftEnd{-webkit-animation:rightEnd .3s;animation:rightEnd .3s;position:relative}.lightSlider.lsGrab>*{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lightSlider.lsGrabbing>*{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.light_slider_container{padding:0 38px;position:relative}.light_slider_container:before{content:"";border-left:2px solid white;position:absolute;z-index:10;top:0;bottom:0;left:-2px}.light_slider_container:after{content:"";border-right:2px solid white;position:absolute;z-index:10;top:0;bottom:0;right:-2px}.light_slider_container ul{height:auto!important}.light_slider_container .lSSlideOuter{margin:0 -40px;padding:0 40px;position:relative}.light_slider_container .lSSlideOuter:before{width:40px;background:#fff;content:"";display:block;position:absolute;top:0;bottom:0;left:0;z-index:2}.light_slider_container .lSSlideOuter:after{width:40px;background:#fff;content:"";display:block;position:absolute;top:0;bottom:0;right:0;z-index:2}.light_slider_container .lSSlideWrapper{overflow:visible}.light_slider_container .lSAction>a.lSPrev{margin-left:-49px;top:calc(50% - 16px)!important}.light_slider_container .lSAction>a.lSNext{margin-right:-49px;top:calc(50% - 16px)!important}.light_slider_container ul>li>:last-child{margin-bottom:0}.borderless_tab_controls{margin-bottom:20px}.borderless_tab_controls>li>a{text-decoration:none!important}.borderless_tab_controls>li.active>a{color:gray;border-bottom:3px solid #00a9e0;padding-bottom:5px}.borderless_tab_controls>li.active>a.has-icon{padding-bottom:12px!important}.band.add_background_color_gray .light_slider_container:after,.band.add_background_color_gray .light_slider_container:before{border-color:#f5f5f5}.band.add_background_color_gray .light_slider_container .lSSlideOuter:after,.band.add_background_color_gray .light_slider_container .lSSlideOuter:before{background:#f5f5f5}html body{overflow:hidden}.main{height:100%}.feedback{position:fixed;bottom:40px;left:30px}.feedback span{margin-right:8px}.App{text-align:center}.App-logo{height:40vmin;pointer-events:none}@media(prefers-reduced-motion:no-preference){.App-logo{animation:App-logo-spin infinite 20s linear}}.App-header{background-color:#282c34;min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:calc(10px + 2vmin);color:#fff}.App-link{color:#61dafb}@keyframes App-logo-spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}#overlay{position:fixed;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:#00000080;z-index:2;transition:opacity .5s ease-out,visibility .5s ease-out;visibility:visible}label{font-weight:400;font-size:18px;margin-bottom:10px}.has-feedback label~.form-control-feedback{top:35px}.card{position:absolute;border:none;background:none;right:100%}.card.react-draggable-dragging .card-body{box-shadow:0 0 10px #666}.card-body{cursor:move;display:flex;align-items:center;border-radius:8px;padding:0 4px;background:#fff;border:1px solid #bfbfbf;transition:box-shadow .15s linear;box-shadow:0 0 12px #00000026}.card-body .trigger-btn{border:1px solid transparent;background:none;border-radius:2px;outline:none;position:relative;height:20px;margin:2px 4px;padding:0 2px}.card-body .trigger-btn:active,.card-body .trigger-btn:focus{background:#6d6d6d59;box-shadow:inset 0 1px #00000026}.card-body .trigger-btn:hover{background:#6d6d6d33}.drag-handle{width:10px;height:18px;background:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%205%2010'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:%236c99d0;}%3c/style%3e%3c/defs%3e%3ccircle%20class='cls-1'%20cx='1'%20cy='1'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='4'%20cy='1'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='1'%20cy='5'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='1'%20cy='9'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='4'%20cy='5'%20r='1'/%3e%3ccircle%20class='cls-1'%20cx='4'%20cy='9'%20r='1'/%3e%3c/svg%3e") center no-repeat;background-size:9px}.icon-custom-trigger{width:23px;height:19px;background-repeat:no-repeat}.trigger-tutorial-icon,.alert-success .icon-custom-trigger{background-image:url(../media/trigger-ok.Dzg8OIrk.svg)}.trigger-tutorial .icon{margin-bottom:-4px;display:inline-block}.alert-danger .icon-custom-trigger{background-image:url(../media/trigger-error.QEdsGL-m.svg)}.card-body:focus,.card-body:active,.card-body:hover{opacity:1}:root{--tutorial-width: 340px;--tutorial-arrow-size: 8px}.trigger-tutorial{color:#000;position:absolute;width:var(--tutorial-width);padding:15px;-webkit-user-select:none;user-select:none;margin-top:var(--tutorial-arrow-size);right:-143px}.trigger-tutorial p:last-of-type{margin-bottom:5px}.trigger-tutorial:before{content:"";display:block;width:calc(2 * var(--tutorial-arrow-size));height:calc(2 * var(--tutorial-arrow-size));position:absolute;background:url("data:image/svg+xml,%3csvg%20id='main'%20data-name='main'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cpolygon%20points='16,16%201,31%2031,31'%20style='fill:%20%23fff;%20stroke:%20rgba(0,0,0,0.2);%20stroke-width:%203px'%20/%3e%3cline%20x1='2'%20y1='31'%20x2='30'%20y2='31'%20style='stroke:%20%23fff;%20stroke-width:%203px'%20/%3e%3c/svg%3e") no-repeat;left:calc(var(--tutorial-width) / 2 - var(--tutorial-arrow-size));top:calc(-2 * var(--tutorial-arrow-size))}div#MatlabJsd{height:100%}#MatlabJsd iframe{border:0;height:100%;width:100%}iframe{border:0px;height:380px;width:100%}label{padding-left:5px}p#LicensingGathererNote{margin:15px 0 0}#controls{display:flex;justify-content:space-evenly;overflow:auto}#controls .btn{display:flex;align-items:center;width:120px;min-width:100px;padding:10px 5px}#controls .btn.btn_color_blue{border-width:2px}#controls.labels-on-top .btn{flex-direction:column}#controls .btn span[class*=icon-custom-]{--size: 32px;width:var(--size);height:var(--size);background-repeat:no-repeat;margin-right:4px}#controls.labels-on-top .btn span[class*=icon-custom-]{margin:0 -2px 4px 0;display:block}#controls .btn-label{font-size:13px}.icon-custom-restart{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='-1245.17'%20y1='-78.08'%20x2='-1245.17'%20y2='-92.11'%20gradientTransform='translate(-1222%20-64)%20rotate(180)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='23.07'%20y1='28.61'%20x2='23.07'%20y2='13.18'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpath%20class='cls-3'%20d='M20.61,23.16l-2.27,2.4.47.5a6.4,6.4,0,0,0,9.36,0l0,0a7.28,7.28,0,0,0,0-9.93,6.39,6.39,0,0,0-8.86-.51L18,14.18l-1.81,7.15L23,19.42l-1.3-1.37a3.32,3.32,0,0,1,4.3.49,3.73,3.73,0,0,1,0,5.11,3.39,3.39,0,0,1-2.45,1.06,3.3,3.3,0,0,1-2.43-1.06Z'/%3e%3c/svg%3e")}.icon-custom-start{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='24.5'%20y1='13.95'%20x2='24.5'%20y2='27.77'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='24.78'%20y1='28.63'%20x2='24.78'%20y2='13.14'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpolygon%20class='cls-3'%20points='18%2013.95%2018%2027.77%2031%2020.36%2018%2013.95'/%3e%3c/svg%3e")}.icon-custom-stop{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}.cls-4{fill:url(%23Blue_Gradient_2);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='23.29'%20y1='13.73'%20x2='23.29'%20y2='27.97'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='23.29'%20y1='28.47'%20x2='23.29'%20y2='13.23'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_2'%20x1='23.29'%20y1='23.22'%20x2='23.29'%20y2='18.48'%20xlink:href='%23Blue_Gradient_'/%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3ccircle%20class='cls-3'%20cx='23.29'%20cy='20.85'%20r='7.12'/%3e%3crect%20class='cls-4'%20x='20.92'%20y='18.48'%20width='4.75'%20height='4.75'/%3e%3c/svg%3e")}.icon-custom-sign-out{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='21.2'%20y1='14.36'%20x2='21.2'%20y2='27.47'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='21.32'%20y1='28.61'%20x2='21.32'%20y2='13.23'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpolyline%20class='cls-3'%20points='13.73%2018.69%2022.02%2018.74%2022.02%2014.36%2029.16%2020.92%2022.02%2027.47%2022.02%2023.12%2013.27%2023.12%2013.25%2018.2'/%3e%3c/svg%3e")}.icon-custom-shutdown{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3,.cls-4{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}.cls-4{fill:url(%23Light_Blue_Gradient_2);stroke:url(%23Blue_Gradient_2);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='-1761.33'%20y1='-365.39'%20x2='-1774.31'%20y2='-366.68'%20gradientTransform='matrix(0,%20-1.05,%201.04,%200,%20400.64,%20-1829.66)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='242.54'%20y1='1.89'%20x2='228.38'%20y2='0.49'%20gradientTransform='matrix(0,%201.05,%20-1.04,%200,%2020.78,%20-225.56)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Light_Blue_Gradient_2'%20x1='-11.48'%20y1='-188.04'%20x2='-11.48'%20y2='-185.37'%20gradientTransform='translate(198.71%205.81)%20rotate(-90)%20scale(0.91%200.96)'%20xlink:href='%23Light_Blue_Gradient_'/%3e%3clinearGradient%20id='Blue_Gradient_2'%20x1='-12.24'%20y1='-184.12'%20x2='-10.72'%20y2='-189.29'%20gradientTransform='translate(198.71%205.81)%20rotate(-90)%20scale(0.91%200.96)'%20xlink:href='%23Blue_Gradient_'/%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3cpath%20class='cls-3'%20d='M22.2,17.31,23,18.73a3.64,3.64,0,0,1-.62,4.52,4,4,0,0,1-5.54,0,3.74,3.74,0,0,1-1.23-2.66,5.41,5.41,0,0,1,1.17-3l-.2-.24-2.34-2.62L14,15c-2.43,2.68-2.74,7.89.18,10.73l0,0a7.88,7.88,0,0,0,10.78,0c3.34-3.27,2.44-9-.24-11l-2.57,3.16'/%3e%3crect%20class='cls-4'%20x='18.22'%20y='13.71'%20width='2.57'%20height='5.14'/%3e%3c/svg%3e")}.icon-custom-feedback{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3,.cls-6{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:%23f1abc2;stroke:url(%23rubber_outline);}.cls-4{fill:%23c1b49a;}.cls-5{fill:url(%23linear-gradient);}.cls-6{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='rubber_outline'%20x1='61.99'%20y1='-2.03'%20x2='66.52'%20y2='-0.76'%20gradientTransform='translate(-37.48%2017.4)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.04'%20stop-color='%23e56691'/%3e%3cstop%20offset='0.99'%20stop-color='%236d0538'/%3e%3c/linearGradient%3e%3clinearGradient%20id='linear-gradient'%20x1='-330.35'%20y1='-327.4'%20x2='-332.91'%20y2='-329.97'%20gradientTransform='matrix(0.7,%20-0.71,%20-0.71,%20-0.7,%2013.67,%20-440.73)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.06'%20stop-color='%2358595b'/%3e%3cstop%20offset='0.98'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='55.23'%20y1='-4.61'%20x2='55.23'%20y2='-1.36'%20gradientTransform='translate(-28.26%2023.65)%20scale(0.91%200.96)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='54.08'%20y1='0.93'%20x2='56.38'%20y2='-6.9'%20gradientTransform='translate(-28.26%2023.65)%20scale(0.91%200.96)'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.44.5H21.56a.89.89,0,0,1,.94.84V21.56a.89.89,0,0,1-.84.94H1.44a.89.89,0,0,1-.94-.84V1.44A.89.89,0,0,1,1.34.5Z'/%3e%3crect%20class='cls-2'%20x='1'%20y='1'%20width='21'%20height='5'/%3e%3crect%20class='cls-3'%20x='25.4'%20y='14.44'%20width='2.73'%20height='3.12'%20transform='translate(-3.39%2023.93)%20rotate(-45.6)'/%3e%3cpolygon%20class='cls-4'%20points='18.54%2026.59%2015.36%2027.75%2016.43%2024.52%2018.54%2026.59'/%3e%3cpolygon%20class='cls-5'%20points='15.89%2027.25%2016.71%2024.8%2015.97%2024.08%2014.57%2028.47%2018.92%2026.96%2018.18%2026.24%2015.89%2027.25'/%3e%3crect%20class='cls-6'%20x='15.95'%20y='19.22'%20width='12.27'%20height='3.12'%20transform='translate(-8.21%2022.02)%20rotate(-45.6)'/%3e%3c/svg%3e")}.icon-custom-help{background-image:url("data:image/svg+xml,%3csvg%20id='Layer_1'%20data-name='Layer%201'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20viewBox='0%200%2032%2032'%3e%3cdefs%3e%3cstyle%3e.cls-1{fill:none;stroke:%23706f6f;}.cls-1,.cls-3{stroke-miterlimit:10;}.cls-2{fill:%239d9d9c;}.cls-3{fill:url(%23Light_Blue_Gradient_);stroke:url(%23Blue_Gradient_);}%3c/style%3e%3clinearGradient%20id='Light_Blue_Gradient_'%20x1='21.37'%20y1='13.65'%20x2='21.37'%20y2='28.01'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.12'%20stop-color='%23d9f0fc'/%3e%3cstop%20offset='0.99'%20stop-color='%235e99c5'/%3e%3c/linearGradient%3e%3clinearGradient%20id='Blue_Gradient_'%20x1='21.34'%20y1='28.51'%20x2='21.34'%20y2='13.15'%20gradientUnits='userSpaceOnUse'%3e%3cstop%20offset='0.09'%20stop-color='%23143253'/%3e%3cstop%20offset='0.99'%20stop-color='%236199bc'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath%20class='cls-1'%20d='M1.56.43H21.68a.89.89,0,0,1,.94.84V21.49a.89.89,0,0,1-.84.94H1.56a.89.89,0,0,1-.94-.84V1.37A.89.89,0,0,1,1.46.43Z'/%3e%3crect%20class='cls-2'%20x='1.12'%20y='0.93'%20width='21'%20height='5'/%3e%3cpath%20class='cls-3'%20d='M20.5,24.53c0-.23,0-.4,0-.52a4.89,4.89,0,0,1,.28-1.76,4.19,4.19,0,0,1,.69-1.13,12.72,12.72,0,0,1,1.25-1.2,6,6,0,0,0,1.17-1.27,2.06,2.06,0,0,0,.27-1,2.42,2.42,0,0,0-.79-1.78,2.69,2.69,0,0,0-1.94-.76,2.62,2.62,0,0,0-1.85.69,3.63,3.63,0,0,0-1,2.17l-1.78-.22a4.57,4.57,0,0,1,1.43-3,4.57,4.57,0,0,1,3.14-1,4.7,4.7,0,0,1,3.3,1.13,3.54,3.54,0,0,1,1.24,2.72,3.46,3.46,0,0,1-.44,1.71A8,8,0,0,1,23.8,21.1a8.5,8.5,0,0,0-1.11,1.11,2.47,2.47,0,0,0-.38.82,6.26,6.26,0,0,0-.15,1.5ZM20.39,28V26h2v2Z'/%3e%3c/svg%3e")}#information .alert:not(.error-container,.warnings-container){padding:0;margin-bottom:0;background:#fff}#information .error-msg,.warnings-msg{white-space:pre;font:10pt monospace}#information .error-container.alert,.warnings-container.alert{border-radius:0;margin:5px 20px;padding:10px}#information .error-container.alert p,.warnings-container.alert p{margin:0}#information .error-container.alert .error-text,.warnings-container.alert .warnings-text{margin-left:30px}#information .error-logs-container .error-container.alert,.warnings-container .warnings-container.alert{padding:0}#information .error-msg,.warnings-msg{padding:10px;max-height:200px;overflow:auto}#information .error-logs-container .warnings-container .expand_trigger{padding:10px 5px 5px 40px;font-size:15px}#information .expand_target{transition:max-height .2s ease-out,border-color .2s ease-in;overflow:hidden;max-height:200px}#information .expand_target.collapsed{max-height:0;border-color:#fff}#spinner{--spinner-size: 22px;border:4px solid rgba(0,0,0,.1);border-top:4px solid #09f;border-radius:50%;width:var(--spinner-size);height:var(--spinner-size);margin-right:4px;animation:spin 2s linear infinite;float:left}#icon-small{margin-left:3px;float:none;color:green}#token{width:15ch;margin-right:1rem}#token-form{margin-top:1rem}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.alert table td{padding:4px}.alert table td:first-child{padding-right:20px;padding-left:0;white-space:nowrap}.alert table td:nth-child(2){white-space:normal}@media(min-width:768px){.modal-dialog{width:700px}}.passive-link{color:#888;text-decoration:underline;cursor:pointer}.flex-item-1{flex-basis:30%;padding:.2rem;align-items:center}.flex-item-2{flex-basis:70%;padding:.2rem;align-items:center}.help p[class*=icon-]{background-repeat:no-repeat;background-size:32px;background-position:left 4px;padding-left:40px;min-height:36px;margin-bottom:10px}#error .alert{padding:0;margin-bottom:0;border-radius:10px}#error .modal-body pre{background-color:#fff0;border:none;font-family:inherit;font-size:15px;white-space:pre-wrap}#error .modal-header{padding-left:45px}#error .alert .alert_heading{font-size:18px;margin-bottom:0}#error .alert .error-msg{color:#b7312c;white-space:pre;font:10pt monospace}#information .alert:not(.error-container){padding:0;margin-bottom:0;background:#fff}#information .modal-header{padding-left:45px}.modal-content,.alert{border-radius:10px}#information .details{margin:0 30px}#information .alert .alert_heading{font-size:18px;margin-bottom:0}.flex-container{display:flex;margin-bottom:1rem;align-items:center}.token-btn{height:2em;padding-top:5px;padding-bottom:.3em;max-width:10ch}.btn{background-color:#3391ba}#resume-button{color:#fff}