
    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_2d164a6b2f1674ca9227a5bc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cd12523ce31d36ea146f1aec.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_45e365b746ec4dbbfa5e30f7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1b84b633186319f990529f00.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4240156de11f422f966d8249.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.859863;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_26cd358f32881a9d4ad81a50.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_342fc325d4cbdcc41e56165a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.063477;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_f5dd6311f5e3fe92dd3cfa19.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d66fddd74e8a28ba194cb971.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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;}
.m8{transform:matrix(0.000000,-0.249318,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249318,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249318,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.249442,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249442,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249442,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.164253,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164253,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164253,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.234195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234195,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,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);}
.m4{transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250164,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250559,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.mb{transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252896,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252896,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252896,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);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-14.400000px;}
.v6{vertical-align:-10.080000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.936264px;}
.v4{vertical-align:14.400000px;}
.vb{vertical-align:29.916652px;}
.v1{vertical-align:33.120000px;}
.v7{vertical-align:36.000000px;}
.v5{vertical-align:56.880000px;}
.v9{vertical-align:68.400000px;}
.v8{vertical-align:78.480000px;}
.ls22{letter-spacing:-1.172152px;}
.ls5{letter-spacing:-1.008000px;}
.ls1d{letter-spacing:-0.940291px;}
.lsa{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.648000px;}
.ls23{letter-spacing:-0.369739px;}
.ls8{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.216000px;}
.ls7{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.074854px;}
.lsc{letter-spacing:-0.072000px;}
.ls1f{letter-spacing:-0.071800px;}
.ls21{letter-spacing:-0.068157px;}
.ls1e{letter-spacing:-0.033241px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.150000px;}
.ls16{letter-spacing:0.174240px;}
.ls3{letter-spacing:0.181200px;}
.ls2{letter-spacing:0.181440px;}
.lsd{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.720000px;}
.ls19{letter-spacing:1.440000px;}
.ls17{letter-spacing:1.800000px;}
.ls12{letter-spacing:2.479680px;}
.ls14{letter-spacing:2.801520px;}
.ls18{letter-spacing:3.096000px;}
.ls11{letter-spacing:18.352800px;}
.lse{letter-spacing:18.641520px;}
.ls4{letter-spacing:24.480000px;}
.lsf{letter-spacing:36.216000px;}
.ls10{letter-spacing:70.776000px;}
.ls13{letter-spacing:197.976000px;}
.ls1b{letter-spacing:370.481410px;}
.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;}
}
.wsd{word-spacing:-19.937212px;}
.wsf{word-spacing:-19.440000px;}
.ws11{word-spacing:-18.720000px;}
.ws9{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.072000px;}
.ws2b{word-spacing:-18.006274px;}
.ws1e{word-spacing:-18.004780px;}
.ws15{word-spacing:-18.002340px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws3{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.280000px;}
.ws24{word-spacing:-16.992000px;}
.wse{word-spacing:-15.840000px;}
.ws25{word-spacing:-15.676220px;}
.ws1{word-spacing:-12.060000px;}
.wsa{word-spacing:-11.246400px;}
.ws22{word-spacing:-8.326802px;}
.ws21{word-spacing:-8.310181px;}
.wsc{word-spacing:-4.032000px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:6.351120px;}
.ws12{word-spacing:11.371790px;}
.ws1c{word-spacing:44.424085px;}
.ws13{word-spacing:44.496094px;}
.ws18{word-spacing:51.912010px;}
.ws1d{word-spacing:52.272057px;}
.ws17{word-spacing:93.605429px;}
.ws23{word-spacing:94.442439px;}
.ws28{word-spacing:122.709659px;}
.ws14{word-spacing:163.022450px;}
.ws26{word-spacing:174.900270px;}
.ws20{word-spacing:182.580242px;}
.ws16{word-spacing:198.100588px;}
.ws1a{word-spacing:206.012036px;}
.ws29{word-spacing:263.528187px;}
.ws27{word-spacing:463.637093px;}
.ws2a{word-spacing:490.167596px;}
.ws1b{word-spacing:518.940154px;}
.ws19{word-spacing:576.259603px;}
.ws1f{word-spacing:784.135515px;}
._8b{margin-left:-517.124375px;}
._45{margin-left:-464.964435px;}
._3d{margin-left:-441.105892px;}
._75{margin-left:-189.509590px;}
._7f{margin-left:-188.233598px;}
._7d{margin-left:-182.893362px;}
._76{margin-left:-181.709029px;}
._58{margin-left:-179.495526px;}
._5c{margin-left:-178.288525px;}
._71{margin-left:-177.211337px;}
._79{margin-left:-174.131526px;}
._5b{margin-left:-173.000986px;}
._6a{margin-left:-170.706312px;}
._74{margin-left:-169.648045px;}
._51{margin-left:-168.602531px;}
._53{margin-left:-164.239150px;}
._55{margin-left:-159.295428px;}
._64{margin-left:-147.377304px;}
._62{margin-left:-135.865729px;}
._6c{margin-left:-131.150796px;}
._61{margin-left:-127.567936px;}
._15{margin-left:-14.100000px;}
._11{margin-left:-12.984000px;}
._89{margin-left:-7.636743px;}
._13{margin-left:-5.976000px;}
._37{margin-left:-4.776262px;}
._14{margin-left:-3.492000px;}
._12{margin-left:-2.400000px;}
._0{margin-left:-1.008000px;}
._1{width:1.236000px;}
._9{width:2.496000px;}
._8{width:3.576000px;}
._a{width:4.896000px;}
._5{width:6.480000px;}
._6{width:7.764000px;}
._7{width:9.108000px;}
._1d{width:10.116000px;}
._3{width:11.304000px;}
._4{width:12.384000px;}
._22{width:13.680000px;}
._1e{width:14.760000px;}
._b{width:15.768000px;}
._c{width:16.992000px;}
._19{width:19.356000px;}
._d{width:21.168000px;}
._23{width:22.296000px;}
._e{width:24.312000px;}
._16{width:25.440000px;}
._1a{width:26.640000px;}
._20{width:28.512000px;}
._1f{width:29.520000px;}
._21{width:31.236000px;}
._48{width:33.192000px;}
._26{width:34.416000px;}
._24{width:35.760000px;}
._47{width:37.296000px;}
._1b{width:40.104000px;}
._1c{width:41.196000px;}
._8e{width:42.564000px;}
._10{width:44.916000px;}
._f{width:45.936000px;}
._29{width:48.848145px;}
._17{width:61.056000px;}
._18{width:62.568000px;}
._25{width:69.802080px;}
._5f{width:84.700457px;}
._85{width:105.551422px;}
._65{width:108.736365px;}
._2d{width:118.120783px;}
._39{width:119.143384px;}
._87{width:123.920217px;}
._38{width:129.405724px;}
._4d{width:134.211401px;}
._4c{width:138.606970px;}
._50{width:140.863363px;}
._4f{width:142.973236px;}
._28{width:148.163783px;}
._4e{width:149.654503px;}
._5d{width:150.699850px;}
._80{width:161.509220px;}
._84{width:172.769190px;}
._73{width:177.081835px;}
._5e{width:179.275508px;}
._57{width:180.649701px;}
._6d{width:181.835507px;}
._68{width:182.841847px;}
._82{width:184.069416px;}
._7b{width:185.987896px;}
._56{width:188.391144px;}
._78{width:190.578662px;}
._67{width:191.732911px;}
._7e{width:193.381629px;}
._52{width:194.601290px;}
._5a{width:196.360286px;}
._86{width:198.389761px;}
._54{width:201.194645px;}
._59{width:203.081759px;}
._6e{width:205.421451px;}
._63{width:207.119374px;}
._49{width:209.884085px;}
._69{width:211.744780px;}
._66{width:218.321462px;}
._72{width:219.508371px;}
._7a{width:223.172495px;}
._81{width:225.812096px;}
._7c{width:227.085760px;}
._6f{width:229.746489px;}
._83{width:232.338814px;}
._8a{width:235.504628px;}
._3e{width:258.454567px;}
._60{width:267.596429px;}
._6b{width:290.855919px;}
._70{width:304.272228px;}
._77{width:319.744634px;}
._8d{width:324.661427px;}
._2f{width:384.473186px;}
._3c{width:403.145447px;}
._3f{width:502.866936px;}
._4a{width:508.335248px;}
._2a{width:518.868154px;}
._36{width:532.652075px;}
._4b{width:541.285994px;}
._42{width:546.623688px;}
._41{width:549.411775px;}
._46{width:631.193329px;}
._8c{width:653.421606px;}
._35{width:658.139141px;}
._44{width:661.797900px;}
._33{width:665.736901px;}
._34{width:669.625219px;}
._3b{width:677.080367px;}
._88{width:741.894581px;}
._31{width:753.106830px;}
._40{width:771.151714px;}
._43{width:773.551714px;}
._27{width:829.899205px;}
._2{width:846.156000px;}
._30{width:893.379206px;}
._32{width:951.433369px;}
._2b{width:953.987544px;}
._2e{width:1059.134096px;}
._2c{width:1134.504998px;}
._3a{width:1157.524123px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:33.113293px;}
.fsf{font-size:33.240725px;}
.fs10{font-size:33.307206px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fsb{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs14{font-size:62.704881px;}
.fs15{font-size:62.841196px;}
.fs16{font-size:62.845121px;}
.fs1{font-size:63.000000px;}
.fs11{font-size:66.056075px;}
.fs12{font-size:66.199676px;}
.fs13{font-size:66.236688px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsd{font-size:72.009358px;}
.fse{font-size:72.019122px;}
.fs18{font-size:72.025095px;}
.fs9{font-size:79.748849px;}
.fsc{font-size:86.504267px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1a1{bottom:3.296677px;}
.y19b{bottom:3.311329px;}
.y19d{bottom:3.314992px;}
.y1a5{bottom:3.315014px;}
.y199{bottom:3.318655px;}
.yb0{bottom:3.541800px;}
.y196{bottom:3.860776px;}
.y137{bottom:4.770030px;}
.ya5{bottom:5.042569px;}
.y113{bottom:5.277895px;}
.yfc{bottom:5.426893px;}
.y1a9{bottom:5.552571px;}
.y136{bottom:14.343220px;}
.y179{bottom:16.152755px;}
.y14f{bottom:17.016859px;}
.y135{bottom:23.899929px;}
.y133{bottom:26.492705px;}
.y112{bottom:28.523152px;}
.yfb{bottom:28.819455px;}
.y1a8{bottom:29.215698px;}
.y134{bottom:33.456637px;}
.y132{bottom:36.049414px;}
.y131{bottom:41.035522px;}
.y16e{bottom:44.744817px;}
.y130{bottom:50.592231px;}
.y111{bottom:51.805841px;}
.yfa{bottom:52.211268px;}
.y1a7{bottom:55.097406px;}
.y40{bottom:58.536000px;}
.y12d{bottom:64.935603px;}
.y5{bottom:66.525004px;}
.y12c{bottom:74.493004px;}
.y110{bottom:75.051099px;}
.yf9{bottom:75.603082px;}
.y177{bottom:76.131336px;}
.y3f{bottom:77.976000px;}
.y145{bottom:86.196238px;}
.y14e{bottom:89.355441px;}
.y16f{bottom:90.444407px;}
.y4{bottom:97.125005px;}
.y197{bottom:98.224893px;}
.y10f{bottom:98.333788px;}
.yf8{bottom:98.994895px;}
.y146{bottom:113.085368px;}
.y1bc{bottom:117.036000px;}
.y12f{bottom:117.408165px;}
.y94{bottom:118.116000px;}
.y194{bottom:119.191761px;}
.y16c{bottom:120.996000px;}
.y10e{bottom:121.579045px;}
.yf7{bottom:122.424135px;}
.y5c{bottom:122.796000px;}
.y139{bottom:124.174037px;}
.yc8{bottom:126.396000px;}
.y12e{bottom:126.978723px;}
.yab{bottom:129.276000px;}
.y192{bottom:129.816000px;}
.y1ce{bottom:131.976000px;}
.y87{bottom:133.056000px;}
.y138{bottom:133.730745px;}
.yd4{bottom:134.136000px;}
.y15e{bottom:136.116000px;}
.y170{bottom:136.143997px;}
.y21{bottom:139.264499px;}
.y147{bottom:139.938599px;}
.ydd{bottom:143.136000px;}
.y10d{bottom:144.861734px;}
.yf6{bottom:145.815948px;}
.y5b{bottom:146.556000px;}
.y15d{bottom:147.456000px;}
.y1bb{bottom:148.176000px;}
.y93{bottom:149.076000px;}
.y16b{bottom:152.130000px;}
.yaa{bottom:155.010000px;}
.yc7{bottom:157.350000px;}
.y191{bottom:160.770000px;}
.ye0{bottom:161.850000px;}
.y1cd{bottom:163.110000px;}
.y86{bottom:164.190000px;}
.yd3{bottom:165.270000px;}
.y148{bottom:166.824738px;}
.y10c{bottom:168.111483px;}
.yf5{bottom:169.212253px;}
.y12b{bottom:169.893884px;}
.y5a{bottom:170.490000px;}
.ydf{bottom:173.190000px;}
.ydc{bottom:174.270000px;}
.y1ba{bottom:179.130000px;}
.y12a{bottom:179.450592px;}
.y92{bottom:180.210000px;}
.ya9{bottom:181.290000px;}
.y171{bottom:181.843586px;}
.y16a{bottom:183.090000px;}
.y124{bottom:183.990000px;}
.y143{bottom:187.410000px;}
.yc6{bottom:188.490000px;}
.ya8{bottom:188.850000px;}
.y10b{bottom:191.394172px;}
.y190{bottom:191.910000px;}
.yf4{bottom:192.596581px;}
.y149{bottom:193.674977px;}
.y1cc{bottom:194.070000px;}
.y83{bottom:195.150000px;}
.yd2{bottom:196.230000px;}
.y18{bottom:196.933500px;}
.ydb{bottom:205.230000px;}
.y59{bottom:208.830000px;}
.ya7{bottom:209.190000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1b9{bottom:210.270000px;}
.y1b4{bottom:211.170000px;}
.y13b{bottom:214.055571px;}
.y169{bottom:214.230000px;}
.y178{bottom:214.559176px;}
.y10a{bottom:214.631943px;}
.y123{bottom:215.130000px;}
.yf3{bottom:215.995879px;}
.y129{bottom:216.964135px;}
.yc5{bottom:219.450000px;}
.y14a{bottom:220.570091px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y18f{bottom:222.870000px;}
.y13a{bottom:223.612280px;}
.y1cb{bottom:225.210000px;}
.y82{bottom:226.290000px;}
.y128{bottom:226.520843px;}
.y15c{bottom:227.370000px;}
.y172{bottom:227.509097px;}
.y13e{bottom:232.753479px;}
.y142{bottom:233.130000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y13d{bottom:234.831024px;}
.y127{bottom:235.343486px;}
.yda{bottom:236.370000px;}
.y109{bottom:237.914632px;}
.yf2{bottom:239.380207px;}
.y1b8{bottom:241.230000px;}
.yd1{bottom:242.310000px;}
.ya6{bottom:243.750000px;}
.y13c{bottom:244.387733px;}
.y126{bottom:244.920969px;}
.y168{bottom:245.190000px;}
.y122{bottom:246.090000px;}
.y14b{bottom:247.465205px;}
.y58{bottom:247.710000px;}
.yc4{bottom:250.590000px;}
.y18e{bottom:254.010000px;}
.y141{bottom:254.370000px;}
.y1ca{bottom:256.170000px;}
.y81{bottom:257.250000px;}
.y15b{bottom:258.330000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y108{bottom:261.167375px;}
.yf1{bottom:262.809447px;}
.yd9{bottom:267.330000px;}
.y140{bottom:270.570000px;}
.ya4{bottom:270.810000px;}
.y144{bottom:271.730244px;}
.y1b7{bottom:272.370000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y173{bottom:273.203007px;}
.yd0{bottom:273.270000px;}
.y14c{bottom:274.315444px;}
.ya3{bottom:275.250000px;}
.y167{bottom:276.330000px;}
.y121{bottom:277.230000px;}
.yc3{bottom:281.550000px;}
.y107{bottom:284.450064px;}
.y18d{bottom:284.970000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.yf0{bottom:286.208746px;}
.y57{bottom:286.770000px;}
.y1c9{bottom:287.310000px;}
.y80{bottom:288.390000px;}
.y15a{bottom:289.470000px;}
.yd8{bottom:298.470000px;}
.y14d{bottom:301.195600px;}
.y1b6{bottom:303.330000px;}
.ycf{bottom:304.410000px;}
.y166{bottom:307.290000px;}
.yef{bottom:309.593074px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y56{bottom:310.755000px;}
.y18c{bottom:316.155000px;}
.y1c8{bottom:318.315000px;}
.y174{bottom:318.911117px;}
.y7f{bottom:319.395000px;}
.y159{bottom:320.475000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y120{bottom:323.355000px;}
.ya2{bottom:323.715000px;}
.yc2{bottom:327.675000px;}
.yd7{bottom:329.475000px;}
.yee{bottom:332.992373px;}
.y55{bottom:334.515000px;}
.yce{bottom:335.415000px;}
.y18b{bottom:337.035000px;}
.y165{bottom:338.475000px;}
.y1b3{bottom:344.415000px;}
.yf{bottom:348.133500px;}
.y1c7{bottom:349.455000px;}
.y85{bottom:350.535000px;}
.y158{bottom:351.435000px;}
.y11f{bottom:354.315000px;}
.yed{bottom:356.376701px;}
.y18a{bottom:357.735000px;}
.yc1{bottom:358.635000px;}
.yd6{bottom:360.435000px;}
.y175{bottom:364.605027px;}
.y7e{bottom:365.475000px;}
.ycd{bottom:366.555000px;}
.ya1{bottom:368.715000px;}
.y164{bottom:369.435000px;}
.y54{bottom:372.855000px;}
.y189{bottom:373.935000px;}
.y1a6{bottom:374.040000px;}
.y1b2{bottom:375.555000px;}
.ya0{bottom:377.715000px;}
.yec{bottom:379.775999px;}
.y1c6{bottom:380.415000px;}
.y91{bottom:381.495000px;}
.y11e{bottom:385.455000px;}
.ye{bottom:386.785499px;}
.yc0{bottom:389.775000px;}
.yd5{bottom:391.215000px;}
.y7d{bottom:396.435000px;}
.y3e{bottom:397.155000px;}
.ycc{bottom:397.515000px;}
.y163{bottom:400.575000px;}
.yeb{bottom:403.205239px;}
.y1b1{bottom:406.515000px;}
.yd{bottom:408.044999px;}
.y176{bottom:410.313136px;}
.y1c5{bottom:411.555000px;}
.y53{bottom:411.735000px;}
.y90{bottom:412.635000px;}
.ybf{bottom:420.735000px;}
.yea{bottom:426.589567px;}
.y7c{bottom:427.575000px;}
.y9f{bottom:428.655000px;}
.ye7{bottom:429.735000px;}
.y11d{bottom:431.355000px;}
.y162{bottom:431.535000px;}
.y1b0{bottom:437.655000px;}
.y1c4{bottom:442.515000px;}
.y3d{bottom:443.235000px;}
.y8f{bottom:443.595000px;}
.y52{bottom:450.435000px;}
.ye9{bottom:451.785357px;}
.ybe{bottom:451.875000px;}
.y188{bottom:452.595000px;}
.y7b{bottom:458.535000px;}
.ycb{bottom:459.615000px;}
.ye6{bottom:460.875000px;}
.y11c{bottom:462.495000px;}
.y3c{bottom:464.475000px;}
.y1af{bottom:468.615000px;}
.y187{bottom:473.295000px;}
.y1c3{bottom:473.655000px;}
.y8e{bottom:474.735000px;}
.y161{bottom:477.615000px;}
.ybd{bottom:482.835000px;}
.y3b{bottom:485.175000px;}
.y51{bottom:489.315000px;}
.y7a{bottom:489.675000px;}
.y157{bottom:490.755000px;}
.ye5{bottom:491.835000px;}
.y11b{bottom:493.455000px;}
.y160{bottom:493.995000px;}
.y16d{bottom:495.194481px;}
.y1ae{bottom:499.755000px;}
.yc{bottom:502.864502px;}
.y1c2{bottom:504.615000px;}
.y8d{bottom:505.695000px;}
.y3a{bottom:505.875000px;}
.y9e{bottom:513.975000px;}
.y186{bottom:519.195000px;}
.y79{bottom:520.635000px;}
.yb{bottom:520.864502px;}
.y156{bottom:521.715000px;}
.y11a{bottom:524.595000px;}
.y50{bottom:528.195000px;}
.y105{bottom:528.915000px;}
.y1ad{bottom:530.715000px;}
.y39{bottom:534.855000px;}
.y1c1{bottom:535.755000px;}
.y8c{bottom:536.835000px;}
.ye4{bottom:537.915000px;}
.ya{bottom:538.864499px;}
.ybc{bottom:544.935000px;}
.y38{bottom:547.275000px;}
.y185{bottom:550.335000px;}
.y78{bottom:551.775000px;}
.y155{bottom:552.855000px;}
.y119{bottom:555.555000px;}
.y9{bottom:556.864499px;}
.ye3{bottom:558.795000px;}
.y104{bottom:560.055000px;}
.y1ac{bottom:561.885000px;}
.y1c0{bottom:566.745000px;}
.y4f{bottom:566.925000px;}
.y9d{bottom:567.825000px;}
.y37{bottom:568.005000px;}
.ye2{bottom:575.025000px;}
.ye8{bottom:575.117224px;}
.ybb{bottom:576.105000px;}
.y184{bottom:581.325000px;}
.y77{bottom:582.765000px;}
.y154{bottom:583.845000px;}
.y118{bottom:586.725000px;}
.y36{bottom:588.705000px;}
.y103{bottom:591.045000px;}
.y1ab{bottom:592.845000px;}
.y1bf{bottom:597.885000px;}
.y9c{bottom:598.965000px;}
.y13f{bottom:599.145000px;}
.y4e{bottom:605.805000px;}
.yba{bottom:607.065000px;}
.y35{bottom:609.405000px;}
.y76{bottom:613.905000px;}
.y117{bottom:617.685000px;}
.y102{bottom:622.185000px;}
.y1aa{bottom:623.625000px;}
.y183{bottom:627.405000px;}
.y1be{bottom:628.845000px;}
.y9b{bottom:629.925000px;}
.y34{bottom:630.105000px;}
.yb9{bottom:638.205000px;}
.y75{bottom:644.865000px;}
.y8{bottom:645.510000px;}
.y116{bottom:648.825000px;}
.y33{bottom:650.805000px;}
.y4d{bottom:652.245000px;}
.y101{bottom:653.145000px;}
.y182{bottom:658.545000px;}
.y1bd{bottom:659.985000px;}
.yca{bottom:661.065000px;}
.y7{bottom:666.771000px;}
.yb8{bottom:669.165000px;}
.y32{bottom:671.505000px;}
.y84{bottom:676.005000px;}
.y115{bottom:679.425000px;}
.y4c{bottom:683.205000px;}
.y100{bottom:684.285000px;}
.y181{bottom:689.505000px;}
.y74{bottom:690.945000px;}
.yc9{bottom:692.025000px;}
.yb7{bottom:700.305000px;}
.y31{bottom:700.485000px;}
.yff{bottom:705.165000px;}
.y8b{bottom:706.965000px;}
.y4b{bottom:714.345000px;}
.y68{bottom:718.845000px;}
.y180{bottom:720.645000px;}
.y30{bottom:721.185000px;}
.y73{bottom:722.085000px;}
.y153{bottom:722.985000px;}
.yfe{bottom:725.865000px;}
.y6{bottom:726.298500px;}
.yb6{bottom:730.905000px;}
.y8a{bottom:738.105000px;}
.y2f{bottom:741.885000px;}
.yfd{bottom:742.065000px;}
.y106{bottom:742.592981px;}
.y4a{bottom:745.305000px;}
.y17f{bottom:751.605000px;}
.y3{bottom:752.599495px;}
.y72{bottom:753.045000px;}
.y152{bottom:754.125000px;}
.y67{bottom:758.085000px;}
.y2e{bottom:762.585000px;}
.y114{bottom:767.625000px;}
.y125{bottom:767.783947px;}
.y89{bottom:769.065000px;}
.y2d{bottom:775.005000px;}
.y49{bottom:776.445000px;}
.y17e{bottom:782.565000px;}
.y71{bottom:784.185000px;}
.y151{bottom:784.725000px;}
.y66{bottom:789.585000px;}
.y2c{bottom:795.705000px;}
.yb5{bottom:798.405000px;}
.y9a{bottom:800.205000px;}
.y48{bottom:807.405000px;}
.y17d{bottom:813.750000px;}
.y70{bottom:815.190000px;}
.y2b{bottom:816.450000px;}
.y65{bottom:820.770000px;}
.yb4{bottom:829.410000px;}
.y99{bottom:831.210000px;}
.y2a{bottom:837.150000px;}
.y47{bottom:838.590000px;}
.y17c{bottom:844.710000px;}
.y6f{bottom:846.330000px;}
.y64{bottom:852.090000px;}
.y29{bottom:857.850000px;}
.yb3{bottom:860.550000px;}
.y98{bottom:862.350000px;}
.y46{bottom:869.550000px;}
.y17b{bottom:875.490000px;}
.y6e{bottom:877.290000px;}
.y28{bottom:878.550000px;}
.y2{bottom:879.369000px;}
.y63{bottom:883.410000px;}
.yb2{bottom:891.510000px;}
.y97{bottom:893.310000px;}
.y45{bottom:900.510000px;}
.yde{bottom:901.590000px;}
.y27{bottom:907.530000px;}
.y6d{bottom:908.430000px;}
.y62{bottom:914.730000px;}
.y96{bottom:924.450000px;}
.y26{bottom:928.230000px;}
.y15f{bottom:930.570000px;}
.y17a{bottom:931.110000px;}
.y193{bottom:931.276442px;}
.y44{bottom:931.650000px;}
.y1a4{bottom:931.825889px;}
.yb1{bottom:937.590000px;}
.y6c{bottom:939.390000px;}
.y1a3{bottom:942.320335px;}
.y61{bottom:946.050000px;}
.y25{bottom:948.930000px;}
.y1a2{bottom:952.796443px;}
.y95{bottom:955.410000px;}
.y43{bottom:962.610000px;}
.y1a0{bottom:963.290866px;}
.yaf{bottom:965.460000px;}
.y1{bottom:966.726000px;}
.yae{bottom:968.550000px;}
.y6b{bottom:970.530000px;}
.y19f{bottom:973.766974px;}
.y60{bottom:977.370000px;}
.y19e{bottom:984.243082px;}
.y24{bottom:986.190000px;}
.y150{bottom:986.550000px;}
.y42{bottom:993.750000px;}
.y19c{bottom:994.737505px;}
.yad{bottom:1000.050000px;}
.y6a{bottom:1001.490000px;}
.y19a{bottom:1005.215811px;}
.y5f{bottom:1008.690000px;}
.y198{bottom:1015.706572px;}
.y1b5{bottom:1017.510000px;}
.y41{bottom:1024.710000px;}
.yac{bottom:1031.730000px;}
.y23{bottom:1032.270000px;}
.y69{bottom:1032.630000px;}
.y195{bottom:1037.230212px;}
.y5e{bottom:1040.010000px;}
.y22{bottom:1063.260000px;}
.y5d{bottom:1063.440000px;}
.y88{bottom:1063.620000px;}
.ye1{bottom:1063.800000px;}
.h30{height:9.926662px;}
.h31{height:9.944977px;}
.h2f{height:10.476108px;}
.h18{height:18.000778px;}
.h14{height:23.400591px;}
.h16{height:29.482734px;}
.h7{height:32.130000px;}
.h2e{height:32.498886px;}
.h21{height:32.623953px;}
.h23{height:32.689201px;}
.h22{height:35.560217px;}
.h1a{height:38.158594px;}
.h6{height:45.900000px;}
.hb{height:47.344922px;}
.h3{height:48.195000px;}
.he{height:50.229844px;}
.h2{height:55.080000px;}
.h17{height:58.651172px;}
.h2a{height:61.541411px;}
.h2b{height:61.675197px;}
.h2c{height:61.679049px;}
.h24{height:62.540606px;}
.hf{height:63.175781px;}
.h26{height:64.830426px;}
.h27{height:64.971361px;}
.h28{height:65.007687px;}
.hd{height:65.010937px;}
.h34{height:70.628906px;}
.hc{height:70.664062px;}
.h1c{height:70.673247px;}
.h1f{height:70.682830px;}
.h33{height:70.688692px;}
.h9{height:72.562500px;}
.h1d{height:72.571931px;}
.h32{height:73.140864px;}
.h5{height:78.030000px;}
.h15{height:78.230195px;}
.ha{height:81.736875px;}
.h19{height:84.856969px;}
.h11{height:85.562578px;}
.h13{height:106.664062px;}
.h4{height:119.055004px;}
.h12{height:121.562578px;}
.h2d{height:127.471527px;}
.h20{height:266.136053px;}
.h1e{height:302.450366px;}
.h25{height:322.915125px;}
.h29{height:430.905519px;}
.h1b{height:469.782464px;}
.h10{height:1187.997990px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:10.800002px;}
.w5{width:45.001192px;}
.wd{width:92.740973px;}
.w8{width:330.140541px;}
.w9{width:403.379010px;}
.we{width:517.272426px;}
.wa{width:539.793009px;}
.w2{width:637.794021px;}
.wb{width:667.729408px;}
.w7{width:698.393707px;}
.wc{width:701.073215px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.998125px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x3f{left:1.103184px;}
.x13{left:2.209040px;}
.xf{left:3.713254px;}
.x1b{left:13.512555px;}
.x36{left:32.686366px;}
.x35{left:42.153892px;}
.x2d{left:50.022331px;}
.x2f{left:51.055781px;}
.x39{left:57.995117px;}
.x3a{left:63.186670px;}
.x2e{left:66.374182px;}
.x30{left:70.889972px;}
.x19{left:74.715543px;}
.x3e{left:94.395748px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x7{left:108.036000px;}
.x40{left:109.122066px;}
.x12{left:112.896000px;}
.x31{left:119.860795px;}
.x8{left:124.596000px;}
.x5{left:128.736000px;}
.x32{left:138.696261px;}
.xe{left:162.090000px;}
.x14{left:172.830000px;}
.x3b{left:177.705395px;}
.x33{left:183.486055px;}
.x2b{left:202.189561px;}
.x4{left:203.484001px;}
.x1d{left:204.738461px;}
.x10{left:207.030000px;}
.x2c{left:209.440382px;}
.x2a{left:212.774093px;}
.xb{left:220.350000px;}
.x1e{left:235.012723px;}
.xc{left:265.710000px;}
.x28{left:276.197942px;}
.x29{left:295.366779px;}
.x37{left:296.533125px;}
.x26{left:302.186996px;}
.x25{left:304.784512px;}
.x1f{left:306.986150px;}
.x21{left:308.437703px;}
.x22{left:319.272264px;}
.x20{left:322.571248px;}
.x11{left:324.075000px;}
.x27{left:330.454085px;}
.x23{left:343.802819px;}
.xd{left:364.215000px;}
.x24{left:366.805424px;}
.x6{left:426.495000px;}
.x1a{left:438.915000px;}
.x15{left:450.795000px;}
.x3{left:454.959000px;}
.x1c{left:511.485000px;}
.x9{left:585.103125px;}
.xa{left:591.225000px;}
.x3d{left:626.505000px;}
.x34{left:648.105000px;}
.x16{left:649.363125px;}
.x17{left:655.485000px;}
.x38{left:776.310000px;}
.x18{left:807.810000px;}
.x3c{left:810.150000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-12.800000pt;}
.v6{vertical-align:-8.960000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.610012pt;}
.v4{vertical-align:12.800000pt;}
.vb{vertical-align:26.592580pt;}
.v1{vertical-align:29.440000pt;}
.v7{vertical-align:32.000000pt;}
.v5{vertical-align:50.560000pt;}
.v9{vertical-align:60.800000pt;}
.v8{vertical-align:69.760000pt;}
.ls22{letter-spacing:-1.041913pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls1d{letter-spacing:-0.835814pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.576000pt;}
.ls23{letter-spacing:-0.328657pt;}
.ls8{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.066537pt;}
.lsc{letter-spacing:-0.064000pt;}
.ls1f{letter-spacing:-0.063822pt;}
.ls21{letter-spacing:-0.060584pt;}
.ls1e{letter-spacing:-0.029547pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.133333pt;}
.ls16{letter-spacing:0.154880pt;}
.ls3{letter-spacing:0.161067pt;}
.ls2{letter-spacing:0.161280pt;}
.lsd{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.640000pt;}
.ls19{letter-spacing:1.280000pt;}
.ls17{letter-spacing:1.600000pt;}
.ls12{letter-spacing:2.204160pt;}
.ls14{letter-spacing:2.490240pt;}
.ls18{letter-spacing:2.752000pt;}
.ls11{letter-spacing:16.313600pt;}
.lse{letter-spacing:16.570240pt;}
.ls4{letter-spacing:21.760000pt;}
.lsf{letter-spacing:32.192000pt;}
.ls10{letter-spacing:62.912000pt;}
.ls13{letter-spacing:175.978667pt;}
.ls1b{letter-spacing:329.316809pt;}
.wsd{word-spacing:-17.721967pt;}
.wsf{word-spacing:-17.280000pt;}
.ws11{word-spacing:-16.640000pt;}
.ws9{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws2b{word-spacing:-16.005577pt;}
.ws1e{word-spacing:-16.004249pt;}
.ws15{word-spacing:-16.002080pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.360000pt;}
.ws24{word-spacing:-15.104000pt;}
.wse{word-spacing:-14.080000pt;}
.ws25{word-spacing:-13.934418pt;}
.ws1{word-spacing:-10.720000pt;}
.wsa{word-spacing:-9.996800pt;}
.ws22{word-spacing:-7.401601pt;}
.ws21{word-spacing:-7.386828pt;}
.wsc{word-spacing:-3.584000pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:5.645440pt;}
.ws12{word-spacing:10.108257pt;}
.ws1c{word-spacing:39.488076pt;}
.ws13{word-spacing:39.552084pt;}
.ws18{word-spacing:46.144009pt;}
.ws1d{word-spacing:46.464051pt;}
.ws17{word-spacing:83.204825pt;}
.ws23{word-spacing:83.948834pt;}
.ws28{word-spacing:109.075253pt;}
.ws14{word-spacing:144.908844pt;}
.ws26{word-spacing:155.466907pt;}
.ws20{word-spacing:162.293549pt;}
.ws16{word-spacing:176.089412pt;}
.ws1a{word-spacing:183.121810pt;}
.ws29{word-spacing:234.247278pt;}
.ws27{word-spacing:412.121860pt;}
.ws2a{word-spacing:435.704530pt;}
.ws1b{word-spacing:461.280137pt;}
.ws19{word-spacing:512.230758pt;}
.ws1f{word-spacing:697.009347pt;}
._8b{margin-left:-459.666111pt;}
._45{margin-left:-413.301720pt;}
._3d{margin-left:-392.094126pt;}
._75{margin-left:-168.452969pt;}
._7f{margin-left:-167.318753pt;}
._7d{margin-left:-162.571878pt;}
._76{margin-left:-161.519137pt;}
._58{margin-left:-159.551578pt;}
._5c{margin-left:-158.478689pt;}
._71{margin-left:-157.521188pt;}
._79{margin-left:-154.783579pt;}
._5b{margin-left:-153.778654pt;}
._6a{margin-left:-151.738944pt;}
._74{margin-left:-150.798262pt;}
._51{margin-left:-149.868916pt;}
._53{margin-left:-145.990355pt;}
._55{margin-left:-141.595936pt;}
._64{margin-left:-131.002048pt;}
._62{margin-left:-120.769537pt;}
._6c{margin-left:-116.578486pt;}
._61{margin-left:-113.393721pt;}
._15{margin-left:-12.533333pt;}
._11{margin-left:-11.541333pt;}
._89{margin-left:-6.788216pt;}
._13{margin-left:-5.312000pt;}
._37{margin-left:-4.245566pt;}
._14{margin-left:-3.104000pt;}
._12{margin-left:-2.133333pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.098667pt;}
._9{width:2.218667pt;}
._8{width:3.178667pt;}
._a{width:4.352000pt;}
._5{width:5.760000pt;}
._6{width:6.901333pt;}
._7{width:8.096000pt;}
._1d{width:8.992000pt;}
._3{width:10.048000pt;}
._4{width:11.008000pt;}
._22{width:12.160000pt;}
._1e{width:13.120000pt;}
._b{width:14.016000pt;}
._c{width:15.104000pt;}
._19{width:17.205333pt;}
._d{width:18.816000pt;}
._23{width:19.818667pt;}
._e{width:21.610667pt;}
._16{width:22.613333pt;}
._1a{width:23.680000pt;}
._20{width:25.344000pt;}
._1f{width:26.240000pt;}
._21{width:27.765333pt;}
._48{width:29.504000pt;}
._26{width:30.592000pt;}
._24{width:31.786667pt;}
._47{width:33.152000pt;}
._1b{width:35.648000pt;}
._1c{width:36.618667pt;}
._8e{width:37.834667pt;}
._10{width:39.925333pt;}
._f{width:40.832000pt;}
._29{width:43.420574pt;}
._17{width:54.272000pt;}
._18{width:55.616000pt;}
._25{width:62.046293pt;}
._5f{width:75.289295pt;}
._85{width:93.823486pt;}
._65{width:96.654547pt;}
._2d{width:104.996251pt;}
._39{width:105.905231pt;}
._87{width:110.151304pt;}
._38{width:115.027310pt;}
._4d{width:119.299023pt;}
._4c{width:123.206196pt;}
._50{width:125.211878pt;}
._4f{width:127.087321pt;}
._28{width:131.701140pt;}
._4e{width:133.026225pt;}
._5d{width:133.955422pt;}
._80{width:143.563751pt;}
._84{width:153.572613pt;}
._73{width:157.406076pt;}
._5e{width:159.356007pt;}
._57{width:160.577512pt;}
._6d{width:161.631562pt;}
._68{width:162.526086pt;}
._82{width:163.617259pt;}
._7b{width:165.322574pt;}
._56{width:167.458795pt;}
._78{width:169.403256pt;}
._67{width:170.429254pt;}
._7e{width:171.894781pt;}
._52{width:172.978925pt;}
._5a{width:174.542476pt;}
._86{width:176.346454pt;}
._54{width:178.839685pt;}
._59{width:180.517119pt;}
._6e{width:182.596845pt;}
._63{width:184.106110pt;}
._49{width:186.563631pt;}
._69{width:188.217582pt;}
._66{width:194.063522pt;}
._72{width:195.118552pt;}
._7a{width:198.375551pt;}
._81{width:200.721863pt;}
._7c{width:201.854009pt;}
._6f{width:204.219102pt;}
._83{width:206.523390pt;}
._8a{width:209.337447pt;}
._3e{width:229.737393pt;}
._60{width:237.863492pt;}
._6b{width:258.538595pt;}
._70{width:270.464202pt;}
._77{width:284.217452pt;}
._8d{width:288.587935pt;}
._2f{width:341.753943pt;}
._3c{width:358.351508pt;}
._3f{width:446.992832pt;}
._4a{width:451.853554pt;}
._2a{width:461.216137pt;}
._36{width:473.468511pt;}
._4b{width:481.143106pt;}
._42{width:485.887722pt;}
._41{width:488.366022pt;}
._46{width:561.060737pt;}
._8c{width:580.819206pt;}
._35{width:585.012570pt;}
._44{width:588.264800pt;}
._33{width:591.766134pt;}
._34{width:595.222417pt;}
._3b{width:601.849215pt;}
._88{width:659.461850pt;}
._31{width:669.428293pt;}
._40{width:685.468190pt;}
._43{width:687.601524pt;}
._27{width:737.688182pt;}
._2{width:752.138667pt;}
._30{width:794.114850pt;}
._32{width:845.718550pt;}
._2b{width:847.988928pt;}
._2e{width:941.452530pt;}
._2c{width:1008.448887pt;}
._3a{width:1028.910332pt;}
.fs17{font-size:29.434038pt;}
.fsf{font-size:29.547311pt;}
.fs10{font-size:29.606405pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fsb{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs14{font-size:55.737672pt;}
.fs15{font-size:55.858841pt;}
.fs16{font-size:55.862330pt;}
.fs1{font-size:56.000000pt;}
.fs11{font-size:58.716511pt;}
.fs12{font-size:58.844156pt;}
.fs13{font-size:58.877056pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsd{font-size:64.008318pt;}
.fse{font-size:64.016997pt;}
.fs18{font-size:64.022307pt;}
.fs9{font-size:70.887866pt;}
.fsc{font-size:76.892681pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1a1{bottom:2.930380pt;}
.y19b{bottom:2.943404pt;}
.y19d{bottom:2.946660pt;}
.y1a5{bottom:2.946679pt;}
.y199{bottom:2.949916pt;}
.yb0{bottom:3.148267pt;}
.y196{bottom:3.431800pt;}
.y137{bottom:4.240027pt;}
.ya5{bottom:4.482283pt;}
.y113{bottom:4.691462pt;}
.yfc{bottom:4.823905pt;}
.y1a9{bottom:4.935618pt;}
.y136{bottom:12.749529pt;}
.y179{bottom:14.358004pt;}
.y14f{bottom:15.126097pt;}
.y135{bottom:21.244381pt;}
.y133{bottom:23.549071pt;}
.y112{bottom:25.353913pt;}
.yfb{bottom:25.617293pt;}
.y1a8{bottom:25.969510pt;}
.y134{bottom:29.739233pt;}
.y132{bottom:32.043923pt;}
.y131{bottom:36.476020pt;}
.y16e{bottom:39.773171pt;}
.y130{bottom:44.970872pt;}
.y111{bottom:46.049637pt;}
.yfa{bottom:46.410016pt;}
.y1a7{bottom:48.975472pt;}
.y40{bottom:52.032000pt;}
.y12d{bottom:57.720536pt;}
.y5{bottom:59.133337pt;}
.y12c{bottom:66.216004pt;}
.y110{bottom:66.712088pt;}
.yf9{bottom:67.202739pt;}
.y177{bottom:67.672299pt;}
.y3f{bottom:69.312000pt;}
.y145{bottom:76.618878pt;}
.y14e{bottom:79.427059pt;}
.y16f{bottom:80.395028pt;}
.y4{bottom:86.333337pt;}
.y197{bottom:87.311016pt;}
.y10f{bottom:87.407811pt;}
.yf8{bottom:87.995462pt;}
.y146{bottom:100.520328pt;}
.y1bc{bottom:104.032000pt;}
.y12f{bottom:104.362813pt;}
.y94{bottom:104.992000pt;}
.y194{bottom:105.948232pt;}
.y16c{bottom:107.552000pt;}
.y10e{bottom:108.070262pt;}
.yf7{bottom:108.821453pt;}
.y5c{bottom:109.152000pt;}
.y139{bottom:110.376922pt;}
.yc8{bottom:112.352000pt;}
.y12e{bottom:112.869976pt;}
.yab{bottom:114.912000pt;}
.y192{bottom:115.392000pt;}
.y1ce{bottom:117.312000pt;}
.y87{bottom:118.272000pt;}
.y138{bottom:118.871774pt;}
.yd4{bottom:119.232000pt;}
.y15e{bottom:120.992000pt;}
.y170{bottom:121.016886pt;}
.y21{bottom:123.790666pt;}
.y147{bottom:124.389866pt;}
.ydd{bottom:127.232000pt;}
.y10d{bottom:128.765986pt;}
.yf6{bottom:129.614176pt;}
.y5b{bottom:130.272000pt;}
.y15d{bottom:131.072000pt;}
.y1bb{bottom:131.712000pt;}
.y93{bottom:132.512000pt;}
.y16b{bottom:135.226667pt;}
.yaa{bottom:137.786667pt;}
.yc7{bottom:139.866667pt;}
.y191{bottom:142.906667pt;}
.ye0{bottom:143.866667pt;}
.y1cd{bottom:144.986667pt;}
.y86{bottom:145.946667pt;}
.yd3{bottom:146.906667pt;}
.y148{bottom:148.288656pt;}
.y10c{bottom:149.432429pt;}
.yf5{bottom:150.410891pt;}
.y12b{bottom:151.016786pt;}
.y5a{bottom:151.546667pt;}
.ydf{bottom:153.946667pt;}
.ydc{bottom:154.906667pt;}
.y1ba{bottom:159.226667pt;}
.y12a{bottom:159.511637pt;}
.y92{bottom:160.186667pt;}
.ya9{bottom:161.146667pt;}
.y171{bottom:161.638743pt;}
.y16a{bottom:162.746667pt;}
.y124{bottom:163.546667pt;}
.y143{bottom:166.586667pt;}
.yc6{bottom:167.546667pt;}
.ya8{bottom:167.866667pt;}
.y10b{bottom:170.128153pt;}
.y190{bottom:170.586667pt;}
.yf4{bottom:171.196961pt;}
.y149{bottom:172.155535pt;}
.y1cc{bottom:172.506667pt;}
.y83{bottom:173.466667pt;}
.yd2{bottom:174.426667pt;}
.y18{bottom:175.052000pt;}
.ydb{bottom:182.426667pt;}
.y59{bottom:185.626667pt;}
.ya7{bottom:185.946667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1b9{bottom:186.906667pt;}
.y1b4{bottom:187.706667pt;}
.y13b{bottom:190.271619pt;}
.y169{bottom:190.426667pt;}
.y178{bottom:190.719268pt;}
.y10a{bottom:190.783949pt;}
.y123{bottom:191.226667pt;}
.yf3{bottom:191.996337pt;}
.y129{bottom:192.857009pt;}
.yc5{bottom:195.066667pt;}
.y14a{bottom:196.062303pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y18f{bottom:198.106667pt;}
.y13a{bottom:198.766471pt;}
.y1cb{bottom:200.186667pt;}
.y82{bottom:201.146667pt;}
.y128{bottom:201.351861pt;}
.y15c{bottom:202.106667pt;}
.y172{bottom:202.230309pt;}
.y13e{bottom:206.891981pt;}
.y142{bottom:207.226667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y13d{bottom:208.738688pt;}
.y127{bottom:209.194209pt;}
.yda{bottom:210.106667pt;}
.y109{bottom:211.479673pt;}
.yf2{bottom:212.782406pt;}
.y1b8{bottom:214.426667pt;}
.yd1{bottom:215.386667pt;}
.ya6{bottom:216.666667pt;}
.y13c{bottom:217.233540pt;}
.y126{bottom:217.707528pt;}
.y168{bottom:217.946667pt;}
.y122{bottom:218.746667pt;}
.y14b{bottom:219.969071pt;}
.y58{bottom:220.186667pt;}
.yc4{bottom:222.746667pt;}
.y18e{bottom:225.786667pt;}
.y141{bottom:226.106667pt;}
.y1ca{bottom:227.706667pt;}
.y81{bottom:228.666667pt;}
.y15b{bottom:229.626667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y108{bottom:232.148778pt;}
.yf1{bottom:233.608398pt;}
.yd9{bottom:237.626667pt;}
.y140{bottom:240.506667pt;}
.ya4{bottom:240.720000pt;}
.y144{bottom:241.537995pt;}
.y1b7{bottom:242.106667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y173{bottom:242.847118pt;}
.yd0{bottom:242.906667pt;}
.y14c{bottom:243.835950pt;}
.ya3{bottom:244.666667pt;}
.y167{bottom:245.626667pt;}
.y121{bottom:246.426667pt;}
.yc3{bottom:250.266667pt;}
.y107{bottom:252.844502pt;}
.y18d{bottom:253.306667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.yf0{bottom:254.407774pt;}
.y57{bottom:254.906667pt;}
.y1c9{bottom:255.386667pt;}
.y80{bottom:256.346667pt;}
.y15a{bottom:257.306667pt;}
.yd8{bottom:265.306667pt;}
.y14d{bottom:267.729422pt;}
.y1b6{bottom:269.626667pt;}
.ycf{bottom:270.586667pt;}
.y166{bottom:273.146667pt;}
.yef{bottom:275.193844pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y56{bottom:276.226667pt;}
.y18c{bottom:281.026667pt;}
.y1c8{bottom:282.946667pt;}
.y174{bottom:283.476548pt;}
.y7f{bottom:283.906667pt;}
.y159{bottom:284.866667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y120{bottom:287.426667pt;}
.ya2{bottom:287.746667pt;}
.yc2{bottom:291.266667pt;}
.yd7{bottom:292.866667pt;}
.yee{bottom:295.993220pt;}
.y55{bottom:297.346667pt;}
.yce{bottom:298.146667pt;}
.y18b{bottom:299.586667pt;}
.y165{bottom:300.866667pt;}
.y1b3{bottom:306.146667pt;}
.yf{bottom:309.452000pt;}
.y1c7{bottom:310.626667pt;}
.y85{bottom:311.586667pt;}
.y158{bottom:312.386667pt;}
.y11f{bottom:314.946667pt;}
.yed{bottom:316.779289pt;}
.y18a{bottom:317.986667pt;}
.yc1{bottom:318.786667pt;}
.yd6{bottom:320.386667pt;}
.y175{bottom:324.093357pt;}
.y7e{bottom:324.866667pt;}
.ycd{bottom:325.826667pt;}
.ya1{bottom:327.746667pt;}
.y164{bottom:328.386667pt;}
.y54{bottom:331.426667pt;}
.y189{bottom:332.386667pt;}
.y1a6{bottom:332.480000pt;}
.y1b2{bottom:333.826667pt;}
.ya0{bottom:335.746667pt;}
.yec{bottom:337.578666pt;}
.y1c6{bottom:338.146667pt;}
.y91{bottom:339.106667pt;}
.y11e{bottom:342.626667pt;}
.ye{bottom:343.809333pt;}
.yc0{bottom:346.466667pt;}
.yd5{bottom:347.746667pt;}
.y7d{bottom:352.386667pt;}
.y3e{bottom:353.026667pt;}
.ycc{bottom:353.346667pt;}
.y163{bottom:356.066667pt;}
.yeb{bottom:358.404657pt;}
.y1b1{bottom:361.346667pt;}
.yd{bottom:362.706666pt;}
.y176{bottom:364.722788pt;}
.y1c5{bottom:365.826667pt;}
.y53{bottom:365.986667pt;}
.y90{bottom:366.786667pt;}
.ybf{bottom:373.986667pt;}
.yea{bottom:379.190727pt;}
.y7c{bottom:380.066667pt;}
.y9f{bottom:381.026667pt;}
.ye7{bottom:381.986667pt;}
.y11d{bottom:383.426667pt;}
.y162{bottom:383.586667pt;}
.y1b0{bottom:389.026667pt;}
.y1c4{bottom:393.346667pt;}
.y3d{bottom:393.986667pt;}
.y8f{bottom:394.306667pt;}
.y52{bottom:400.386667pt;}
.ye9{bottom:401.586984pt;}
.ybe{bottom:401.666667pt;}
.y188{bottom:402.306667pt;}
.y7b{bottom:407.586667pt;}
.ycb{bottom:408.546667pt;}
.ye6{bottom:409.666667pt;}
.y11c{bottom:411.106667pt;}
.y3c{bottom:412.866667pt;}
.y1af{bottom:416.546667pt;}
.y187{bottom:420.706667pt;}
.y1c3{bottom:421.026667pt;}
.y8e{bottom:421.986667pt;}
.y161{bottom:424.546667pt;}
.ybd{bottom:429.186667pt;}
.y3b{bottom:431.266667pt;}
.y51{bottom:434.946667pt;}
.y7a{bottom:435.266667pt;}
.y157{bottom:436.226667pt;}
.ye5{bottom:437.186667pt;}
.y11b{bottom:438.626667pt;}
.y160{bottom:439.106667pt;}
.y16d{bottom:440.172872pt;}
.y1ae{bottom:444.226667pt;}
.yc{bottom:446.990669pt;}
.y1c2{bottom:448.546667pt;}
.y8d{bottom:449.506667pt;}
.y3a{bottom:449.666667pt;}
.y9e{bottom:456.866667pt;}
.y186{bottom:461.506667pt;}
.y79{bottom:462.786667pt;}
.yb{bottom:462.990669pt;}
.y156{bottom:463.746667pt;}
.y11a{bottom:466.306667pt;}
.y50{bottom:469.506667pt;}
.y105{bottom:470.146667pt;}
.y1ad{bottom:471.746667pt;}
.y39{bottom:475.426667pt;}
.y1c1{bottom:476.226667pt;}
.y8c{bottom:477.186667pt;}
.ye4{bottom:478.146667pt;}
.ya{bottom:478.990666pt;}
.ybc{bottom:484.386667pt;}
.y38{bottom:486.466667pt;}
.y185{bottom:489.186667pt;}
.y78{bottom:490.466667pt;}
.y155{bottom:491.426667pt;}
.y119{bottom:493.826667pt;}
.y9{bottom:494.990666pt;}
.ye3{bottom:496.706667pt;}
.y104{bottom:497.826667pt;}
.y1ac{bottom:499.453333pt;}
.y1c0{bottom:503.773333pt;}
.y4f{bottom:503.933333pt;}
.y9d{bottom:504.733333pt;}
.y37{bottom:504.893333pt;}
.ye2{bottom:511.133333pt;}
.ye8{bottom:511.215310pt;}
.ybb{bottom:512.093333pt;}
.y184{bottom:516.733333pt;}
.y77{bottom:518.013333pt;}
.y154{bottom:518.973333pt;}
.y118{bottom:521.533333pt;}
.y36{bottom:523.293333pt;}
.y103{bottom:525.373333pt;}
.y1ab{bottom:526.973333pt;}
.y1bf{bottom:531.453333pt;}
.y9c{bottom:532.413333pt;}
.y13f{bottom:532.573333pt;}
.y4e{bottom:538.493333pt;}
.yba{bottom:539.613333pt;}
.y35{bottom:541.693333pt;}
.y76{bottom:545.693333pt;}
.y117{bottom:549.053333pt;}
.y102{bottom:553.053333pt;}
.y1aa{bottom:554.333333pt;}
.y183{bottom:557.693333pt;}
.y1be{bottom:558.973333pt;}
.y9b{bottom:559.933333pt;}
.y34{bottom:560.093333pt;}
.yb9{bottom:567.293333pt;}
.y75{bottom:573.213333pt;}
.y8{bottom:573.786667pt;}
.y116{bottom:576.733333pt;}
.y33{bottom:578.493333pt;}
.y4d{bottom:579.773333pt;}
.y101{bottom:580.573333pt;}
.y182{bottom:585.373333pt;}
.y1bd{bottom:586.653333pt;}
.yca{bottom:587.613333pt;}
.y7{bottom:592.685334pt;}
.yb8{bottom:594.813333pt;}
.y32{bottom:596.893333pt;}
.y84{bottom:600.893333pt;}
.y115{bottom:603.933333pt;}
.y4c{bottom:607.293333pt;}
.y100{bottom:608.253333pt;}
.y181{bottom:612.893333pt;}
.y74{bottom:614.173333pt;}
.yc9{bottom:615.133333pt;}
.yb7{bottom:622.493333pt;}
.y31{bottom:622.653333pt;}
.yff{bottom:626.813333pt;}
.y8b{bottom:628.413333pt;}
.y4b{bottom:634.973333pt;}
.y68{bottom:638.973333pt;}
.y180{bottom:640.573333pt;}
.y30{bottom:641.053333pt;}
.y73{bottom:641.853333pt;}
.y153{bottom:642.653333pt;}
.yfe{bottom:645.213333pt;}
.y6{bottom:645.598667pt;}
.yb6{bottom:649.693333pt;}
.y8a{bottom:656.093333pt;}
.y2f{bottom:659.453333pt;}
.yfd{bottom:659.613333pt;}
.y106{bottom:660.082650pt;}
.y4a{bottom:662.493333pt;}
.y17f{bottom:668.093333pt;}
.y3{bottom:668.977329pt;}
.y72{bottom:669.373333pt;}
.y152{bottom:670.333333pt;}
.y67{bottom:673.853333pt;}
.y2e{bottom:677.853333pt;}
.y114{bottom:682.333333pt;}
.y125{bottom:682.474619pt;}
.y89{bottom:683.613333pt;}
.y2d{bottom:688.893333pt;}
.y49{bottom:690.173333pt;}
.y17e{bottom:695.613333pt;}
.y71{bottom:697.053333pt;}
.y151{bottom:697.533333pt;}
.y66{bottom:701.853333pt;}
.y2c{bottom:707.293333pt;}
.yb5{bottom:709.693333pt;}
.y9a{bottom:711.293333pt;}
.y48{bottom:717.693333pt;}
.y17d{bottom:723.333333pt;}
.y70{bottom:724.613333pt;}
.y2b{bottom:725.733333pt;}
.y65{bottom:729.573333pt;}
.yb4{bottom:737.253333pt;}
.y99{bottom:738.853333pt;}
.y2a{bottom:744.133333pt;}
.y47{bottom:745.413333pt;}
.y17c{bottom:750.853333pt;}
.y6f{bottom:752.293333pt;}
.y64{bottom:757.413333pt;}
.y29{bottom:762.533333pt;}
.yb3{bottom:764.933333pt;}
.y98{bottom:766.533333pt;}
.y46{bottom:772.933333pt;}
.y17b{bottom:778.213333pt;}
.y6e{bottom:779.813333pt;}
.y28{bottom:780.933333pt;}
.y2{bottom:781.661334pt;}
.y63{bottom:785.253333pt;}
.yb2{bottom:792.453333pt;}
.y97{bottom:794.053333pt;}
.y45{bottom:800.453333pt;}
.yde{bottom:801.413333pt;}
.y27{bottom:806.693333pt;}
.y6d{bottom:807.493333pt;}
.y62{bottom:813.093333pt;}
.y96{bottom:821.733333pt;}
.y26{bottom:825.093333pt;}
.y15f{bottom:827.173333pt;}
.y17a{bottom:827.653333pt;}
.y193{bottom:827.801282pt;}
.y44{bottom:828.133333pt;}
.y1a4{bottom:828.289680pt;}
.yb1{bottom:833.413333pt;}
.y6c{bottom:835.013333pt;}
.y1a3{bottom:837.618075pt;}
.y61{bottom:840.933333pt;}
.y25{bottom:843.493333pt;}
.y1a2{bottom:846.930171pt;}
.y95{bottom:849.253333pt;}
.y43{bottom:855.653333pt;}
.y1a0{bottom:856.258547pt;}
.yaf{bottom:858.186667pt;}
.y1{bottom:859.312000pt;}
.yae{bottom:860.933333pt;}
.y6b{bottom:862.693333pt;}
.y19f{bottom:865.570644pt;}
.y60{bottom:868.773333pt;}
.y19e{bottom:874.882740pt;}
.y24{bottom:876.613333pt;}
.y150{bottom:876.933333pt;}
.y42{bottom:883.333333pt;}
.y19c{bottom:884.211116pt;}
.yad{bottom:888.933333pt;}
.y6a{bottom:890.213333pt;}
.y19a{bottom:893.525166pt;}
.y5f{bottom:896.613333pt;}
.y198{bottom:902.850286pt;}
.y1b5{bottom:904.453333pt;}
.y41{bottom:910.853333pt;}
.yac{bottom:917.093333pt;}
.y23{bottom:917.573333pt;}
.y69{bottom:917.893333pt;}
.y195{bottom:921.982411pt;}
.y5e{bottom:924.453333pt;}
.y22{bottom:945.120000pt;}
.y5d{bottom:945.280000pt;}
.y88{bottom:945.440000pt;}
.ye1{bottom:945.600000pt;}
.h30{height:8.823700pt;}
.h31{height:8.839979pt;}
.h2f{height:9.312096pt;}
.h18{height:16.000692pt;}
.h14{height:20.800525pt;}
.h16{height:26.206875pt;}
.h7{height:28.560000pt;}
.h2e{height:28.887899pt;}
.h21{height:28.999070pt;}
.h23{height:29.057068pt;}
.h22{height:31.609082pt;}
.h1a{height:33.918750pt;}
.h6{height:40.800000pt;}
.hb{height:42.084375pt;}
.h3{height:42.840000pt;}
.he{height:44.648750pt;}
.h2{height:48.960000pt;}
.h17{height:52.134375pt;}
.h2a{height:54.703477pt;}
.h2b{height:54.822397pt;}
.h2c{height:54.825822pt;}
.h24{height:55.591649pt;}
.hf{height:56.156250pt;}
.h26{height:57.627045pt;}
.h27{height:57.752321pt;}
.h28{height:57.784611pt;}
.hd{height:57.787500pt;}
.h34{height:62.781250pt;}
.hc{height:62.812500pt;}
.h1c{height:62.820664pt;}
.h1f{height:62.829182pt;}
.h33{height:62.834393pt;}
.h9{height:64.500000pt;}
.h1d{height:64.508383pt;}
.h32{height:65.014101pt;}
.h5{height:69.360000pt;}
.h15{height:69.537951pt;}
.ha{height:72.655000pt;}
.h19{height:75.428416pt;}
.h11{height:76.055625pt;}
.h13{height:94.812500pt;}
.h4{height:105.826671pt;}
.h12{height:108.055625pt;}
.h2d{height:113.308024pt;}
.h20{height:236.565381pt;}
.h1e{height:268.844770pt;}
.h25{height:287.035666pt;}
.h29{height:383.027128pt;}
.h1b{height:417.584413pt;}
.h10{height:1055.998213pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:9.600002pt;}
.w5{width:40.001059pt;}
.wd{width:82.436420pt;}
.w8{width:293.458259pt;}
.w9{width:358.559120pt;}
.we{width:459.797712pt;}
.wa{width:479.816008pt;}
.w2{width:566.928019pt;}
.wb{width:593.537252pt;}
.w7{width:620.794406pt;}
.wc{width:623.176191pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.998333pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:0.980608pt;}
.x13{left:1.963591pt;}
.xf{left:3.300670pt;}
.x1b{left:12.011160pt;}
.x36{left:29.054547pt;}
.x35{left:37.470126pt;}
.x2d{left:44.464294pt;}
.x2f{left:45.382917pt;}
.x39{left:51.551215pt;}
.x3a{left:56.165929pt;}
.x2e{left:58.999273pt;}
.x30{left:63.013308pt;}
.x19{left:66.413816pt;}
.x3e{left:83.907332pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x7{left:96.032000pt;}
.x40{left:96.997392pt;}
.x12{left:100.352000pt;}
.x31{left:106.542928pt;}
.x8{left:110.752000pt;}
.x5{left:114.432000pt;}
.x32{left:123.285565pt;}
.xe{left:144.080000pt;}
.x14{left:153.626667pt;}
.x3b{left:157.960351pt;}
.x33{left:163.098715pt;}
.x2b{left:179.724055pt;}
.x4{left:180.874667pt;}
.x1d{left:181.989743pt;}
.x10{left:184.026667pt;}
.x2c{left:186.169229pt;}
.x2a{left:189.132527pt;}
.xb{left:195.866667pt;}
.x1e{left:208.900198pt;}
.xc{left:236.186667pt;}
.x28{left:245.509281pt;}
.x29{left:262.548248pt;}
.x37{left:263.585000pt;}
.x26{left:268.610663pt;}
.x25{left:270.919566pt;}
.x1f{left:272.876578pt;}
.x21{left:274.166847pt;}
.x22{left:283.797568pt;}
.x20{left:286.729998pt;}
.x11{left:288.066667pt;}
.x27{left:293.736965pt;}
.x23{left:305.602506pt;}
.xd{left:323.746667pt;}
.x24{left:326.049266pt;}
.x6{left:379.106667pt;}
.x1a{left:390.146667pt;}
.x15{left:400.706667pt;}
.x3{left:404.408000pt;}
.x1c{left:454.653333pt;}
.x9{left:520.091667pt;}
.xa{left:525.533333pt;}
.x3d{left:556.893333pt;}
.x34{left:576.093333pt;}
.x16{left:577.211667pt;}
.x17{left:582.653333pt;}
.x38{left:690.053333pt;}
.x18{left:718.053333pt;}
.x3c{left:720.133333pt;}
}




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