
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_bc59c437e7b4508310955758.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4fd5605d752afcaa00d4d5e7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1185d3e8bd27ffa9031ac216.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b1f67bccfcf0d0efe18b1981.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.023000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b2a4c0dad89668ebaa7bc412.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1097c29971b2ed6393b7cfcc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2650010bfcf54a91f8722cd4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.025000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a07cb13748dae5c0992763b3.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.137000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8a5d08ffd117fa899972dfb5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_28858e6879a70f73b9e461d5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1aacf9d70703687512649ad4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a5918c5083ecfa630c65add9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5a9af43f2ab649ed38d1a480.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9c8e5774ed456bb73c172d72.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_501e9163b77ae9de8406b172.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_994599ac0180059f9d9c3225.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m34{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3e{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250360,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250394,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250550,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250917,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251160,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251221,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251258,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251269,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251546,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251546,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251546,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251885,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251948,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252096,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252096,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252096,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252115,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252269,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252352,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252421,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.252510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252510,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252519,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.252552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252552,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252660,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.252667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252667,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252912,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253183,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253192,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253383,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253575,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253696,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253912,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253927,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254098,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254802,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254933,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254958,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.255065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255065,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255145,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.255233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255233,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255400,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.255437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255437,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255450,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.255536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255536,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255538,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.255558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255558,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.255688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255688,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.255827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255827,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.256029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256029,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.256048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256048,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256179,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.256208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256208,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.256404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256404,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.256527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256527,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.256912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256912,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.257017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257017,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.257029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257029,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.257063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257063,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.257469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257469,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.257496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257496,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257600,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257675,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.257838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257838,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257985,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.258210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258210,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.258292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258292,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.258727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258727,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258860,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.258933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258933,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259625,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.259654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259654,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.259663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259663,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.259742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259742,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.259798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259798,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-1.399800px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls3d{letter-spacing:-0.480000px;}
.ls34{letter-spacing:-0.324000px;}
.ls38{letter-spacing:-0.316800px;}
.ls11{letter-spacing:-0.309600px;}
.ls26{letter-spacing:-0.295200px;}
.ls55{letter-spacing:-0.280800px;}
.ls35{letter-spacing:-0.273600px;}
.ls12{letter-spacing:-0.266400px;}
.ls13{letter-spacing:-0.252000px;}
.ls29{letter-spacing:-0.230400px;}
.ls4b{letter-spacing:-0.223200px;}
.ls24{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.208800px;}
.ls5c{letter-spacing:-0.204000px;}
.ls47{letter-spacing:-0.194400px;}
.ls5d{letter-spacing:-0.192000px;}
.ls43{letter-spacing:-0.187200px;}
.ls44{letter-spacing:-0.180000px;}
.ls5a{letter-spacing:-0.174000px;}
.ls54{letter-spacing:-0.129600px;}
.ls37{letter-spacing:-0.122400px;}
.ls53{letter-spacing:-0.115200px;}
.ls45{letter-spacing:-0.100800px;}
.ls36{letter-spacing:-0.079200px;}
.ls49{letter-spacing:-0.072000px;}
.ls4a{letter-spacing:-0.064800px;}
.ls31{letter-spacing:-0.057600px;}
.lsd{letter-spacing:-0.050400px;}
.lse{letter-spacing:-0.043200px;}
.ls59{letter-spacing:-0.042000px;}
.ls10{letter-spacing:-0.036000px;}
.ls57{letter-spacing:-0.030000px;}
.lsf{letter-spacing:-0.028800px;}
.ls56{letter-spacing:-0.024000px;}
.ls27{letter-spacing:-0.021600px;}
.ls58{letter-spacing:-0.018000px;}
.ls28{letter-spacing:-0.014400px;}
.ls3a{letter-spacing:-0.007200px;}
.ls0{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.006000px;}
.ls3{letter-spacing:0.007200px;}
.ls4f{letter-spacing:0.012000px;}
.ls8{letter-spacing:0.014400px;}
.ls5f{letter-spacing:0.018000px;}
.ls2a{letter-spacing:0.021600px;}
.ls4d{letter-spacing:0.024000px;}
.ls1e{letter-spacing:0.028800px;}
.ls5{letter-spacing:0.036000px;}
.ls52{letter-spacing:0.042000px;}
.ls4{letter-spacing:0.043200px;}
.ls14{letter-spacing:0.050400px;}
.lsc{letter-spacing:0.057600px;}
.ls5e{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.064800px;}
.ls30{letter-spacing:0.072000px;}
.ls51{letter-spacing:0.078000px;}
.ls46{letter-spacing:0.083735px;}
.ls9{letter-spacing:0.086400px;}
.ls16{letter-spacing:0.093600px;}
.ls4c{letter-spacing:0.096000px;}
.ls7{letter-spacing:0.100800px;}
.ls22{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.115200px;}
.ls50{letter-spacing:0.120000px;}
.ls2b{letter-spacing:0.122400px;}
.ls6{letter-spacing:0.129600px;}
.ls23{letter-spacing:0.136800px;}
.ls2d{letter-spacing:0.144000px;}
.ls1d{letter-spacing:0.151200px;}
.ls15{letter-spacing:0.158400px;}
.ls2{letter-spacing:0.165600px;}
.ls1a{letter-spacing:0.187200px;}
.ls19{letter-spacing:0.194400px;}
.ls2f{letter-spacing:0.208800px;}
.ls2e{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.223200px;}
.lsa{letter-spacing:0.237600px;}
.ls40{letter-spacing:0.244800px;}
.ls3f{letter-spacing:0.259200px;}
.ls21{letter-spacing:0.266400px;}
.ls18{letter-spacing:0.288000px;}
.ls42{letter-spacing:0.295200px;}
.ls17{letter-spacing:0.302400px;}
.ls32{letter-spacing:0.309600px;}
.ls20{letter-spacing:0.324000px;}
.ls1f{letter-spacing:0.338400px;}
.ls41{letter-spacing:0.352800px;}
.ls3c{letter-spacing:0.374400px;}
.ls61{letter-spacing:0.390000px;}
.ls33{letter-spacing:0.403200px;}
.ls1c{letter-spacing:0.446400px;}
.ls3b{letter-spacing:0.475200px;}
.ls1b{letter-spacing:0.525600px;}
.ls60{letter-spacing:0.630000px;}
.ls5b{letter-spacing:1.032000px;}
.ls48{letter-spacing:1.245600px;}
.ls3e{letter-spacing:2.023200px;}
.ls39{letter-spacing:2.462400px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-72.000000px;}
.ws5{word-spacing:-66.000000px;}
.ws21{word-spacing:-60.000000px;}
.ws9{word-spacing:-54.000000px;}
.ws2{word-spacing:-19.728000px;}
.ws4{word-spacing:-18.084000px;}
.wsc{word-spacing:-18.028800px;}
.wsa{word-spacing:-18.000000px;}
.ws27{word-spacing:-15.078000px;}
.ws20{word-spacing:-15.000000px;}
.ws8{word-spacing:-14.796000px;}
.ws16{word-spacing:-12.600000px;}
.ws26{word-spacing:-2.076000px;}
.ws11{word-spacing:-1.800000px;}
.ws24{word-spacing:-1.722000px;}
.ws23{word-spacing:-1.500000px;}
.ws1b{word-spacing:-0.727200px;}
.ws14{word-spacing:-0.612000px;}
.ws1f{word-spacing:-0.547200px;}
.ws7{word-spacing:-0.396000px;}
.ws10{word-spacing:-0.309600px;}
.ws1{word-spacing:-0.108000px;}
.ws6{word-spacing:-0.072000px;}
.ws12{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:0.338400px;}
.ws15{word-spacing:0.828000px;}
.wsf{word-spacing:1.346400px;}
.ws1e{word-spacing:1.512000px;}
.ws13{word-spacing:1.926000px;}
.wsb{word-spacing:2.023200px;}
.ws1d{word-spacing:2.196000px;}
.ws1a{word-spacing:2.692800px;}
.ws29{word-spacing:2.886000px;}
.ws25{word-spacing:2.904000px;}
.ws22{word-spacing:2.922000px;}
.ws2d{word-spacing:2.940000px;}
.ws28{word-spacing:2.952000px;}
.ws2a{word-spacing:2.988000px;}
.wsd{word-spacing:3.528000px;}
.wse{word-spacing:3.564000px;}
.ws19{word-spacing:3.571200px;}
.ws18{word-spacing:3.585600px;}
.ws2c{word-spacing:7.854000px;}
.ws2b{word-spacing:12.630000px;}
.ws17{word-spacing:450.412800px;}
._13{margin-left:-40.755600px;}
._a{margin-left:-39.236400px;}
._21{margin-left:-32.952000px;}
._1{margin-left:-31.179600px;}
._1a{margin-left:-24.948000px;}
._25{margin-left:-22.759200px;}
._9{margin-left:-21.463200px;}
._6{margin-left:-20.037600px;}
._19{margin-left:-17.666400px;}
._28{margin-left:-16.383600px;}
._1b{margin-left:-15.098400px;}
._27{margin-left:-14.079600px;}
._18{margin-left:-8.776800px;}
._14{margin-left:-7.207200px;}
._5{margin-left:-5.411400px;}
._c{margin-left:-4.244400px;}
._4{margin-left:-3.112800px;}
._3{margin-left:-1.375200px;}
._2{width:1.566000px;}
._8{width:2.764800px;}
._7{width:3.942000px;}
._b{width:5.576400px;}
._d{width:6.818400px;}
._11{width:8.082000px;}
._10{width:9.151200px;}
._f{width:10.526400px;}
._29{width:12.630000px;}
._15{width:28.231200px;}
._16{width:29.635200px;}
._e{width:44.445600px;}
._12{width:46.944000px;}
._17{width:48.045600px;}
._26{width:172.086000px;}
._1c{width:242.524800px;}
._1d{width:330.259200px;}
._1e{width:446.625600px;}
._24{width:586.308000px;}
._20{width:601.068000px;}
._0{width:666.276000px;}
._22{width:672.678000px;}
._1f{width:675.618000px;}
._23{width:731.802000px;}
.fc5{color:rgb(101,98,99);}
.fc4{color:rgb(91,135,68);}
.fc3{color:rgb(221,68,32);}
.fc2{color:rgb(44,98,28);}
.fc6{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs9{font-size:50.400000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:8.256000px;}
.y23{bottom:33.768000px;}
.y5{bottom:66.525004px;}
.yee{bottom:82.098000px;}
.y77{bottom:89.907000px;}
.yd7{bottom:92.397000px;}
.y4{bottom:97.125005px;}
.y4a{bottom:103.737150px;}
.ye8{bottom:107.379150px;}
.y76{bottom:111.507000px;}
.yd6{bottom:113.997000px;}
.yed{bottom:125.251950px;}
.y49{bottom:125.337000px;}
.y75{bottom:133.107000px;}
.y10d{bottom:133.107150px;}
.yd5{bottom:135.597000px;}
.y22{bottom:139.264499px;}
.y48{bottom:146.937150px;}
.y10c{bottom:151.107150px;}
.y7f{bottom:154.707000px;}
.yec{bottom:155.753550px;}
.yd4{bottom:157.197000px;}
.ydf{bottom:166.218000px;}
.y47{bottom:168.537150px;}
.y10b{bottom:169.107150px;}
.y74{bottom:176.307000px;}
.yd3{bottom:178.797000px;}
.y10a{bottom:187.107150px;}
.yeb{bottom:187.347150px;}
.y46{bottom:190.137000px;}
.ye7{bottom:192.628350px;}
.ye4{bottom:195.877950px;}
.y19{bottom:196.933500px;}
.y7e{bottom:197.907000px;}
.ya9{bottom:198.196500px;}
.yd2{bottom:200.397000px;}
.y109{bottom:205.107150px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y45{bottom:211.737150px;}
.yea{bottom:217.627950px;}
.y73{bottom:219.507000px;}
.ye6{bottom:219.628350px;}
.ya8{bottom:219.796500px;}
.yd1{bottom:221.997000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y108{bottom:223.107150px;}
.y44{bottom:233.337000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.ye3{bottom:239.377950px;}
.y72{bottom:241.107000px;}
.ya7{bottom:241.396500px;}
.ye9{bottom:247.939950px;}
.y43{bottom:254.937000px;}
.ye2{bottom:255.877950px;}
.y107{bottom:259.107150px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y71{bottom:262.707000px;}
.ya6{bottom:262.996500px;}
.yd0{bottom:268.077150px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y42{bottom:276.537000px;}
.y106{bottom:277.107150px;}
.ye0{bottom:278.159550px;}
.y70{bottom:284.307000px;}
.ya5{bottom:284.596500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y105{bottom:295.107150px;}
.ycf{bottom:295.485150px;}
.ye5{bottom:297.127950px;}
.y41{bottom:298.137000px;}
.y6f{bottom:305.907000px;}
.ya4{bottom:306.196500px;}
.ye1{bottom:308.377950px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y104{bottom:313.107150px;}
.y40{bottom:319.737150px;}
.yce{bottom:322.893150px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y6e{bottom:327.507000px;}
.y103{bottom:331.107150px;}
.yde{bottom:334.707000px;}
.y3f{bottom:341.337150px;}
.y10{bottom:348.133500px;}
.y6d{bottom:349.107000px;}
.y102{bottom:349.107150px;}
.ya3{bottom:349.396500px;}
.ycd{bottom:350.301000px;}
.ydd{bottom:352.707000px;}
.y3e{bottom:362.937000px;}
.y101{bottom:367.107150px;}
.y6c{bottom:370.707000px;}
.y100{bottom:385.107150px;}
.yf{bottom:386.785499px;}
.ycc{bottom:387.720150px;}
.y6b{bottom:392.307000px;}
.ya2{bottom:392.596500px;}
.yff{bottom:403.107000px;}
.ycb{bottom:405.720150px;}
.y3d{bottom:406.137000px;}
.ye{bottom:408.044999px;}
.y6a{bottom:413.907000px;}
.ya1{bottom:414.196500px;}
.yfe{bottom:421.107000px;}
.y69{bottom:435.507000px;}
.ya0{bottom:435.796500px;}
.yfd{bottom:439.107000px;}
.yca{bottom:445.320000px;}
.y68{bottom:457.107000px;}
.y9f{bottom:457.396500px;}
.yc9{bottom:466.920000px;}
.y3c{bottom:470.937000px;}
.yfc{bottom:475.107000px;}
.y67{bottom:478.707000px;}
.y9e{bottom:478.996500px;}
.yd{bottom:484.864502px;}
.yc8{bottom:488.520000px;}
.yfb{bottom:493.107000px;}
.y66{bottom:500.307000px;}
.y9d{bottom:500.596500px;}
.yc{bottom:502.864502px;}
.yc7{bottom:510.120000px;}
.yfa{bottom:511.107000px;}
.y3b{bottom:514.137000px;}
.yb{bottom:520.864502px;}
.y65{bottom:521.907000px;}
.y9c{bottom:522.196500px;}
.yf9{bottom:529.107000px;}
.yc6{bottom:531.720000px;}
.ya{bottom:538.864499px;}
.y64{bottom:543.507000px;}
.y9b{bottom:543.796500px;}
.yf8{bottom:547.107000px;}
.yc5{bottom:553.320000px;}
.y9{bottom:556.864499px;}
.y3a{bottom:557.337000px;}
.y7d{bottom:565.107000px;}
.y9a{bottom:565.396500px;}
.yc4{bottom:574.920150px;}
.y39{bottom:578.937000px;}
.y63{bottom:586.707000px;}
.yf7{bottom:586.707150px;}
.y99{bottom:586.996500px;}
.y38{bottom:600.537000px;}
.y62{bottom:608.307000px;}
.y98{bottom:608.596500px;}
.yc3{bottom:618.120150px;}
.y37{bottom:622.137150px;}
.y61{bottom:629.907000px;}
.y97{bottom:630.196500px;}
.y36{bottom:643.737000px;}
.y8{bottom:645.510000px;}
.y60{bottom:651.507000px;}
.yf6{bottom:651.507150px;}
.y96{bottom:651.796500px;}
.yc2{bottom:661.320150px;}
.y35{bottom:665.337000px;}
.y7{bottom:666.771000px;}
.y5f{bottom:673.107000px;}
.yf5{bottom:673.107150px;}
.y95{bottom:673.396500px;}
.yc1{bottom:682.920150px;}
.y34{bottom:686.937000px;}
.y5e{bottom:694.707000px;}
.yf4{bottom:694.707150px;}
.y94{bottom:694.996500px;}
.yc0{bottom:704.520150px;}
.y33{bottom:708.537000px;}
.y5d{bottom:716.307000px;}
.yf3{bottom:716.307150px;}
.y93{bottom:716.596500px;}
.ybf{bottom:726.120000px;}
.y6{bottom:726.298500px;}
.y32{bottom:730.137150px;}
.y5c{bottom:737.907000px;}
.yf2{bottom:737.907150px;}
.y92{bottom:738.196500px;}
.ybe{bottom:747.720000px;}
.y31{bottom:751.737150px;}
.y3{bottom:752.599495px;}
.y124{bottom:754.386000px;}
.y5b{bottom:759.507000px;}
.yf1{bottom:759.507150px;}
.y91{bottom:759.796500px;}
.ybd{bottom:769.320000px;}
.y123{bottom:772.386000px;}
.y30{bottom:773.337000px;}
.y5a{bottom:781.107000px;}
.yf0{bottom:781.107150px;}
.y90{bottom:781.396500px;}
.y122{bottom:790.386150px;}
.ybc{bottom:790.920000px;}
.ydc{bottom:802.707000px;}
.y7c{bottom:802.707150px;}
.y8f{bottom:802.996650px;}
.y121{bottom:808.386000px;}
.ybb{bottom:812.520150px;}
.y2f{bottom:816.537000px;}
.y59{bottom:824.307000px;}
.y7b{bottom:824.307150px;}
.y8e{bottom:824.596500px;}
.y120{bottom:826.386150px;}
.yba{bottom:834.120000px;}
.y11f{bottom:844.386150px;}
.y7a{bottom:845.907000px;}
.y8d{bottom:846.196500px;}
.yb9{bottom:855.720000px;}
.y11e{bottom:862.386150px;}
.y58{bottom:867.507000px;}
.y8c{bottom:867.796500px;}
.yb8{bottom:877.320000px;}
.y2{bottom:879.369000px;}
.y11d{bottom:880.386150px;}
.y79{bottom:889.107000px;}
.y8b{bottom:889.396500px;}
.y11c{bottom:898.386150px;}
.yb7{bottom:898.920000px;}
.y2e{bottom:902.937150px;}
.ydb{bottom:910.707000px;}
.y78{bottom:910.707150px;}
.y8a{bottom:910.996500px;}
.y11b{bottom:916.386000px;}
.y2d{bottom:919.137150px;}
.y57{bottom:932.307000px;}
.y89{bottom:932.596500px;}
.y11a{bottom:934.386000px;}
.yb1{bottom:945.800400px;}
.y119{bottom:952.386000px;}
.y56{bottom:953.907000px;}
.y88{bottom:954.196500px;}
.y2c{bottom:956.937000px;}
.yb6{bottom:957.424800px;}
.y1{bottom:966.726000px;}
.y118{bottom:970.386000px;}
.y55{bottom:975.507000px;}
.y87{bottom:975.796500px;}
.y2b{bottom:976.737000px;}
.yac{bottom:981.393150px;}
.yb5{bottom:982.174800px;}
.y117{bottom:988.386000px;}
.y2a{bottom:996.537000px;}
.y54{bottom:997.107000px;}
.y86{bottom:997.396500px;}
.y116{bottom:1006.386000px;}
.yb4{bottom:1007.018400px;}
.y29{bottom:1016.337000px;}
.yaf{bottom:1017.050400px;}
.yda{bottom:1018.707000px;}
.y53{bottom:1018.707150px;}
.y85{bottom:1018.996500px;}
.y115{bottom:1024.386000px;}
.yb3{bottom:1032.049200px;}
.y52{bottom:1040.307000px;}
.y84{bottom:1040.596500px;}
.y114{bottom:1042.386000px;}
.yb2{bottom:1056.612000px;}
.y113{bottom:1060.386150px;}
.y51{bottom:1061.907000px;}
.y83{bottom:1062.196500px;}
.yef{bottom:1067.847150px;}
.y112{bottom:1078.386150px;}
.y28{bottom:1081.137000px;}
.yad{bottom:1081.456800px;}
.y50{bottom:1083.506700px;}
.yd9{bottom:1083.507000px;}
.y82{bottom:1083.796500px;}
.yb0{bottom:1089.050400px;}
.y111{bottom:1096.386150px;}
.y4f{bottom:1105.106700px;}
.yd8{bottom:1105.107000px;}
.y81{bottom:1105.396500px;}
.yae{bottom:1106.300400px;}
.y27{bottom:1110.837000px;}
.y110{bottom:1114.386900px;}
.y4e{bottom:1126.706700px;}
.y10f{bottom:1132.386900px;}
.yab{bottom:1132.628550px;}
.y4d{bottom:1148.306700px;}
.y80{bottom:1148.596650px;}
.y10e{bottom:1150.386900px;}
.yaa{bottom:1150.628550px;}
.y25{bottom:1219.504200px;}
.y4b{bottom:1219.716300px;}
.y4c{bottom:1244.453400px;}
.y24{bottom:1244.803350px;}
.h8{height:32.130000px;}
.h19{height:33.360000px;}
.hb{height:36.000000px;}
.h9{height:39.648000px;}
.hc{height:40.500000px;}
.h17{height:40.664062px;}
.h15{height:41.400000px;}
.h1b{height:44.223047px;}
.h3{height:48.195000px;}
.h13{height:48.796875px;}
.h14{height:49.248000px;}
.h10{height:49.500000px;}
.h16{height:49.992188px;}
.h18{height:52.646484px;}
.h11{height:54.000000px;}
.h7{height:56.640000px;}
.h6{height:59.472000px;}
.hf{height:60.192000px;}
.h12{height:63.175781px;}
.he{height:67.608000px;}
.h2{height:67.968000px;}
.h1a{height:67.983047px;}
.h1c{height:67.983647px;}
.hd{height:82.188000px;}
.h5{height:96.288000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:69.310500px;}
.x10{left:97.795200px;}
.x1{left:102.045000px;}
.x1b{left:104.173200px;}
.x2{left:106.297500px;}
.x11{left:123.306600px;}
.xe{left:135.185550px;}
.x27{left:144.566850px;}
.x9{left:166.336500px;}
.xa{left:187.909500px;}
.x4{left:203.484001px;}
.x6{left:223.711500px;}
.x1c{left:226.715100px;}
.x1d{left:244.121850px;}
.x24{left:250.120650px;}
.x13{left:281.064600px;}
.x1a{left:295.485000px;}
.x14{left:303.408600px;}
.xd{left:308.280600px;}
.x18{left:309.408600px;}
.x19{left:315.408600px;}
.x1e{left:320.185050px;}
.x5{left:333.460500px;}
.x23{left:339.683850px;}
.xc{left:345.694350px;}
.x1f{left:362.559450px;}
.xb{left:366.142500px;}
.x25{left:371.929500px;}
.x26{left:378.387000px;}
.x17{left:381.783000px;}
.xf{left:390.552900px;}
.x15{left:404.283000px;}
.x3{left:454.959000px;}
.x20{left:468.309450px;}
.x21{left:509.559450px;}
.x16{left:538.533000px;}
.x22{left:611.183850px;}
.x7{left:822.105150px;}
.x12{left:835.780500px;}
@media print{
.v1{vertical-align:-1.244267pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls3d{letter-spacing:-0.426667pt;}
.ls34{letter-spacing:-0.288000pt;}
.ls38{letter-spacing:-0.281600pt;}
.ls11{letter-spacing:-0.275200pt;}
.ls26{letter-spacing:-0.262400pt;}
.ls55{letter-spacing:-0.249600pt;}
.ls35{letter-spacing:-0.243200pt;}
.ls12{letter-spacing:-0.236800pt;}
.ls13{letter-spacing:-0.224000pt;}
.ls29{letter-spacing:-0.204800pt;}
.ls4b{letter-spacing:-0.198400pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.185600pt;}
.ls5c{letter-spacing:-0.181333pt;}
.ls47{letter-spacing:-0.172800pt;}
.ls5d{letter-spacing:-0.170667pt;}
.ls43{letter-spacing:-0.166400pt;}
.ls44{letter-spacing:-0.160000pt;}
.ls5a{letter-spacing:-0.154667pt;}
.ls54{letter-spacing:-0.115200pt;}
.ls37{letter-spacing:-0.108800pt;}
.ls53{letter-spacing:-0.102400pt;}
.ls45{letter-spacing:-0.089600pt;}
.ls36{letter-spacing:-0.070400pt;}
.ls49{letter-spacing:-0.064000pt;}
.ls4a{letter-spacing:-0.057600pt;}
.ls31{letter-spacing:-0.051200pt;}
.lsd{letter-spacing:-0.044800pt;}
.lse{letter-spacing:-0.038400pt;}
.ls59{letter-spacing:-0.037333pt;}
.ls10{letter-spacing:-0.032000pt;}
.ls57{letter-spacing:-0.026667pt;}
.lsf{letter-spacing:-0.025600pt;}
.ls56{letter-spacing:-0.021333pt;}
.ls27{letter-spacing:-0.019200pt;}
.ls58{letter-spacing:-0.016000pt;}
.ls28{letter-spacing:-0.012800pt;}
.ls3a{letter-spacing:-0.006400pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.005333pt;}
.ls3{letter-spacing:0.006400pt;}
.ls4f{letter-spacing:0.010667pt;}
.ls8{letter-spacing:0.012800pt;}
.ls5f{letter-spacing:0.016000pt;}
.ls2a{letter-spacing:0.019200pt;}
.ls4d{letter-spacing:0.021333pt;}
.ls1e{letter-spacing:0.025600pt;}
.ls5{letter-spacing:0.032000pt;}
.ls52{letter-spacing:0.037333pt;}
.ls4{letter-spacing:0.038400pt;}
.ls14{letter-spacing:0.044800pt;}
.lsc{letter-spacing:0.051200pt;}
.ls5e{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.057600pt;}
.ls30{letter-spacing:0.064000pt;}
.ls51{letter-spacing:0.069333pt;}
.ls46{letter-spacing:0.074431pt;}
.ls9{letter-spacing:0.076800pt;}
.ls16{letter-spacing:0.083200pt;}
.ls4c{letter-spacing:0.085333pt;}
.ls7{letter-spacing:0.089600pt;}
.ls22{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.102400pt;}
.ls50{letter-spacing:0.106667pt;}
.ls2b{letter-spacing:0.108800pt;}
.ls6{letter-spacing:0.115200pt;}
.ls23{letter-spacing:0.121600pt;}
.ls2d{letter-spacing:0.128000pt;}
.ls1d{letter-spacing:0.134400pt;}
.ls15{letter-spacing:0.140800pt;}
.ls2{letter-spacing:0.147200pt;}
.ls1a{letter-spacing:0.166400pt;}
.ls19{letter-spacing:0.172800pt;}
.ls2f{letter-spacing:0.185600pt;}
.ls2e{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.198400pt;}
.lsa{letter-spacing:0.211200pt;}
.ls40{letter-spacing:0.217600pt;}
.ls3f{letter-spacing:0.230400pt;}
.ls21{letter-spacing:0.236800pt;}
.ls18{letter-spacing:0.256000pt;}
.ls42{letter-spacing:0.262400pt;}
.ls17{letter-spacing:0.268800pt;}
.ls32{letter-spacing:0.275200pt;}
.ls20{letter-spacing:0.288000pt;}
.ls1f{letter-spacing:0.300800pt;}
.ls41{letter-spacing:0.313600pt;}
.ls3c{letter-spacing:0.332800pt;}
.ls61{letter-spacing:0.346667pt;}
.ls33{letter-spacing:0.358400pt;}
.ls1c{letter-spacing:0.396800pt;}
.ls3b{letter-spacing:0.422400pt;}
.ls1b{letter-spacing:0.467200pt;}
.ls60{letter-spacing:0.560000pt;}
.ls5b{letter-spacing:0.917333pt;}
.ls48{letter-spacing:1.107200pt;}
.ls3e{letter-spacing:1.798400pt;}
.ls39{letter-spacing:2.188800pt;}
.ws3{word-spacing:-64.000000pt;}
.ws5{word-spacing:-58.666667pt;}
.ws21{word-spacing:-53.333333pt;}
.ws9{word-spacing:-48.000000pt;}
.ws2{word-spacing:-17.536000pt;}
.ws4{word-spacing:-16.074667pt;}
.wsc{word-spacing:-16.025600pt;}
.wsa{word-spacing:-16.000000pt;}
.ws27{word-spacing:-13.402667pt;}
.ws20{word-spacing:-13.333333pt;}
.ws8{word-spacing:-13.152000pt;}
.ws16{word-spacing:-11.200000pt;}
.ws26{word-spacing:-1.845333pt;}
.ws11{word-spacing:-1.600000pt;}
.ws24{word-spacing:-1.530667pt;}
.ws23{word-spacing:-1.333333pt;}
.ws1b{word-spacing:-0.646400pt;}
.ws14{word-spacing:-0.544000pt;}
.ws1f{word-spacing:-0.486400pt;}
.ws7{word-spacing:-0.352000pt;}
.ws10{word-spacing:-0.275200pt;}
.ws1{word-spacing:-0.096000pt;}
.ws6{word-spacing:-0.064000pt;}
.ws12{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.300800pt;}
.ws15{word-spacing:0.736000pt;}
.wsf{word-spacing:1.196800pt;}
.ws1e{word-spacing:1.344000pt;}
.ws13{word-spacing:1.712000pt;}
.wsb{word-spacing:1.798400pt;}
.ws1d{word-spacing:1.952000pt;}
.ws1a{word-spacing:2.393600pt;}
.ws29{word-spacing:2.565333pt;}
.ws25{word-spacing:2.581333pt;}
.ws22{word-spacing:2.597333pt;}
.ws2d{word-spacing:2.613333pt;}
.ws28{word-spacing:2.624000pt;}
.ws2a{word-spacing:2.656000pt;}
.wsd{word-spacing:3.136000pt;}
.wse{word-spacing:3.168000pt;}
.ws19{word-spacing:3.174400pt;}
.ws18{word-spacing:3.187200pt;}
.ws2c{word-spacing:6.981333pt;}
.ws2b{word-spacing:11.226667pt;}
.ws17{word-spacing:400.366933pt;}
._13{margin-left:-36.227200pt;}
._a{margin-left:-34.876800pt;}
._21{margin-left:-29.290667pt;}
._1{margin-left:-27.715200pt;}
._1a{margin-left:-22.176000pt;}
._25{margin-left:-20.230400pt;}
._9{margin-left:-19.078400pt;}
._6{margin-left:-17.811200pt;}
._19{margin-left:-15.703467pt;}
._28{margin-left:-14.563200pt;}
._1b{margin-left:-13.420800pt;}
._27{margin-left:-12.515200pt;}
._18{margin-left:-7.801600pt;}
._14{margin-left:-6.406400pt;}
._5{margin-left:-4.810133pt;}
._c{margin-left:-3.772800pt;}
._4{margin-left:-2.766933pt;}
._3{margin-left:-1.222400pt;}
._2{width:1.392000pt;}
._8{width:2.457600pt;}
._7{width:3.504000pt;}
._b{width:4.956800pt;}
._d{width:6.060800pt;}
._11{width:7.184000pt;}
._10{width:8.134400pt;}
._f{width:9.356800pt;}
._29{width:11.226667pt;}
._15{width:25.094400pt;}
._16{width:26.342400pt;}
._e{width:39.507200pt;}
._12{width:41.728000pt;}
._17{width:42.707200pt;}
._26{width:152.965333pt;}
._1c{width:215.577600pt;}
._1d{width:293.563733pt;}
._1e{width:397.000533pt;}
._24{width:521.162667pt;}
._20{width:534.282667pt;}
._0{width:592.245333pt;}
._22{width:597.936000pt;}
._1f{width:600.549333pt;}
._23{width:650.490667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs9{font-size:44.800000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:7.338667pt;}
.y23{bottom:30.016000pt;}
.y5{bottom:59.133337pt;}
.yee{bottom:72.976000pt;}
.y77{bottom:79.917333pt;}
.yd7{bottom:82.130667pt;}
.y4{bottom:86.333337pt;}
.y4a{bottom:92.210800pt;}
.ye8{bottom:95.448133pt;}
.y76{bottom:99.117333pt;}
.yd6{bottom:101.330667pt;}
.yed{bottom:111.335067pt;}
.y49{bottom:111.410667pt;}
.y75{bottom:118.317333pt;}
.y10d{bottom:118.317467pt;}
.yd5{bottom:120.530667pt;}
.y22{bottom:123.790666pt;}
.y48{bottom:130.610800pt;}
.y10c{bottom:134.317467pt;}
.y7f{bottom:137.517333pt;}
.yec{bottom:138.447600pt;}
.yd4{bottom:139.730667pt;}
.ydf{bottom:147.749333pt;}
.y47{bottom:149.810800pt;}
.y10b{bottom:150.317467pt;}
.y74{bottom:156.717333pt;}
.yd3{bottom:158.930667pt;}
.y10a{bottom:166.317467pt;}
.yeb{bottom:166.530800pt;}
.y46{bottom:169.010667pt;}
.ye7{bottom:171.225200pt;}
.ye4{bottom:174.113733pt;}
.y19{bottom:175.052000pt;}
.y7e{bottom:175.917333pt;}
.ya9{bottom:176.174667pt;}
.yd2{bottom:178.130667pt;}
.y109{bottom:182.317467pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y45{bottom:188.210800pt;}
.yea{bottom:193.447067pt;}
.y73{bottom:195.117333pt;}
.ye6{bottom:195.225200pt;}
.ya8{bottom:195.374667pt;}
.yd1{bottom:197.330667pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y108{bottom:198.317467pt;}
.y44{bottom:207.410667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.ye3{bottom:212.780400pt;}
.y72{bottom:214.317333pt;}
.ya7{bottom:214.574667pt;}
.ye9{bottom:220.391067pt;}
.y43{bottom:226.610667pt;}
.ye2{bottom:227.447067pt;}
.y107{bottom:230.317467pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y71{bottom:233.517333pt;}
.ya6{bottom:233.774667pt;}
.yd0{bottom:238.290800pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y42{bottom:245.810667pt;}
.y106{bottom:246.317467pt;}
.ye0{bottom:247.252933pt;}
.y70{bottom:252.717333pt;}
.ya5{bottom:252.974667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y105{bottom:262.317467pt;}
.ycf{bottom:262.653467pt;}
.ye5{bottom:264.113733pt;}
.y41{bottom:265.010667pt;}
.y6f{bottom:271.917333pt;}
.ya4{bottom:272.174667pt;}
.ye1{bottom:274.113733pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y104{bottom:278.317467pt;}
.y40{bottom:284.210800pt;}
.yce{bottom:287.016133pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y6e{bottom:291.117333pt;}
.y103{bottom:294.317467pt;}
.yde{bottom:297.517333pt;}
.y3f{bottom:303.410800pt;}
.y10{bottom:309.452000pt;}
.y6d{bottom:310.317333pt;}
.y102{bottom:310.317467pt;}
.ya3{bottom:310.574667pt;}
.ycd{bottom:311.378667pt;}
.ydd{bottom:313.517333pt;}
.y3e{bottom:322.610667pt;}
.y101{bottom:326.317467pt;}
.y6c{bottom:329.517333pt;}
.y100{bottom:342.317467pt;}
.yf{bottom:343.809333pt;}
.ycc{bottom:344.640133pt;}
.y6b{bottom:348.717333pt;}
.ya2{bottom:348.974667pt;}
.yff{bottom:358.317333pt;}
.ycb{bottom:360.640133pt;}
.y3d{bottom:361.010667pt;}
.ye{bottom:362.706666pt;}
.y6a{bottom:367.917333pt;}
.ya1{bottom:368.174667pt;}
.yfe{bottom:374.317333pt;}
.y69{bottom:387.117333pt;}
.ya0{bottom:387.374667pt;}
.yfd{bottom:390.317333pt;}
.yca{bottom:395.840000pt;}
.y68{bottom:406.317333pt;}
.y9f{bottom:406.574667pt;}
.yc9{bottom:415.040000pt;}
.y3c{bottom:418.610667pt;}
.yfc{bottom:422.317333pt;}
.y67{bottom:425.517333pt;}
.y9e{bottom:425.774667pt;}
.yd{bottom:430.990669pt;}
.yc8{bottom:434.240000pt;}
.yfb{bottom:438.317333pt;}
.y66{bottom:444.717333pt;}
.y9d{bottom:444.974667pt;}
.yc{bottom:446.990669pt;}
.yc7{bottom:453.440000pt;}
.yfa{bottom:454.317333pt;}
.y3b{bottom:457.010667pt;}
.yb{bottom:462.990669pt;}
.y65{bottom:463.917333pt;}
.y9c{bottom:464.174667pt;}
.yf9{bottom:470.317333pt;}
.yc6{bottom:472.640000pt;}
.ya{bottom:478.990666pt;}
.y64{bottom:483.117333pt;}
.y9b{bottom:483.374667pt;}
.yf8{bottom:486.317333pt;}
.yc5{bottom:491.840000pt;}
.y9{bottom:494.990666pt;}
.y3a{bottom:495.410667pt;}
.y7d{bottom:502.317333pt;}
.y9a{bottom:502.574667pt;}
.yc4{bottom:511.040133pt;}
.y39{bottom:514.610667pt;}
.y63{bottom:521.517333pt;}
.yf7{bottom:521.517467pt;}
.y99{bottom:521.774667pt;}
.y38{bottom:533.810667pt;}
.y62{bottom:540.717333pt;}
.y98{bottom:540.974667pt;}
.yc3{bottom:549.440133pt;}
.y37{bottom:553.010800pt;}
.y61{bottom:559.917333pt;}
.y97{bottom:560.174667pt;}
.y36{bottom:572.210667pt;}
.y8{bottom:573.786667pt;}
.y60{bottom:579.117333pt;}
.yf6{bottom:579.117467pt;}
.y96{bottom:579.374667pt;}
.yc2{bottom:587.840133pt;}
.y35{bottom:591.410667pt;}
.y7{bottom:592.685334pt;}
.y5f{bottom:598.317333pt;}
.yf5{bottom:598.317467pt;}
.y95{bottom:598.574667pt;}
.yc1{bottom:607.040133pt;}
.y34{bottom:610.610667pt;}
.y5e{bottom:617.517333pt;}
.yf4{bottom:617.517467pt;}
.y94{bottom:617.774667pt;}
.yc0{bottom:626.240133pt;}
.y33{bottom:629.810667pt;}
.y5d{bottom:636.717333pt;}
.yf3{bottom:636.717467pt;}
.y93{bottom:636.974667pt;}
.ybf{bottom:645.440000pt;}
.y6{bottom:645.598667pt;}
.y32{bottom:649.010800pt;}
.y5c{bottom:655.917333pt;}
.yf2{bottom:655.917467pt;}
.y92{bottom:656.174667pt;}
.ybe{bottom:664.640000pt;}
.y31{bottom:668.210800pt;}
.y3{bottom:668.977329pt;}
.y124{bottom:670.565333pt;}
.y5b{bottom:675.117333pt;}
.yf1{bottom:675.117467pt;}
.y91{bottom:675.374667pt;}
.ybd{bottom:683.840000pt;}
.y123{bottom:686.565333pt;}
.y30{bottom:687.410667pt;}
.y5a{bottom:694.317333pt;}
.yf0{bottom:694.317467pt;}
.y90{bottom:694.574667pt;}
.y122{bottom:702.565467pt;}
.ybc{bottom:703.040000pt;}
.ydc{bottom:713.517333pt;}
.y7c{bottom:713.517467pt;}
.y8f{bottom:713.774800pt;}
.y121{bottom:718.565333pt;}
.ybb{bottom:722.240133pt;}
.y2f{bottom:725.810667pt;}
.y59{bottom:732.717333pt;}
.y7b{bottom:732.717467pt;}
.y8e{bottom:732.974667pt;}
.y120{bottom:734.565467pt;}
.yba{bottom:741.440000pt;}
.y11f{bottom:750.565467pt;}
.y7a{bottom:751.917333pt;}
.y8d{bottom:752.174667pt;}
.yb9{bottom:760.640000pt;}
.y11e{bottom:766.565467pt;}
.y58{bottom:771.117333pt;}
.y8c{bottom:771.374667pt;}
.yb8{bottom:779.840000pt;}
.y2{bottom:781.661334pt;}
.y11d{bottom:782.565467pt;}
.y79{bottom:790.317333pt;}
.y8b{bottom:790.574667pt;}
.y11c{bottom:798.565467pt;}
.yb7{bottom:799.040000pt;}
.y2e{bottom:802.610800pt;}
.ydb{bottom:809.517333pt;}
.y78{bottom:809.517467pt;}
.y8a{bottom:809.774667pt;}
.y11b{bottom:814.565333pt;}
.y2d{bottom:817.010800pt;}
.y57{bottom:828.717333pt;}
.y89{bottom:828.974667pt;}
.y11a{bottom:830.565333pt;}
.yb1{bottom:840.711467pt;}
.y119{bottom:846.565333pt;}
.y56{bottom:847.917333pt;}
.y88{bottom:848.174667pt;}
.y2c{bottom:850.610667pt;}
.yb6{bottom:851.044267pt;}
.y1{bottom:859.312000pt;}
.y118{bottom:862.565333pt;}
.y55{bottom:867.117333pt;}
.y87{bottom:867.374667pt;}
.y2b{bottom:868.210667pt;}
.yac{bottom:872.349467pt;}
.yb5{bottom:873.044267pt;}
.y117{bottom:878.565333pt;}
.y2a{bottom:885.810667pt;}
.y54{bottom:886.317333pt;}
.y86{bottom:886.574667pt;}
.y116{bottom:894.565333pt;}
.yb4{bottom:895.127467pt;}
.y29{bottom:903.410667pt;}
.yaf{bottom:904.044800pt;}
.yda{bottom:905.517333pt;}
.y53{bottom:905.517467pt;}
.y85{bottom:905.774667pt;}
.y115{bottom:910.565333pt;}
.yb3{bottom:917.377067pt;}
.y52{bottom:924.717333pt;}
.y84{bottom:924.974667pt;}
.y114{bottom:926.565333pt;}
.yb2{bottom:939.210667pt;}
.y113{bottom:942.565467pt;}
.y51{bottom:943.917333pt;}
.y83{bottom:944.174667pt;}
.yef{bottom:949.197467pt;}
.y112{bottom:958.565467pt;}
.y28{bottom:961.010667pt;}
.yad{bottom:961.294933pt;}
.y50{bottom:963.117067pt;}
.yd9{bottom:963.117333pt;}
.y82{bottom:963.374667pt;}
.yb0{bottom:968.044800pt;}
.y111{bottom:974.565467pt;}
.y4f{bottom:982.317067pt;}
.yd8{bottom:982.317333pt;}
.y81{bottom:982.574667pt;}
.yae{bottom:983.378133pt;}
.y27{bottom:987.410667pt;}
.y110{bottom:990.566133pt;}
.y4e{bottom:1001.517067pt;}
.y10f{bottom:1006.566133pt;}
.yab{bottom:1006.780933pt;}
.y4d{bottom:1020.717067pt;}
.y80{bottom:1020.974800pt;}
.y10e{bottom:1022.566133pt;}
.yaa{bottom:1022.780933pt;}
.y25{bottom:1084.003733pt;}
.y4b{bottom:1084.192267pt;}
.y4c{bottom:1106.180800pt;}
.y24{bottom:1106.491867pt;}
.h8{height:28.560000pt;}
.h19{height:29.653333pt;}
.hb{height:32.000000pt;}
.h9{height:35.242667pt;}
.hc{height:36.000000pt;}
.h17{height:36.145833pt;}
.h15{height:36.800000pt;}
.h1b{height:39.309375pt;}
.h3{height:42.840000pt;}
.h13{height:43.375000pt;}
.h14{height:43.776000pt;}
.h10{height:44.000000pt;}
.h16{height:44.437500pt;}
.h18{height:46.796875pt;}
.h11{height:48.000000pt;}
.h7{height:50.346667pt;}
.h6{height:52.864000pt;}
.hf{height:53.504000pt;}
.h12{height:56.156250pt;}
.he{height:60.096000pt;}
.h2{height:60.416000pt;}
.h1a{height:60.429375pt;}
.h1c{height:60.429908pt;}
.hd{height:73.056000pt;}
.h5{height:85.589333pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:61.609333pt;}
.x10{left:86.929067pt;}
.x1{left:90.706667pt;}
.x1b{left:92.598400pt;}
.x2{left:94.486667pt;}
.x11{left:109.605867pt;}
.xe{left:120.164933pt;}
.x27{left:128.503867pt;}
.x9{left:147.854667pt;}
.xa{left:167.030667pt;}
.x4{left:180.874667pt;}
.x6{left:198.854667pt;}
.x1c{left:201.524533pt;}
.x1d{left:216.997200pt;}
.x24{left:222.329467pt;}
.x13{left:249.835200pt;}
.x1a{left:262.653333pt;}
.x14{left:269.696533pt;}
.xd{left:274.027200pt;}
.x18{left:275.029867pt;}
.x19{left:280.363200pt;}
.x1e{left:284.608933pt;}
.x5{left:296.409333pt;}
.x23{left:301.941200pt;}
.xc{left:307.283867pt;}
.x1f{left:322.275067pt;}
.xb{left:325.460000pt;}
.x25{left:330.604000pt;}
.x26{left:336.344000pt;}
.x17{left:339.362667pt;}
.xf{left:347.158133pt;}
.x15{left:359.362667pt;}
.x3{left:404.408000pt;}
.x20{left:416.275067pt;}
.x21{left:452.941733pt;}
.x16{left:478.696000pt;}
.x22{left:543.274533pt;}
.x7{left:730.760133pt;}
.x12{left:742.916000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  