
    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_6c5a9517f2b69bf3fe21d3c3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.890137;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_30c56e4e340517addca9539b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_0f1cd547789b7d8ae2bc0402.woff')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_d2447c3cf8692986d1a2b04d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_62e5c0807f45b045c5d7d754.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_52404484847577b05542c60f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_ba5d104b293ad4c2d020caf5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.726562;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_769d70f6dbb58e1c2affd9e3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.793457;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_f6ec6eb7e8d813d69ba8c2e2.woff')format("woff");}.ff9{font-family:ff9;line-height:0.935547;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_edcf8d3ba116031f97868b94.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_e7d54c3f82a2048620e5f203.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_7d6c418ff0d40de0d4a9c537.woff')format("woff");}.ffc{font-family:ffc;line-height:0.940430;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_54850d5bd999232c1b312dad.woff')format("woff");}.ffd{font-family:ffd;line-height:0.973145;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_bd436e742cdf2d6e0ef3b331.woff')format("woff");}.ffe{font-family:ffe;line-height:0.973145;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_f11fad581dce910e65ff5b7c.woff')format("woff");}.fff{font-family:fff;line-height:0.973145;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_bdb1b9059a74d59019f748a2.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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_6ec7f3e7d752c183473ed18e.woff')format("woff");}.ff11{font-family:ff11;line-height:0.916992;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_f3a72b7e572e29ecb31c2751.woff')format("woff");}.ff12{font-family:ff12;line-height:0.940918;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:ff13;src:url('chunks/assets/font_49f238bb08444813f0ef4a09.woff')format("woff");}.ff13{font-family:ff13;line-height:0.722656;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:ff14;src:url('chunks/assets/font_500a52783bb45a94237a7da1.woff')format("woff");}.ff14{font-family:ff14;line-height:0.922363;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:ff15;src:url('chunks/assets/font_6121a5ffa3aaa51c5958a919.woff')format("woff");}.ff15{font-family:ff15;line-height:0.666504;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;}
.m3{transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249840,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.mb{transform:matrix(0.257603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257603,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257760,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-23.759990px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.010168px;}
.ls1{letter-spacing:0.010553px;}
.ls3{letter-spacing:0.073080px;}
.ls5{letter-spacing:0.195300px;}
.ls6{letter-spacing:0.237060px;}
.ls2{letter-spacing:0.340926px;}
.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;}
}
.ws2{word-spacing:-19.151992px;}
.ws0{word-spacing:-18.532793px;}
.ws1{word-spacing:-17.999993px;}
.ws4{word-spacing:-17.639993px;}
.ws6{word-spacing:-13.715995px;}
.ws7{word-spacing:-13.013995px;}
.ws3{word-spacing:-10.342076px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-937.399989px;}
._c{margin-left:-468.216941px;}
._3{margin-left:-277.545825px;}
._b{margin-left:-229.327439px;}
._6{margin-left:-219.254252px;}
._9{margin-left:-211.190256px;}
._1{margin-left:-90.563177px;}
._a{margin-left:-68.874927px;}
._8{margin-left:-52.559242px;}
._0{margin-left:-25.559162px;}
._5{margin-left:-16.559129px;}
._27{margin-left:-2.756442px;}
._2{margin-left:-1.684403px;}
._4{width:1.236066px;}
._12{width:2.737559px;}
._13{width:4.138851px;}
._10{width:5.541667px;}
._11{width:6.882195px;}
._16{width:7.970226px;}
._2d{width:9.008454px;}
._17{width:10.059333px;}
._1a{width:11.835558px;}
._15{width:14.083905px;}
._14{width:15.099932px;}
._2f{width:16.362924px;}
._21{width:17.841637px;}
._20{width:18.929374px;}
._e{width:20.505825px;}
._f{width:21.935115px;}
._1d{width:23.019646px;}
._1b{width:25.032971px;}
._29{width:26.329888px;}
._22{width:27.368213px;}
._35{width:28.478318px;}
._1e{width:29.673228px;}
._23{width:31.447539px;}
._30{width:32.592743px;}
._39{width:33.607234px;}
._36{width:34.871760px;}
._3a{width:35.933536px;}
._28{width:38.114218px;}
._2b{width:40.180872px;}
._25{width:41.672248px;}
._1f{width:42.753064px;}
._3d{width:43.998663px;}
._2e{width:45.190948px;}
._38{width:46.213528px;}
._37{width:47.544779px;}
._24{width:49.308352px;}
._42{width:50.884458px;}
._19{width:51.968723px;}
._18{width:53.125015px;}
._26{width:54.212435px;}
._1c{width:55.331420px;}
._2c{width:56.685924px;}
._3b{width:58.018619px;}
._32{width:59.341487px;}
._31{width:60.838042px;}
._3f{width:62.153036px;}
._3c{width:68.683496px;}
._40{width:73.045373px;}
._41{width:74.309472px;}
._43{width:75.693528px;}
._2a{width:78.156397px;}
._3e{width:84.808230px;}
._34{width:87.247220px;}
._33{width:88.485837px;}
._d{width:120.962095px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,101,0);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,130,59);}
.fc0{color:rgb(51,153,51);}
.fs3{font-size:17.999993px;}
.fs7{font-size:33.119987px;}
.fsb{font-size:35.999986px;}
.fs6{font-size:38.879984px;}
.fsd{font-size:41.759983px;}
.fse{font-size:45.359982px;}
.fs5{font-size:48.239981px;}
.fs9{font-size:53.999978px;}
.fsa{font-size:59.759976px;}
.fs8{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fsc{font-size:74.879970px;}
.fs0{font-size:84.239966px;}
.fs4{font-size:95.759962px;}
.fs2{font-size:107.999957px;}
.y4c{bottom:-5.761018px;}
.y0{bottom:0.000000px;}
.y9f{bottom:3.059012px;}
.ya1{bottom:3.059018px;}
.ya6{bottom:3.059025px;}
.ya8{bottom:3.059031px;}
.yaa{bottom:3.059037px;}
.yac{bottom:3.059043px;}
.yae{bottom:3.059050px;}
.yb0{bottom:3.059056px;}
.yb2{bottom:3.059062px;}
.yb5{bottom:3.059068px;}
.y12b{bottom:3.059073px;}
.yb7{bottom:3.059075px;}
.y12d{bottom:3.059083px;}
.yba{bottom:3.059087px;}
.ybe{bottom:3.059094px;}
.yc1{bottom:3.059100px;}
.yc3{bottom:3.059106px;}
.yc5{bottom:3.059113px;}
.yc9{bottom:3.059119px;}
.ycb{bottom:3.059125px;}
.y7e{bottom:3.059128px;}
.ycd{bottom:3.059131px;}
.ycf{bottom:3.059138px;}
.y21{bottom:3.059146px;}
.yd2{bottom:3.059150px;}
.yd4{bottom:3.059156px;}
.yd6{bottom:3.059163px;}
.yd8{bottom:3.059169px;}
.yda{bottom:3.059175px;}
.ydd{bottom:3.059188px;}
.y131{bottom:3.059191px;}
.ydf{bottom:3.059194px;}
.ye1{bottom:3.059200px;}
.ye3{bottom:3.059207px;}
.ye5{bottom:3.059213px;}
.ye7{bottom:3.059219px;}
.ye9{bottom:3.059225px;}
.yeb{bottom:3.059232px;}
.yee{bottom:3.059238px;}
.yf0{bottom:3.059244px;}
.yf3{bottom:3.059257px;}
.yf5{bottom:3.059263px;}
.yf7{bottom:3.059269px;}
.yf9{bottom:3.059275px;}
.yfb{bottom:3.059282px;}
.y153{bottom:3.059692px;}
.y155{bottom:3.060001px;}
.y10{bottom:3.239055px;}
.y1c{bottom:3.599129px;}
.y1f{bottom:3.599133px;}
.y6{bottom:4.138948px;}
.y2{bottom:4.678926px;}
.y12{bottom:4.859062px;}
.y17{bottom:4.859080px;}
.y47{bottom:6.478948px;}
.y4f{bottom:58.440277px;}
.y4{bottom:58.620277px;}
.y3a{bottom:113.339955px;}
.y45{bottom:119.640252px;}
.y103{bottom:120.539952px;}
.y129{bottom:121.619951px;}
.y168{bottom:124.139950px;}
.y156{bottom:126.120250px;}
.y7c{bottom:126.479949px;}
.y96{bottom:127.379949px;}
.y39{bottom:134.039946px;}
.y44{bottom:142.680243px;}
.y102{bottom:143.579943px;}
.y154{bottom:144.480240px;}
.y128{bottom:144.659942px;}
.y167{bottom:147.179941px;}
.y7b{bottom:149.519940px;}
.y95{bottom:150.419940px;}
.y38{bottom:154.739938px;}
.y43{bottom:159.239936px;}
.y152{bottom:166.080240px;}
.y101{bottom:166.619933px;}
.y127{bottom:167.699933px;}
.y166{bottom:170.219932px;}
.y7a{bottom:172.559931px;}
.y94{bottom:173.459931px;}
.y37{bottom:175.439930px;}
.y42{bottom:179.939928px;}
.y151{bottom:189.119924px;}
.y100{bottom:189.659924px;}
.y126{bottom:190.559924px;}
.y165{bottom:193.259923px;}
.y79{bottom:195.599922px;}
.y36{bottom:196.139922px;}
.y93{bottom:196.499921px;}
.y41{bottom:200.639920px;}
.yff{bottom:212.519915px;}
.y125{bottom:213.599915px;}
.y164{bottom:216.119914px;}
.y35{bottom:216.839913px;}
.y78{bottom:218.639913px;}
.y92{bottom:219.359912px;}
.y40{bottom:221.339911px;}
.yfe{bottom:235.559906px;}
.y124{bottom:236.639905px;}
.y34{bottom:237.539905px;}
.y163{bottom:239.159904px;}
.y77{bottom:241.679903px;}
.y3f{bottom:242.039903px;}
.y91{bottom:242.399903px;}
.y33{bottom:258.239897px;}
.yfd{bottom:258.599897px;}
.y123{bottom:259.679896px;}
.y162{bottom:262.199895px;}
.y3e{bottom:262.739895px;}
.y76{bottom:264.539894px;}
.y90{bottom:265.439894px;}
.y32{bottom:278.939888px;}
.yfc{bottom:279.839888px;}
.y122{bottom:282.719887px;}
.y3d{bottom:283.439887px;}
.y161{bottom:285.239886px;}
.y75{bottom:287.579885px;}
.y8f{bottom:288.479885px;}
.yfa{bottom:292.620600px;}
.y3c{bottom:304.139878px;}
.y121{bottom:305.759878px;}
.y31{bottom:305.939878px;}
.y160{bottom:308.279877px;}
.yf8{bottom:308.280600px;}
.y74{bottom:310.619876px;}
.y8e{bottom:311.519875px;}
.yf6{bottom:323.940600px;}
.y3b{bottom:324.839870px;}
.y120{bottom:328.619869px;}
.y30{bottom:328.979868px;}
.y15f{bottom:331.319867px;}
.y73{bottom:333.659867px;}
.y8d{bottom:334.559866px;}
.yf4{bottom:339.600600px;}
.y2f{bottom:345.179862px;}
.y2e{bottom:348.959860px;}
.y11f{bottom:351.659859px;}
.y15e{bottom:354.179858px;}
.yf2{bottom:355.260600px;}
.y72{bottom:356.699857px;}
.y8c{bottom:357.419857px;}
.y2d{bottom:369.479852px;}
.yf1{bottom:373.979850px;}
.y11e{bottom:374.699850px;}
.y15d{bottom:377.219849px;}
.y71{bottom:379.559848px;}
.y8b{bottom:380.459848px;}
.yef{bottom:386.580600px;}
.y2c{bottom:392.519843px;}
.y11d{bottom:397.739841px;}
.y15c{bottom:400.259840px;}
.yed{bottom:402.240600px;}
.y70{bottom:402.599839px;}
.y8a{bottom:403.499839px;}
.yec{bottom:405.299838px;}
.y2b{bottom:415.559834px;}
.yea{bottom:417.900600px;}
.y11c{bottom:420.779832px;}
.y15b{bottom:423.299831px;}
.y6f{bottom:425.639830px;}
.y89{bottom:426.539829px;}
.ye8{bottom:433.560600px;}
.y2a{bottom:438.419825px;}
.y11b{bottom:443.819822px;}
.y15a{bottom:446.339821px;}
.y6e{bottom:448.679821px;}
.ye6{bottom:449.220600px;}
.y88{bottom:449.579820px;}
.y150{bottom:456.059818px;}
.y29{bottom:461.459815px;}
.ye4{bottom:464.880600px;}
.y11a{bottom:466.679813px;}
.y159{bottom:469.379812px;}
.y6d{bottom:471.719811px;}
.y87{bottom:472.619811px;}
.y133{bottom:476.579809px;}
.y14f{bottom:476.939809px;}
.ye2{bottom:480.540600px;}
.y28{bottom:484.499806px;}
.y119{bottom:489.719804px;}
.y6c{bottom:492.059803px;}
.y158{bottom:492.239803px;}
.y86{bottom:495.479802px;}
.ye0{bottom:496.200600px;}
.y132{bottom:496.560600px;}
.y14e{bottom:500.339800px;}
.y27{bottom:507.539797px;}
.yde{bottom:511.860600px;}
.y6b{bottom:512.579795px;}
.y118{bottom:512.759795px;}
.y157{bottom:514.019794px;}
.y85{bottom:518.519793px;}
.y130{bottom:519.600600px;}
.y14d{bottom:523.739791px;}
.ydc{bottom:527.520600px;}
.y26{bottom:530.579788px;}
.y6a{bottom:535.619786px;}
.y117{bottom:535.799786px;}
.y84{bottom:541.559783px;}
.ydb{bottom:546.239782px;}
.y14c{bottom:547.319781px;}
.y25{bottom:553.619779px;}
.y69{bottom:558.659777px;}
.y116{bottom:558.839776px;}
.yd9{bottom:558.840600px;}
.y83{bottom:564.599774px;}
.y14b{bottom:570.719772px;}
.yd7{bottom:574.500600px;}
.y24{bottom:576.479769px;}
.y68{bottom:581.519767px;}
.y115{bottom:581.699767px;}
.y82{bottom:587.639765px;}
.yd5{bottom:590.160600px;}
.y14a{bottom:594.119762px;}
.y23{bottom:600.419760px;}
.y67{bottom:604.559758px;}
.y114{bottom:604.739758px;}
.yd3{bottom:605.820600px;}
.y81{bottom:610.499756px;}
.y149{bottom:617.519753px;}
.yd1{bottom:621.480600px;}
.y66{bottom:627.599749px;}
.y113{bottom:627.779749px;}
.y20{bottom:631.020600px;}
.y80{bottom:633.539747px;}
.y22{bottom:634.079746px;}
.yd0{bottom:640.199744px;}
.y148{bottom:641.099744px;}
.y65{bottom:650.639740px;}
.y112{bottom:650.819740px;}
.yce{bottom:652.800600px;}
.y7f{bottom:656.579737px;}
.y147{bottom:664.499734px;}
.y1e{bottom:664.500600px;}
.y1d{bottom:668.099733px;}
.ycc{bottom:668.460600px;}
.y1b{bottom:673.500600px;}
.y64{bottom:673.679731px;}
.y111{bottom:673.859730px;}
.y7d{bottom:676.560600px;}
.yca{bottom:684.120600px;}
.y146{bottom:687.899725px;}
.y63{bottom:696.719721px;}
.y110{bottom:696.899721px;}
.yc8{bottom:699.780600px;}
.y145{bottom:711.479715px;}
.y1a{bottom:713.279715px;}
.yc6{bottom:715.440600px;}
.yc4{bottom:715.620600px;}
.yc7{bottom:718.499713px;}
.y62{bottom:719.579712px;}
.y10f{bottom:719.759712px;}
.yc2{bottom:731.280600px;}
.y144{bottom:734.879706px;}
.y61{bottom:742.619703px;}
.y10e{bottom:742.799703px;}
.y19{bottom:744.059702px;}
.yc0{bottom:746.940600px;}
.y12f{bottom:747.659701px;}
.y143{bottom:758.279697px;}
.ybf{bottom:762.600600px;}
.ybd{bottom:762.780600px;}
.y60{bottom:765.659694px;}
.y10d{bottom:765.839694px;}
.y18{bottom:768.719693px;}
.y12e{bottom:770.699692px;}
.ybb{bottom:778.620600px;}
.yb9{bottom:778.800600px;}
.ybc{bottom:781.679687px;}
.y142{bottom:781.859687px;}
.y5f{bottom:788.699685px;}
.y10c{bottom:788.879684px;}
.y12c{bottom:790.680600px;}
.y16{bottom:794.460600px;}
.yb8{bottom:797.519681px;}
.y15{bottom:805.259678px;}
.yb6{bottom:810.120600px;}
.y5e{bottom:811.739675px;}
.y10b{bottom:811.919675px;}
.y12a{bottom:813.720600px;}
.y14{bottom:817.139673px;}
.yb4{bottom:825.780600px;}
.y141{bottom:828.659669px;}
.yb3{bottom:828.839668px;}
.y5d{bottom:834.779666px;}
.y10a{bottom:834.959666px;}
.y11{bottom:839.820600px;}
.yb1{bottom:841.440600px;}
.y13{bottom:849.899660px;}
.y140{bottom:852.239659px;}
.yaf{bottom:857.100600px;}
.y5c{bottom:857.639657px;}
.y109{bottom:857.819657px;}
.yf{bottom:859.980600px;}
.yad{bottom:872.760600px;}
.y13f{bottom:875.639650px;}
.y5b{bottom:880.679648px;}
.y108{bottom:880.859648px;}
.yab{bottom:888.420600px;}
.ye{bottom:893.639643px;}
.y13e{bottom:899.039640px;}
.y5a{bottom:903.719639px;}
.y107{bottom:903.899638px;}
.ya9{bottom:904.080600px;}
.ya7{bottom:919.740600px;}
.y13d{bottom:922.619631px;}
.y59{bottom:926.759629px;}
.y106{bottom:926.939629px;}
.yd{bottom:934.319626px;}
.ya5{bottom:935.400600px;}
.ya2{bottom:938.639625px;}
.y13c{bottom:946.019622px;}
.y58{bottom:949.799620px;}
.y105{bottom:949.979620px;}
.ya4{bottom:951.060600px;}
.ya0{bottom:951.240600px;}
.ya3{bottom:954.119618px;}
.y9e{bottom:967.620600px;}
.y13b{bottom:969.419612px;}
.y57{bottom:972.839611px;}
.y104{bottom:973.019611px;}
.yc{bottom:974.999610px;}
.y13a{bottom:992.819603px;}
.y56{bottom:995.699602px;}
.y9d{bottom:995.879602px;}
.yb{bottom:999.299600px;}
.y139{bottom:1016.399593px;}
.ya{bottom:1017.659593px;}
.y9{bottom:1018.019593px;}
.y55{bottom:1018.739593px;}
.y9c{bottom:1018.919592px;}
.y138{bottom:1039.799584px;}
.y54{bottom:1041.779583px;}
.y9b{bottom:1041.959583px;}
.y4b{bottom:1051.500600px;}
.y137{bottom:1063.199575px;}
.y53{bottom:1064.819574px;}
.y9a{bottom:1064.999574px;}
.y4a{bottom:1066.979573px;}
.y136{bottom:1086.779565px;}
.y49{bottom:1087.319565px;}
.y52{bottom:1087.859565px;}
.y99{bottom:1088.039565px;}
.y48{bottom:1107.659557px;}
.y135{bottom:1110.179556px;}
.y51{bottom:1110.719556px;}
.y98{bottom:1110.899556px;}
.y8{bottom:1118.099553px;}
.y7{bottom:1118.459553px;}
.y46{bottom:1122.600600px;}
.y5{bottom:1125.480600px;}
.y134{bottom:1133.579547px;}
.y50{bottom:1133.759546px;}
.y97{bottom:1133.939546px;}
.y4e{bottom:1150.859540px;}
.y3{bottom:1151.039540px;}
.y4d{bottom:1178.940600px;}
.y1{bottom:1179.120600px;}
.h24{height:12.060000px;}
.hb{height:13.500000px;}
.h19{height:15.120000px;}
.h28{height:15.300000px;}
.h2b{height:15.300360px;}
.h2a{height:15.480000px;}
.h16{height:18.720000px;}
.h9{height:18.773430px;}
.h18{height:18.900000px;}
.hd{height:20.160000px;}
.h12{height:20.340000px;}
.h5{height:20.520000px;}
.h11{height:22.187804px;}
.h21{height:23.760000px;}
.h14{height:24.474365px;}
.h1{height:24.480000px;}
.h1d{height:25.913662px;}
.hf{height:26.008583px;}
.h1f{height:27.228505px;}
.h26{height:31.585065px;}
.h1b{height:32.152136px;}
.hc{height:32.269909px;}
.h29{height:34.307916px;}
.h27{height:35.991197px;}
.h10{height:36.179986px;}
.h2c{height:36.486196px;}
.h1a{height:40.842757px;}
.h1e{height:43.185920px;}
.h1c{height:45.199318px;}
.h15{height:46.868888px;}
.h6{height:47.988262px;}
.he{height:48.164043px;}
.h13{height:48.234356px;}
.h17{height:50.100449px;}
.h23{height:53.999978px;}
.h8{height:54.457009px;}
.h25{height:56.159978px;}
.h2{height:58.861031px;}
.h22{height:63.179975px;}
.ha{height:64.058178px;}
.h20{height:70.664034px;}
.h4{height:72.562471px;}
.h7{height:78.468719px;}
.h3{height:82.676920px;}
.h0{height:1263.000000px;}
.w49{width:1.800000px;}
.w36{width:2.340000px;}
.w53{width:2.880000px;}
.w29{width:3.060000px;}
.w15{width:3.240000px;}
.w2e{width:3.420000px;}
.w26{width:3.780000px;}
.w52{width:3.960000px;}
.w2c{width:4.140000px;}
.w34{width:4.320000px;}
.w79{width:4.500000px;}
.w2{width:4.680000px;}
.wd{width:4.860000px;}
.w35{width:5.040000px;}
.w2d{width:5.220000px;}
.w24{width:5.400000px;}
.w4a{width:5.940000px;}
.w47{width:6.120000px;}
.w72{width:6.480000px;}
.w4{width:7.020000px;}
.w69{width:7.200000px;}
.w31{width:7.380000px;}
.w2f{width:7.560000px;}
.w22{width:7.740000px;}
.w18{width:8.100000px;}
.w8{width:8.280000px;}
.w7{width:8.820000px;}
.w3c{width:9.000000px;}
.w1f{width:9.360000px;}
.w17{width:9.540000px;}
.wa{width:9.720000px;}
.w1d{width:10.800000px;}
.w8c{width:11.700000px;}
.w6{width:12.420000px;}
.w16{width:12.960000px;}
.w88{width:13.140000px;}
.w33{width:14.040000px;}
.w32{width:14.760000px;}
.w39{width:15.840000px;}
.w37{width:16.020000px;}
.w3a{width:16.560000px;}
.w13{width:17.100000px;}
.w3d{width:17.280000px;}
.w2b{width:19.080000px;}
.w2a{width:19.260000px;}
.w42{width:20.880000px;}
.w3f{width:23.400000px;}
.w6b{width:23.580000px;}
.w4b{width:23.940000px;}
.w73{width:24.300000px;}
.w6e{width:24.660000px;}
.w5{width:24.840000px;}
.w84{width:25.020000px;}
.w41{width:25.200000px;}
.w43{width:25.740000px;}
.w80{width:26.280000px;}
.w7b{width:26.640000px;}
.w54{width:26.820000px;}
.w76{width:27.000000px;}
.w4e{width:27.180000px;}
.w5a{width:27.360000px;}
.w45{width:27.540000px;}
.w4c{width:27.720000px;}
.w28{width:28.080000px;}
.w65{width:28.440000px;}
.w61{width:28.620000px;}
.w3b{width:28.980000px;}
.w5c{width:29.160000px;}
.w38{width:29.340000px;}
.w30{width:29.700000px;}
.w11{width:29.880000px;}
.w62{width:30.240000px;}
.w75{width:35.460000px;}
.w23{width:36.000000px;}
.w7c{width:37.440000px;}
.w21{width:38.340000px;}
.wb{width:41.400000px;}
.w50{width:42.840000px;}
.w60{width:43.200000px;}
.w8a{width:43.920000px;}
.w56{width:44.820000px;}
.w63{width:46.260000px;}
.w40{width:46.440000px;}
.w1e{width:46.800000px;}
.w5f{width:49.860000px;}
.w68{width:50.220000px;}
.w59{width:50.940000px;}
.w66{width:51.840000px;}
.w6f{width:52.200000px;}
.w87{width:52.380000px;}
.w6d{width:52.560000px;}
.w70{width:53.820000px;}
.w7a{width:54.000000px;}
.w5e{width:55.980000px;}
.w3e{width:58.860000px;}
.w25{width:59.220000px;}
.w83{width:62.280000px;}
.w7d{width:67.860000px;}
.w6a{width:69.660000px;}
.w58{width:70.200000px;}
.w7f{width:72.540000px;}
.w1{width:73.980000px;}
.w7e{width:74.160000px;}
.w48{width:74.700000px;}
.w46{width:75.420000px;}
.w4f{width:76.860000px;}
.w3{width:77.400000px;}
.w6c{width:78.300000px;}
.w19{width:81.360000px;}
.w14{width:81.720000px;}
.w27{width:85.680000px;}
.w51{width:86.400000px;}
.w9{width:90.180000px;}
.w12{width:92.520000px;}
.w67{width:98.100000px;}
.w77{width:101.880000px;}
.w4d{width:103.140000px;}
.w55{width:107.100000px;}
.wc{width:108.720000px;}
.w1b{width:109.620000px;}
.w74{width:109.980000px;}
.w81{width:114.480000px;}
.w71{width:118.440000px;}
.w82{width:120.420000px;}
.w5d{width:121.860000px;}
.w44{width:131.040000px;}
.we{width:140.400000px;}
.w5b{width:141.300000px;}
.w10{width:153.180000px;}
.w57{width:160.560000px;}
.w64{width:161.460000px;}
.w78{width:168.300000px;}
.wf{width:219.960000px;}
.w85{width:236.700000px;}
.w89{width:258.480000px;}
.w20{width:267.840000px;}
.w1a{width:293.040000px;}
.w86{width:324.000000px;}
.w1c{width:532.080000px;}
.w8b{width:610.740000px;}
.w8d{width:675.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x9{left:107.999957px;}
.x23{left:111.240000px;}
.x37{left:113.220000px;}
.xb{left:116.100000px;}
.x38{left:117.900000px;}
.x4c{left:120.600000px;}
.x39{left:121.680000px;}
.x4d{left:123.840000px;}
.x4e{left:127.080000px;}
.xd{left:130.679908px;}
.x33{left:146.340000px;}
.x7d{left:152.100000px;}
.x7e{left:156.420000px;}
.x7a{left:160.560000px;}
.x78{left:170.460000px;}
.x7b{left:173.700000px;}
.x2a{left:188.100000px;}
.x6f{left:193.140000px;}
.x79{left:195.480000px;}
.x19{left:197.279921px;}
.xe{left:200.339857px;}
.x1a{left:202.500000px;}
.xf{left:204.839853px;}
.xc{left:206.999917px;}
.x34{left:208.440000px;}
.x1b{left:212.220000px;}
.x4f{left:231.840000px;}
.x51{left:233.640000px;}
.x62{left:235.260000px;}
.x3a{left:236.520000px;}
.x3d{left:238.320000px;}
.x35{left:244.440000px;}
.x2d{left:249.120000px;}
.x1c{left:253.620000px;}
.x43{left:257.220000px;}
.x1d{left:258.300000px;}
.x10{left:259.740421px;}
.x3b{left:260.820000px;}
.x4b{left:262.080000px;}
.x46{left:263.880000px;}
.x44{left:265.500000px;}
.x3e{left:268.920000px;}
.x49{left:270.000000px;}
.x3f{left:273.060000px;}
.x47{left:275.580000px;}
.x40{left:278.280000px;}
.x3c{left:280.080000px;}
.x41{left:281.700000px;}
.x45{left:283.680000px;}
.x6c{left:285.480000px;}
.x73{left:287.280000px;}
.x42{left:289.260000px;}
.x48{left:291.600000px;}
.x4a{left:293.400000px;}
.x50{left:296.280000px;}
.x69{left:299.700000px;}
.x6d{left:301.680000px;}
.x6a{left:304.020000px;}
.x68{left:305.820000px;}
.x70{left:307.080000px;}
.x36{left:309.060000px;}
.x66{left:320.040000px;}
.x75{left:324.000000px;}
.x52{left:325.260000px;}
.x59{left:326.339869px;}
.x53{left:328.499869px;}
.x24{left:331.020000px;}
.x5a{left:333.900000px;}
.x54{left:336.600000px;}
.x55{left:339.660000px;}
.x56{left:345.780000px;}
.x6b{left:347.220000px;}
.x57{left:348.840000px;}
.x5e{left:351.180000px;}
.x5c{left:352.980000px;}
.x5f{left:357.120000px;}
.x60{left:360.000000px;}
.x63{left:361.800000px;}
.x77{left:364.320000px;}
.x74{left:365.760000px;}
.x1e{left:367.019853px;}
.x5b{left:369.720000px;}
.x67{left:371.700000px;}
.x58{left:373.680000px;}
.x5d{left:374.760000px;}
.x1f{left:377.100000px;}
.x20{left:381.780000px;}
.x61{left:384.840000px;}
.x21{left:386.640000px;}
.xa{left:389.339844px;}
.x76{left:401.580000px;}
.x6e{left:404.820000px;}
.x64{left:406.620000px;}
.x65{left:410.400000px;}
.x72{left:418.140000px;}
.x71{left:425.520000px;}
.x2e{left:433.079827px;}
.x2c{left:462.600477px;}
.x2b{left:481.140000px;}
.x25{left:484.200000px;}
.x11{left:493.920784px;}
.x12{left:507.240775px;}
.x31{left:509.580000px;}
.x26{left:514.080000px;}
.x32{left:518.940000px;}
.x13{left:520.560767px;}
.x22{left:527.039789px;}
.x14{left:533.700759px;}
.x15{left:538.200756px;}
.x1{left:549.000000px;}
.x2f{left:550.250930px;}
.x30{left:588.779764px;}
.x16{left:591.300737px;}
.x27{left:606.600000px;}
.x17{left:608.940666px;}
.x2{left:622.980000px;}
.x3{left:627.660000px;}
.x18{left:666.359733px;}
.x4{left:705.060000px;}
.x28{left:707.940000px;}
.x7c{left:710.279716px;}
.x5{left:722.340000px;}
.x6{left:747.180000px;}
.x7{left:759.600000px;}
.x7f{left:767.160000px;}
.x8{left:772.020000px;}
.x29{left:780.300000px;}
@media print{
.v1{vertical-align:-21.119992pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.009039pt;}
.ls1{letter-spacing:0.009381pt;}
.ls3{letter-spacing:0.064960pt;}
.ls5{letter-spacing:0.173600pt;}
.ls6{letter-spacing:0.210720pt;}
.ls2{letter-spacing:0.303046pt;}
.ws2{word-spacing:-17.023993pt;}
.ws0{word-spacing:-16.473593pt;}
.ws1{word-spacing:-15.999994pt;}
.ws4{word-spacing:-15.679994pt;}
.ws6{word-spacing:-12.191995pt;}
.ws7{word-spacing:-11.567995pt;}
.ws3{word-spacing:-9.192956pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-833.244435pt;}
._c{margin-left:-416.192836pt;}
._3{margin-left:-246.707400pt;}
._b{margin-left:-203.846612pt;}
._6{margin-left:-194.892669pt;}
._9{margin-left:-187.724672pt;}
._1{margin-left:-80.500602pt;}
._a{margin-left:-61.222157pt;}
._8{margin-left:-46.719326pt;}
._0{margin-left:-22.719255pt;}
._5{margin-left:-14.719226pt;}
._27{margin-left:-2.450170pt;}
._2{margin-left:-1.497247pt;}
._4{width:1.098725pt;}
._12{width:2.433386pt;}
._13{width:3.678979pt;}
._10{width:4.925926pt;}
._11{width:6.117507pt;}
._16{width:7.084646pt;}
._2d{width:8.007515pt;}
._17{width:8.941629pt;}
._1a{width:10.520496pt;}
._15{width:12.519027pt;}
._14{width:13.422162pt;}
._2f{width:14.544821pt;}
._21{width:15.859233pt;}
._20{width:16.826110pt;}
._e{width:18.227400pt;}
._f{width:19.497880pt;}
._1d{width:20.461907pt;}
._1b{width:22.251529pt;}
._29{width:23.404345pt;}
._22{width:24.327300pt;}
._35{width:25.314061pt;}
._1e{width:26.376203pt;}
._23{width:27.953368pt;}
._30{width:28.971327pt;}
._39{width:29.873097pt;}
._36{width:30.997120pt;}
._3a{width:31.940921pt;}
._28{width:33.879305pt;}
._2b{width:35.716331pt;}
._25{width:37.041998pt;}
._1f{width:38.002724pt;}
._3d{width:39.109922pt;}
._2e{width:40.169732pt;}
._38{width:41.078692pt;}
._37{width:42.262026pt;}
._24{width:43.829647pt;}
._42{width:45.230630pt;}
._19{width:46.194420pt;}
._18{width:47.222236pt;}
._26{width:48.188831pt;}
._1c{width:49.183484pt;}
._2c{width:50.387488pt;}
._3b{width:51.572106pt;}
._32{width:52.747989pt;}
._31{width:54.078260pt;}
._3f{width:55.247144pt;}
._3c{width:61.051997pt;}
._40{width:64.929220pt;}
._41{width:66.052864pt;}
._43{width:67.283136pt;}
._2a{width:69.472353pt;}
._3e{width:75.385094pt;}
._34{width:77.553084pt;}
._33{width:78.654077pt;}
._d{width:107.521862pt;}
.fs3{font-size:15.999994pt;}
.fs7{font-size:29.439988pt;}
.fsb{font-size:31.999987pt;}
.fs6{font-size:34.559986pt;}
.fsd{font-size:37.119985pt;}
.fse{font-size:40.319984pt;}
.fs5{font-size:42.879983pt;}
.fs9{font-size:47.999981pt;}
.fsa{font-size:53.119979pt;}
.fs8{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fsc{font-size:66.559973pt;}
.fs0{font-size:74.879970pt;}
.fs4{font-size:85.119966pt;}
.fs2{font-size:95.999962pt;}
.y4c{bottom:-5.120905pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:2.719122pt;}
.ya1{bottom:2.719127pt;}
.ya6{bottom:2.719133pt;}
.ya8{bottom:2.719139pt;}
.yaa{bottom:2.719144pt;}
.yac{bottom:2.719150pt;}
.yae{bottom:2.719155pt;}
.yb0{bottom:2.719161pt;}
.yb2{bottom:2.719166pt;}
.yb5{bottom:2.719172pt;}
.y12b{bottom:2.719176pt;}
.yb7{bottom:2.719178pt;}
.y12d{bottom:2.719184pt;}
.yba{bottom:2.719189pt;}
.ybe{bottom:2.719194pt;}
.yc1{bottom:2.719200pt;}
.yc3{bottom:2.719206pt;}
.yc5{bottom:2.719211pt;}
.yc9{bottom:2.719217pt;}
.ycb{bottom:2.719222pt;}
.y7e{bottom:2.719225pt;}
.ycd{bottom:2.719228pt;}
.ycf{bottom:2.719233pt;}
.y21{bottom:2.719241pt;}
.yd2{bottom:2.719245pt;}
.yd4{bottom:2.719250pt;}
.yd6{bottom:2.719256pt;}
.yd8{bottom:2.719261pt;}
.yda{bottom:2.719267pt;}
.ydd{bottom:2.719278pt;}
.y131{bottom:2.719281pt;}
.ydf{bottom:2.719284pt;}
.ye1{bottom:2.719289pt;}
.ye3{bottom:2.719295pt;}
.ye5{bottom:2.719300pt;}
.ye7{bottom:2.719306pt;}
.ye9{bottom:2.719311pt;}
.yeb{bottom:2.719317pt;}
.yee{bottom:2.719323pt;}
.yf0{bottom:2.719328pt;}
.yf3{bottom:2.719339pt;}
.yf5{bottom:2.719345pt;}
.yf7{bottom:2.719350pt;}
.yf9{bottom:2.719356pt;}
.yfb{bottom:2.719362pt;}
.y153{bottom:2.719727pt;}
.y155{bottom:2.720001pt;}
.y10{bottom:2.879160pt;}
.y1c{bottom:3.199226pt;}
.y1f{bottom:3.199229pt;}
.y6{bottom:3.679065pt;}
.y2{bottom:4.159046pt;}
.y12{bottom:4.319166pt;}
.y17{bottom:4.319182pt;}
.y47{bottom:5.759065pt;}
.y4f{bottom:51.946913pt;}
.y4{bottom:52.106912pt;}
.y3a{bottom:100.746626pt;}
.y45{bottom:106.346891pt;}
.y103{bottom:107.146624pt;}
.y129{bottom:108.106623pt;}
.y168{bottom:110.346623pt;}
.y156{bottom:112.106888pt;}
.y7c{bottom:112.426622pt;}
.y96{bottom:113.226621pt;}
.y39{bottom:119.146619pt;}
.y44{bottom:126.826883pt;}
.y102{bottom:127.626616pt;}
.y154{bottom:128.426880pt;}
.y128{bottom:128.586615pt;}
.y167{bottom:130.826614pt;}
.y7b{bottom:132.906614pt;}
.y95{bottom:133.706613pt;}
.y38{bottom:137.546612pt;}
.y43{bottom:141.546610pt;}
.y152{bottom:147.626880pt;}
.y101{bottom:148.106607pt;}
.y127{bottom:149.066607pt;}
.y166{bottom:151.306606pt;}
.y7a{bottom:153.386605pt;}
.y94{bottom:154.186605pt;}
.y37{bottom:155.946604pt;}
.y42{bottom:159.946603pt;}
.y151{bottom:168.106599pt;}
.y100{bottom:168.586599pt;}
.y126{bottom:169.386599pt;}
.y165{bottom:171.786598pt;}
.y79{bottom:173.866597pt;}
.y36{bottom:174.346597pt;}
.y93{bottom:174.666597pt;}
.y41{bottom:178.346595pt;}
.yff{bottom:188.906591pt;}
.y125{bottom:189.866591pt;}
.y164{bottom:192.106590pt;}
.y35{bottom:192.746590pt;}
.y78{bottom:194.346589pt;}
.y92{bottom:194.986589pt;}
.y40{bottom:196.746588pt;}
.yfe{bottom:209.386583pt;}
.y124{bottom:210.346583pt;}
.y34{bottom:211.146582pt;}
.y163{bottom:212.586582pt;}
.y77{bottom:214.826581pt;}
.y3f{bottom:215.146581pt;}
.y91{bottom:215.466580pt;}
.y33{bottom:229.546575pt;}
.yfd{bottom:229.866575pt;}
.y123{bottom:230.826574pt;}
.y162{bottom:233.066573pt;}
.y3e{bottom:233.546573pt;}
.y76{bottom:235.146573pt;}
.y90{bottom:235.946572pt;}
.y32{bottom:247.946567pt;}
.yfc{bottom:248.746567pt;}
.y122{bottom:251.306566pt;}
.y3d{bottom:251.946566pt;}
.y161{bottom:253.546565pt;}
.y75{bottom:255.626564pt;}
.y8f{bottom:256.426564pt;}
.yfa{bottom:260.107200pt;}
.y3c{bottom:270.346559pt;}
.y121{bottom:271.786558pt;}
.y31{bottom:271.946558pt;}
.y160{bottom:274.026557pt;}
.yf8{bottom:274.027200pt;}
.y74{bottom:276.106556pt;}
.y8e{bottom:276.906556pt;}
.yf6{bottom:287.947200pt;}
.y3b{bottom:288.746551pt;}
.y120{bottom:292.106550pt;}
.y30{bottom:292.426550pt;}
.y15f{bottom:294.506549pt;}
.y73{bottom:296.586548pt;}
.y8d{bottom:297.386548pt;}
.yf4{bottom:301.867200pt;}
.y2f{bottom:306.826544pt;}
.y2e{bottom:310.186543pt;}
.y11f{bottom:312.586542pt;}
.y15e{bottom:314.826541pt;}
.yf2{bottom:315.787200pt;}
.y72{bottom:317.066540pt;}
.y8c{bottom:317.706540pt;}
.y2d{bottom:328.426535pt;}
.yf1{bottom:332.426534pt;}
.y11e{bottom:333.066533pt;}
.y15d{bottom:335.306533pt;}
.y71{bottom:337.386532pt;}
.y8b{bottom:338.186531pt;}
.yef{bottom:343.627200pt;}
.y2c{bottom:348.906527pt;}
.y11d{bottom:353.546525pt;}
.y15c{bottom:355.786524pt;}
.yed{bottom:357.547200pt;}
.y70{bottom:357.866524pt;}
.y8a{bottom:358.666523pt;}
.yec{bottom:360.266523pt;}
.y2b{bottom:369.386519pt;}
.yea{bottom:371.467200pt;}
.y11c{bottom:374.026517pt;}
.y15b{bottom:376.266516pt;}
.y6f{bottom:378.346515pt;}
.y89{bottom:379.146515pt;}
.ye8{bottom:385.387200pt;}
.y2a{bottom:389.706511pt;}
.y11b{bottom:394.506509pt;}
.y15a{bottom:396.746508pt;}
.y6e{bottom:398.826507pt;}
.ye6{bottom:399.307200pt;}
.y88{bottom:399.626507pt;}
.y150{bottom:405.386505pt;}
.y29{bottom:410.186503pt;}
.ye4{bottom:413.227200pt;}
.y11a{bottom:414.826501pt;}
.y159{bottom:417.226500pt;}
.y6d{bottom:419.306499pt;}
.y87{bottom:420.106499pt;}
.y133{bottom:423.626497pt;}
.y14f{bottom:423.946497pt;}
.ye2{bottom:427.147200pt;}
.y28{bottom:430.666494pt;}
.y119{bottom:435.306493pt;}
.y6c{bottom:437.386492pt;}
.y158{bottom:437.546492pt;}
.y86{bottom:440.426490pt;}
.ye0{bottom:441.067200pt;}
.y132{bottom:441.387200pt;}
.y14e{bottom:444.746489pt;}
.y27{bottom:451.146486pt;}
.yde{bottom:454.987200pt;}
.y6b{bottom:455.626484pt;}
.y118{bottom:455.786484pt;}
.y157{bottom:456.906484pt;}
.y85{bottom:460.906482pt;}
.y130{bottom:461.867200pt;}
.y14d{bottom:465.546480pt;}
.ydc{bottom:468.907200pt;}
.y26{bottom:471.626478pt;}
.y6a{bottom:476.106476pt;}
.y117{bottom:476.266476pt;}
.y84{bottom:481.386474pt;}
.ydb{bottom:485.546472pt;}
.y14c{bottom:486.506472pt;}
.y25{bottom:492.106470pt;}
.y69{bottom:496.586468pt;}
.y116{bottom:496.746468pt;}
.yd9{bottom:496.747200pt;}
.y83{bottom:501.866466pt;}
.y14b{bottom:507.306464pt;}
.yd7{bottom:510.667200pt;}
.y24{bottom:512.426462pt;}
.y68{bottom:516.906460pt;}
.y115{bottom:517.066460pt;}
.y82{bottom:522.346458pt;}
.yd5{bottom:524.587200pt;}
.y14a{bottom:528.106455pt;}
.y23{bottom:533.706453pt;}
.y67{bottom:537.386452pt;}
.y114{bottom:537.546452pt;}
.yd3{bottom:538.507200pt;}
.y81{bottom:542.666450pt;}
.y149{bottom:548.906447pt;}
.yd1{bottom:552.427200pt;}
.y66{bottom:557.866444pt;}
.y113{bottom:558.026443pt;}
.y20{bottom:560.907200pt;}
.y80{bottom:563.146441pt;}
.y22{bottom:563.626441pt;}
.yd0{bottom:569.066439pt;}
.y148{bottom:569.866439pt;}
.y65{bottom:578.346435pt;}
.y112{bottom:578.506435pt;}
.yce{bottom:580.267200pt;}
.y7f{bottom:583.626433pt;}
.y147{bottom:590.666430pt;}
.y1e{bottom:590.667200pt;}
.y1d{bottom:593.866429pt;}
.ycc{bottom:594.187200pt;}
.y1b{bottom:598.667200pt;}
.y64{bottom:598.826427pt;}
.y111{bottom:598.986427pt;}
.y7d{bottom:601.387200pt;}
.yca{bottom:608.107200pt;}
.y146{bottom:611.466422pt;}
.y63{bottom:619.306419pt;}
.y110{bottom:619.466419pt;}
.yc8{bottom:622.027200pt;}
.y145{bottom:632.426414pt;}
.y1a{bottom:634.026413pt;}
.yc6{bottom:635.947200pt;}
.yc4{bottom:636.107200pt;}
.yc7{bottom:638.666411pt;}
.y62{bottom:639.626411pt;}
.y10f{bottom:639.786411pt;}
.yc2{bottom:650.027200pt;}
.y144{bottom:653.226405pt;}
.y61{bottom:660.106403pt;}
.y10e{bottom:660.266403pt;}
.y19{bottom:661.386402pt;}
.yc0{bottom:663.947200pt;}
.y12f{bottom:664.586401pt;}
.y143{bottom:674.026397pt;}
.ybf{bottom:677.867200pt;}
.ybd{bottom:678.027200pt;}
.y60{bottom:680.586394pt;}
.y10d{bottom:680.746394pt;}
.y18{bottom:683.306393pt;}
.y12e{bottom:685.066393pt;}
.ybb{bottom:692.107200pt;}
.yb9{bottom:692.267200pt;}
.ybc{bottom:694.826389pt;}
.y142{bottom:694.986389pt;}
.y5f{bottom:701.066386pt;}
.y10c{bottom:701.226386pt;}
.y12c{bottom:702.827200pt;}
.y16{bottom:706.187200pt;}
.yb8{bottom:708.906383pt;}
.y15{bottom:715.786380pt;}
.yb6{bottom:720.107200pt;}
.y5e{bottom:721.546378pt;}
.y10b{bottom:721.706378pt;}
.y12a{bottom:723.307200pt;}
.y14{bottom:726.346376pt;}
.yb4{bottom:734.027200pt;}
.y141{bottom:736.586372pt;}
.yb3{bottom:736.746372pt;}
.y5d{bottom:742.026370pt;}
.y10a{bottom:742.186370pt;}
.y11{bottom:746.507200pt;}
.yb1{bottom:747.947200pt;}
.y13{bottom:755.466364pt;}
.y140{bottom:757.546364pt;}
.yaf{bottom:761.867200pt;}
.y5c{bottom:762.346362pt;}
.y109{bottom:762.506362pt;}
.yf{bottom:764.427200pt;}
.yad{bottom:775.787200pt;}
.y13f{bottom:778.346355pt;}
.y5b{bottom:782.826354pt;}
.y108{bottom:782.986353pt;}
.yab{bottom:789.707200pt;}
.ye{bottom:794.346349pt;}
.y13e{bottom:799.146347pt;}
.y5a{bottom:803.306345pt;}
.y107{bottom:803.466345pt;}
.ya9{bottom:803.627200pt;}
.ya7{bottom:817.547200pt;}
.y13d{bottom:820.106339pt;}
.y59{bottom:823.786337pt;}
.y106{bottom:823.946337pt;}
.yd{bottom:830.506334pt;}
.ya5{bottom:831.467200pt;}
.ya2{bottom:834.346333pt;}
.y13c{bottom:840.906330pt;}
.y58{bottom:844.266329pt;}
.y105{bottom:844.426329pt;}
.ya4{bottom:845.387200pt;}
.ya0{bottom:845.547200pt;}
.ya3{bottom:848.106327pt;}
.y9e{bottom:860.107200pt;}
.y13b{bottom:861.706322pt;}
.y57{bottom:864.746321pt;}
.y104{bottom:864.906321pt;}
.yc{bottom:866.666320pt;}
.y13a{bottom:882.506314pt;}
.y56{bottom:885.066313pt;}
.y9d{bottom:885.226313pt;}
.yb{bottom:888.266311pt;}
.y139{bottom:903.466305pt;}
.ya{bottom:904.586305pt;}
.y9{bottom:904.906305pt;}
.y55{bottom:905.546304pt;}
.y9c{bottom:905.706304pt;}
.y138{bottom:924.266297pt;}
.y54{bottom:926.026296pt;}
.y9b{bottom:926.186296pt;}
.y4b{bottom:934.667200pt;}
.y137{bottom:945.066289pt;}
.y53{bottom:946.506288pt;}
.y9a{bottom:946.666288pt;}
.y4a{bottom:948.426287pt;}
.y136{bottom:966.026280pt;}
.y49{bottom:966.506280pt;}
.y52{bottom:966.986280pt;}
.y99{bottom:967.146280pt;}
.y48{bottom:984.586273pt;}
.y135{bottom:986.826272pt;}
.y51{bottom:987.306272pt;}
.y98{bottom:987.466272pt;}
.y8{bottom:993.866269pt;}
.y7{bottom:994.186269pt;}
.y46{bottom:997.867200pt;}
.y5{bottom:1000.427200pt;}
.y134{bottom:1007.626264pt;}
.y50{bottom:1007.786264pt;}
.y97{bottom:1007.946263pt;}
.y4e{bottom:1022.986257pt;}
.y3{bottom:1023.146257pt;}
.y4d{bottom:1047.947200pt;}
.y1{bottom:1048.107200pt;}
.h24{height:10.720000pt;}
.hb{height:12.000000pt;}
.h19{height:13.440000pt;}
.h28{height:13.600000pt;}
.h2b{height:13.600320pt;}
.h2a{height:13.760000pt;}
.h16{height:16.640000pt;}
.h9{height:16.687493pt;}
.h18{height:16.800000pt;}
.hd{height:17.920000pt;}
.h12{height:18.080000pt;}
.h5{height:18.240000pt;}
.h11{height:19.722492pt;}
.h21{height:21.120000pt;}
.h14{height:21.754991pt;}
.h1{height:21.760000pt;}
.h1d{height:23.034366pt;}
.hf{height:23.118741pt;}
.h1f{height:24.203115pt;}
.h26{height:28.075614pt;}
.h1b{height:28.579676pt;}
.hc{height:28.684364pt;}
.h29{height:30.495925pt;}
.h27{height:31.992175pt;}
.h10{height:32.159987pt;}
.h2c{height:32.432175pt;}
.h1a{height:36.304673pt;}
.h1e{height:38.387485pt;}
.h1c{height:40.177171pt;}
.h15{height:41.661233pt;}
.h6{height:42.656233pt;}
.he{height:42.812483pt;}
.h13{height:42.874983pt;}
.h17{height:44.533732pt;}
.h23{height:47.999981pt;}
.h8{height:48.406231pt;}
.h25{height:49.919980pt;}
.h2{height:52.320917pt;}
.h22{height:56.159978pt;}
.ha{height:56.940602pt;}
.h20{height:62.812475pt;}
.h4{height:64.499974pt;}
.h7{height:69.749972pt;}
.h3{height:73.490596pt;}
.h0{height:1122.666667pt;}
.w49{width:1.600000pt;}
.w36{width:2.080000pt;}
.w53{width:2.560000pt;}
.w29{width:2.720000pt;}
.w15{width:2.880000pt;}
.w2e{width:3.040000pt;}
.w26{width:3.360000pt;}
.w52{width:3.520000pt;}
.w2c{width:3.680000pt;}
.w34{width:3.840000pt;}
.w79{width:4.000000pt;}
.w2{width:4.160000pt;}
.wd{width:4.320000pt;}
.w35{width:4.480000pt;}
.w2d{width:4.640000pt;}
.w24{width:4.800000pt;}
.w4a{width:5.280000pt;}
.w47{width:5.440000pt;}
.w72{width:5.760000pt;}
.w4{width:6.240000pt;}
.w69{width:6.400000pt;}
.w31{width:6.560000pt;}
.w2f{width:6.720000pt;}
.w22{width:6.880000pt;}
.w18{width:7.200000pt;}
.w8{width:7.360000pt;}
.w7{width:7.840000pt;}
.w3c{width:8.000000pt;}
.w1f{width:8.320000pt;}
.w17{width:8.480000pt;}
.wa{width:8.640000pt;}
.w1d{width:9.600000pt;}
.w8c{width:10.400000pt;}
.w6{width:11.040000pt;}
.w16{width:11.520000pt;}
.w88{width:11.680000pt;}
.w33{width:12.480000pt;}
.w32{width:13.120000pt;}
.w39{width:14.080000pt;}
.w37{width:14.240000pt;}
.w3a{width:14.720000pt;}
.w13{width:15.200000pt;}
.w3d{width:15.360000pt;}
.w2b{width:16.960000pt;}
.w2a{width:17.120000pt;}
.w42{width:18.560000pt;}
.w3f{width:20.800000pt;}
.w6b{width:20.960000pt;}
.w4b{width:21.280000pt;}
.w73{width:21.600000pt;}
.w6e{width:21.920000pt;}
.w5{width:22.080000pt;}
.w84{width:22.240000pt;}
.w41{width:22.400000pt;}
.w43{width:22.880000pt;}
.w80{width:23.360000pt;}
.w7b{width:23.680000pt;}
.w54{width:23.840000pt;}
.w76{width:24.000000pt;}
.w4e{width:24.160000pt;}
.w5a{width:24.320000pt;}
.w45{width:24.480000pt;}
.w4c{width:24.640000pt;}
.w28{width:24.960000pt;}
.w65{width:25.280000pt;}
.w61{width:25.440000pt;}
.w3b{width:25.760000pt;}
.w5c{width:25.920000pt;}
.w38{width:26.080000pt;}
.w30{width:26.400000pt;}
.w11{width:26.560000pt;}
.w62{width:26.880000pt;}
.w75{width:31.520000pt;}
.w23{width:32.000000pt;}
.w7c{width:33.280000pt;}
.w21{width:34.080000pt;}
.wb{width:36.800000pt;}
.w50{width:38.080000pt;}
.w60{width:38.400000pt;}
.w8a{width:39.040000pt;}
.w56{width:39.840000pt;}
.w63{width:41.120000pt;}
.w40{width:41.280000pt;}
.w1e{width:41.600000pt;}
.w5f{width:44.320000pt;}
.w68{width:44.640000pt;}
.w59{width:45.280000pt;}
.w66{width:46.080000pt;}
.w6f{width:46.400000pt;}
.w87{width:46.560000pt;}
.w6d{width:46.720000pt;}
.w70{width:47.840000pt;}
.w7a{width:48.000000pt;}
.w5e{width:49.760000pt;}
.w3e{width:52.320000pt;}
.w25{width:52.640000pt;}
.w83{width:55.360000pt;}
.w7d{width:60.320000pt;}
.w6a{width:61.920000pt;}
.w58{width:62.400000pt;}
.w7f{width:64.480000pt;}
.w1{width:65.760000pt;}
.w7e{width:65.920000pt;}
.w48{width:66.400000pt;}
.w46{width:67.040000pt;}
.w4f{width:68.320000pt;}
.w3{width:68.800000pt;}
.w6c{width:69.600000pt;}
.w19{width:72.320000pt;}
.w14{width:72.640000pt;}
.w27{width:76.160000pt;}
.w51{width:76.800000pt;}
.w9{width:80.160000pt;}
.w12{width:82.240000pt;}
.w67{width:87.200000pt;}
.w77{width:90.560000pt;}
.w4d{width:91.680000pt;}
.w55{width:95.200000pt;}
.wc{width:96.640000pt;}
.w1b{width:97.440000pt;}
.w74{width:97.760000pt;}
.w81{width:101.760000pt;}
.w71{width:105.280000pt;}
.w82{width:107.040000pt;}
.w5d{width:108.320000pt;}
.w44{width:116.480000pt;}
.we{width:124.800000pt;}
.w5b{width:125.600000pt;}
.w10{width:136.160000pt;}
.w57{width:142.720000pt;}
.w64{width:143.520000pt;}
.w78{width:149.600000pt;}
.wf{width:195.520000pt;}
.w85{width:210.400000pt;}
.w89{width:229.760000pt;}
.w20{width:238.080000pt;}
.w1a{width:260.480000pt;}
.w86{width:288.000000pt;}
.w1c{width:472.960000pt;}
.w8b{width:542.880000pt;}
.w8d{width:600.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x9{left:95.999962pt;}
.x23{left:98.880000pt;}
.x37{left:100.640000pt;}
.xb{left:103.200000pt;}
.x38{left:104.800000pt;}
.x4c{left:107.200000pt;}
.x39{left:108.160000pt;}
.x4d{left:110.080000pt;}
.x4e{left:112.960000pt;}
.xd{left:116.159918pt;}
.x33{left:130.080000pt;}
.x7d{left:135.200000pt;}
.x7e{left:139.040000pt;}
.x7a{left:142.720000pt;}
.x78{left:151.520000pt;}
.x7b{left:154.400000pt;}
.x2a{left:167.200000pt;}
.x6f{left:171.680000pt;}
.x79{left:173.760000pt;}
.x19{left:175.359930pt;}
.xe{left:178.079873pt;}
.x1a{left:180.000000pt;}
.xf{left:182.079870pt;}
.xc{left:183.999926pt;}
.x34{left:185.280000pt;}
.x1b{left:188.640000pt;}
.x4f{left:206.080000pt;}
.x51{left:207.680000pt;}
.x62{left:209.120000pt;}
.x3a{left:210.240000pt;}
.x3d{left:211.840000pt;}
.x35{left:217.280000pt;}
.x2d{left:221.440000pt;}
.x1c{left:225.440000pt;}
.x43{left:228.640000pt;}
.x1d{left:229.600000pt;}
.x10{left:230.880374pt;}
.x3b{left:231.840000pt;}
.x4b{left:232.960000pt;}
.x46{left:234.560000pt;}
.x44{left:236.000000pt;}
.x3e{left:239.040000pt;}
.x49{left:240.000000pt;}
.x3f{left:242.720000pt;}
.x47{left:244.960000pt;}
.x40{left:247.360000pt;}
.x3c{left:248.960000pt;}
.x41{left:250.400000pt;}
.x45{left:252.160000pt;}
.x6c{left:253.760000pt;}
.x73{left:255.360000pt;}
.x42{left:257.120000pt;}
.x48{left:259.200000pt;}
.x4a{left:260.800000pt;}
.x50{left:263.360000pt;}
.x69{left:266.400000pt;}
.x6d{left:268.160000pt;}
.x6a{left:270.240000pt;}
.x68{left:271.840000pt;}
.x70{left:272.960000pt;}
.x36{left:274.720000pt;}
.x66{left:284.480000pt;}
.x75{left:288.000000pt;}
.x52{left:289.120000pt;}
.x59{left:290.079884pt;}
.x53{left:291.999883pt;}
.x24{left:294.240000pt;}
.x5a{left:296.800000pt;}
.x54{left:299.200000pt;}
.x55{left:301.920000pt;}
.x56{left:307.360000pt;}
.x6b{left:308.640000pt;}
.x57{left:310.080000pt;}
.x5e{left:312.160000pt;}
.x5c{left:313.760000pt;}
.x5f{left:317.440000pt;}
.x60{left:320.000000pt;}
.x63{left:321.600000pt;}
.x77{left:323.840000pt;}
.x74{left:325.120000pt;}
.x1e{left:326.239870pt;}
.x5b{left:328.640000pt;}
.x67{left:330.400000pt;}
.x58{left:332.160000pt;}
.x5d{left:333.120000pt;}
.x1f{left:335.200000pt;}
.x20{left:339.360000pt;}
.x61{left:342.080000pt;}
.x21{left:343.680000pt;}
.xa{left:346.079862pt;}
.x76{left:356.960000pt;}
.x6e{left:359.840000pt;}
.x64{left:361.440000pt;}
.x65{left:364.800000pt;}
.x72{left:371.680000pt;}
.x71{left:378.240000pt;}
.x2e{left:384.959846pt;}
.x2c{left:411.200424pt;}
.x2b{left:427.680000pt;}
.x25{left:430.400000pt;}
.x11{left:439.040697pt;}
.x12{left:450.880689pt;}
.x31{left:452.960000pt;}
.x26{left:456.960000pt;}
.x32{left:461.280000pt;}
.x13{left:462.720681pt;}
.x22{left:468.479813pt;}
.x14{left:474.400675pt;}
.x15{left:478.400672pt;}
.x1{left:488.000000pt;}
.x2f{left:489.111938pt;}
.x30{left:523.359791pt;}
.x16{left:525.600655pt;}
.x27{left:539.200000pt;}
.x17{left:541.280592pt;}
.x2{left:553.760000pt;}
.x3{left:557.920000pt;}
.x18{left:592.319763pt;}
.x4{left:626.720000pt;}
.x28{left:629.280000pt;}
.x7c{left:631.359747pt;}
.x5{left:642.080000pt;}
.x6{left:664.160000pt;}
.x7{left:675.200000pt;}
.x7f{left:681.920000pt;}
.x8{left:686.240000pt;}
.x29{left:693.600000pt;}
}




    .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; }
  