
    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_61a3bbbed557431f4ea13b85.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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_60b79d24cf4fa0050f9e06d5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_93a1a44b38ad61dca3ee6785.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.766000;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_3fdf8a1263de044ad3bcd51f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.906000;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_5884dec17ec2e3eaa4a5d561.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_8d62db9d63a39ace240db112.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893000;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_558103626ba94da6fafa02a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_58da092938ba341ec5e5c656.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.400000;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_443a5651940088f4eda696be.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.872000;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_92b68c3b0d60b8aac93361b6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.773000;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;}
.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);}
.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);}
.v3{vertical-align:-34.188000px;}
.v4{vertical-align:-17.358000px;}
.v6{vertical-align:-8.964000px;}
.vd{vertical-align:-7.170000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.542000px;}
.v2{vertical-align:5.982000px;}
.va{vertical-align:7.116000px;}
.v7{vertical-align:8.964000px;}
.v9{vertical-align:16.080000px;}
.vb{vertical-align:24.690000px;}
.v1{vertical-align:28.206000px;}
.v8{vertical-align:33.654000px;}
.vc{vertical-align:40.770000px;}
.ls0{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.001032px;}
.ls1{letter-spacing:0.001500px;}
.ls26{letter-spacing:0.002383px;}
.ls3e{letter-spacing:0.002616px;}
.ls49{letter-spacing:0.003746px;}
.ls1f{letter-spacing:0.234017px;}
.lse{letter-spacing:0.240017px;}
.ls39{letter-spacing:0.362725px;}
.ls2c{letter-spacing:1.011634px;}
.ls1a{letter-spacing:1.130725px;}
.ls10{letter-spacing:1.136725px;}
.lsd{letter-spacing:2.511797px;}
.ls31{letter-spacing:2.986348px;}
.ls4c{letter-spacing:2.988113px;}
.ls2{letter-spacing:2.988600px;}
.ls3{letter-spacing:2.991797px;}
.ls13{letter-spacing:2.994017px;}
.ls20{letter-spacing:3.000017px;}
.ls11{letter-spacing:3.588017px;}
.ls15{letter-spacing:3.594017px;}
.ls21{letter-spacing:4.057702px;}
.ls30{letter-spacing:4.063702px;}
.lsf{letter-spacing:5.499797px;}
.ls46{letter-spacing:5.634017px;}
.ls19{letter-spacing:6.091702px;}
.ls1c{letter-spacing:6.810017px;}
.ls16{letter-spacing:6.816017px;}
.ls3a{letter-spacing:7.051702px;}
.ls43{letter-spacing:7.776017px;}
.ls41{letter-spacing:7.826725px;}
.ls7{letter-spacing:8.367600px;}
.ls44{letter-spacing:8.792725px;}
.ls6{letter-spacing:10.955674px;}
.ls4{letter-spacing:10.961674px;}
.ls5{letter-spacing:10.963200px;}
.ls38{letter-spacing:11.293702px;}
.ls18{letter-spacing:12.325032px;}
.ls1e{letter-spacing:12.331032px;}
.ls48{letter-spacing:13.279932px;}
.ls12{letter-spacing:13.285032px;}
.ls51{letter-spacing:14.947032px;}
.ls2b{letter-spacing:15.554383px;}
.ls28{letter-spacing:15.560383px;}
.ls2d{letter-spacing:15.566383px;}
.lsc{letter-spacing:15.649032px;}
.ls4f{letter-spacing:15.912538px;}
.ls37{letter-spacing:16.225032px;}
.ls4a{letter-spacing:16.273200px;}
.ls1b{letter-spacing:16.603032px;}
.ls40{letter-spacing:17.528383px;}
.ls14{letter-spacing:17.827032px;}
.ls52{letter-spacing:17.893032px;}
.ls9{letter-spacing:18.773400px;}
.ls3c{letter-spacing:18.907032px;}
.ls3b{letter-spacing:19.533403px;}
.ls22{letter-spacing:19.588348px;}
.ls4e{letter-spacing:19.921032px;}
.ls4b{letter-spacing:19.921932px;}
.ls4d{letter-spacing:19.927032px;}
.ls35{letter-spacing:20.179032px;}
.ls2e{letter-spacing:20.240383px;}
.ls3f{letter-spacing:20.329702px;}
.ls2a{letter-spacing:21.057797px;}
.ls2f{letter-spacing:21.380383px;}
.ls29{letter-spacing:22.609702px;}
.ls3d{letter-spacing:22.857403px;}
.lsb{letter-spacing:23.647702px;}
.ls23{letter-spacing:23.689702px;}
.lsa{letter-spacing:23.914200px;}
.ls36{letter-spacing:24.235702px;}
.ls33{letter-spacing:25.441032px;}
.ls47{letter-spacing:25.653403px;}
.ls45{letter-spacing:25.659403px;}
.ls8{letter-spacing:26.900600px;}
.ls27{letter-spacing:26.972383px;}
.ls34{letter-spacing:27.229702px;}
.ls32{letter-spacing:28.702348px;}
.ls25{letter-spacing:28.759702px;}
.ls1d{letter-spacing:32.425702px;}
.ls17{letter-spacing:32.431702px;}
.ls42{letter-spacing:37.225702px;}
.ls24{letter-spacing:2165.308348px;}
.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;}
}
.ws99{word-spacing:-65.693384px;}
.ws9{word-spacing:-64.904742px;}
.ws61{word-spacing:-49.075768px;}
.ws54{word-spacing:-45.985237px;}
.ws57{word-spacing:-42.082022px;}
.ws44{word-spacing:-14.943900px;}
.ws13{word-spacing:-13.449600px;}
.ws5{word-spacing:-11.955150px;}
.ws8{word-spacing:-10.460700px;}
.ws7{word-spacing:-5.487426px;}
.ws12{word-spacing:-5.057050px;}
.ws59{word-spacing:-4.986025px;}
.ws56{word-spacing:-4.984775px;}
.ws5c{word-spacing:-4.980025px;}
.ws5e{word-spacing:-4.978775px;}
.ws14{word-spacing:-3.586545px;}
.ws6e{word-spacing:-0.339866px;}
.ws6d{word-spacing:-0.336008px;}
.ws3{word-spacing:-0.095641px;}
.ws53{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.053200px;}
.ws5a{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.ws8d{word-spacing:0.179327px;}
.ws8e{word-spacing:0.239102px;}
.ws92{word-spacing:0.478205px;}
.ws6c{word-spacing:0.586450px;}
.ws6a{word-spacing:0.597756px;}
.ws6f{word-spacing:0.620134px;}
.ws4d{word-spacing:0.777083px;}
.wsac{word-spacing:0.896634px;}
.ws4e{word-spacing:0.956410px;}
.wsc4{word-spacing:1.016185px;}
.ws34{word-spacing:1.135736px;}
.ws3a{word-spacing:1.315063px;}
.ws22{word-spacing:1.340063px;}
.wsb7{word-spacing:1.434614px;}
.ws35{word-spacing:1.494390px;}
.wsab{word-spacing:1.554166px;}
.ws4b{word-spacing:1.673717px;}
.wsbc{word-spacing:1.733492px;}
.wsa6{word-spacing:1.793268px;}
.ws8c{word-spacing:1.853044px;}
.wsa7{word-spacing:1.912819px;}
.ws98{word-spacing:1.972595px;}
.ws6{word-spacing:2.008474px;}
.ws17{word-spacing:2.032370px;}
.wsa4{word-spacing:2.092146px;}
.wsaa{word-spacing:2.211697px;}
.ws2b{word-spacing:2.331248px;}
.ws85{word-spacing:2.450800px;}
.ws36{word-spacing:2.510575px;}
.ws43{word-spacing:2.689902px;}
.ws8b{word-spacing:2.749678px;}
.ws4a{word-spacing:2.869229px;}
.wsa3{word-spacing:2.929004px;}
.ws95{word-spacing:2.988780px;}
.ws32{word-spacing:3.048556px;}
.ws46{word-spacing:3.108331px;}
.ws38{word-spacing:3.168107px;}
.wsaf{word-spacing:3.227882px;}
.ws50{word-spacing:3.287658px;}
.wsba{word-spacing:3.407209px;}
.ws33{word-spacing:3.466985px;}
.ws97{word-spacing:3.526760px;}
.wsb3{word-spacing:3.586536px;}
.ws3d{word-spacing:3.646312px;}
.wsd9{word-spacing:3.682186px;}
.ws4f{word-spacing:3.765863px;}
.ws45{word-spacing:3.825638px;}
.ws93{word-spacing:3.930246px;}
.ws94{word-spacing:3.945190px;}
.wsc3{word-spacing:4.004965px;}
.ws2a{word-spacing:4.064741px;}
.wsbd{word-spacing:4.124516px;}
.ws84{word-spacing:4.244068px;}
.wsa9{word-spacing:4.363619px;}
.ws1e{word-spacing:4.423394px;}
.ws7f{word-spacing:4.483170px;}
.ws1f{word-spacing:4.495136px;}
.ws42{word-spacing:4.542946px;}
.ws9c{word-spacing:4.602721px;}
.ws9d{word-spacing:4.662497px;}
.wsb0{word-spacing:4.722272px;}
.wsd6{word-spacing:4.734239px;}
.ws26{word-spacing:4.782048px;}
.ws2d{word-spacing:4.901599px;}
.ws77{word-spacing:4.954177px;}
.ws18{word-spacing:4.961375px;}
.ws96{word-spacing:4.980900px;}
.ws41{word-spacing:5.021150px;}
.wsdc{word-spacing:5.068984px;}
.ws19{word-spacing:5.200477px;}
.ws71{word-spacing:5.260253px;}
.ws72{word-spacing:5.300134px;}
.wsda{word-spacing:5.308087px;}
.ws75{word-spacing:5.320028px;}
.ws40{word-spacing:5.379804px;}
.wsce{word-spacing:5.403728px;}
.wsa8{word-spacing:5.439580px;}
.wsd2{word-spacing:5.451548px;}
.ws1d{word-spacing:5.499355px;}
.wsd0{word-spacing:5.547190px;}
.wsc1{word-spacing:5.618906px;}
.wsde{word-spacing:5.690651px;}
.wse{word-spacing:5.702630px;}
.wsbb{word-spacing:5.858009px;}
.wsbf{word-spacing:5.917784px;}
.ws10{word-spacing:5.917824px;}
.ws27{word-spacing:5.977560px;}
.ws9b{word-spacing:6.037336px;}
.ws37{word-spacing:6.156887px;}
.wsbe{word-spacing:6.216662px;}
.ws39{word-spacing:6.336214px;}
.ws1a{word-spacing:6.455765px;}
.wsd7{word-spacing:6.455781px;}
.ws11{word-spacing:6.455808px;}
.ws2c{word-spacing:6.515540px;}
.ws62{word-spacing:6.590904px;}
.ws68{word-spacing:6.754643px;}
.ws23{word-spacing:6.838346px;}
.ws48{word-spacing:6.874194px;}
.ws1b{word-spacing:6.933970px;}
.wscc{word-spacing:6.981808px;}
.ws2e{word-spacing:6.993745px;}
.wsf{word-spacing:6.993792px;}
.ws29{word-spacing:7.053521px;}
.ws47{word-spacing:7.113296px;}
.wsb6{word-spacing:7.220911px;}
.ws3b{word-spacing:7.232848px;}
.ws3f{word-spacing:7.292623px;}
.ws31{word-spacing:7.352399px;}
.ws20{word-spacing:7.460014px;}
.ws9a{word-spacing:7.471950px;}
.ws4c{word-spacing:7.591501px;}
.wsb5{word-spacing:7.794758px;}
.wsd5{word-spacing:7.890399px;}
.ws8a{word-spacing:7.938220px;}
.ws52{word-spacing:7.950155px;}
.wsd{word-spacing:7.962163px;}
.ws4{word-spacing:7.986040px;}
.ws51{word-spacing:8.009930px;}
.wscd{word-spacing:8.081681px;}
.wsc6{word-spacing:8.249033px;}
.wsb2{word-spacing:8.368584px;}
.ws49{word-spacing:8.488135px;}
.ws2f{word-spacing:8.667462px;}
.ws7e{word-spacing:8.702134px;}
.ws30{word-spacing:8.727238px;}
.ws1c{word-spacing:8.846789px;}
.wsdb{word-spacing:8.990273px;}
.wsb9{word-spacing:9.026116px;}
.ws82{word-spacing:9.324994px;}
.wsdd{word-spacing:9.325017px;}
.ws9f{word-spacing:9.444545px;}
.wsca{word-spacing:9.468479px;}
.wsc0{word-spacing:9.564096px;}
.wsb4{word-spacing:9.611941px;}
.ws3c{word-spacing:9.623872px;}
.ws3e{word-spacing:9.683647px;}
.ws7d{word-spacing:9.718309px;}
.ws74{word-spacing:9.836134px;}
.ws28{word-spacing:9.862974px;}
.wsa2{word-spacing:9.982525px;}
.ws64{word-spacing:9.998904px;}
.wsc5{word-spacing:10.281403px;}
.wsa0{word-spacing:10.580281px;}
.wsa1{word-spacing:10.640057px;}
.ws76{word-spacing:10.759608px;}
.wsae{word-spacing:10.819384px;}
.wsd3{word-spacing:10.855276px;}
.wsa5{word-spacing:10.879159px;}
.ws91{word-spacing:10.998710px;}
.ws67{word-spacing:11.018134px;}
.wsb1{word-spacing:11.058486px;}
.ws8f{word-spacing:11.118262px;}
.ws83{word-spacing:11.178037px;}
.wsc2{word-spacing:11.237813px;}
.wscb{word-spacing:11.237841px;}
.ws7a{word-spacing:11.357364px;}
.ws90{word-spacing:11.835569px;}
.ws15{word-spacing:11.907221px;}
.wsa{word-spacing:11.907329px;}
.ws80{word-spacing:11.930507px;}
.ws66{word-spacing:12.028309px;}
.wsb8{word-spacing:12.313774px;}
.wsb{word-spacing:12.373632px;}
.ws81{word-spacing:12.452507px;}
.wsd4{word-spacing:12.624638px;}
.wsd1{word-spacing:12.959383px;}
.ws9e{word-spacing:12.971305px;}
.wsc{word-spacing:13.073011px;}
.wsc8{word-spacing:14.250539px;}
.wscf{word-spacing:14.346180px;}
.ws16{word-spacing:14.943900px;}
.ws5d{word-spacing:15.416904px;}
.ws55{word-spacing:15.422904px;}
.ws6b{word-spacing:16.518241px;}
.wsd8{word-spacing:17.119775px;}
.wsc7{word-spacing:17.932725px;}
.ws7b{word-spacing:18.739984px;}
.ws58{word-spacing:18.740904px;}
.ws21{word-spacing:19.367343px;}
.wsad{word-spacing:19.845499px;}
.wsc9{word-spacing:19.845549px;}
.ws25{word-spacing:19.893370px;}
.ws1{word-spacing:19.896875px;}
.ws79{word-spacing:20.118808px;}
.ws70{word-spacing:21.014904px;}
.ws60{word-spacing:22.058904px;}
.ws78{word-spacing:25.382904px;}
.ws73{word-spacing:25.700904px;}
.ws69{word-spacing:27.170904px;}
.ws89{word-spacing:233.077604px;}
.ws86{word-spacing:260.239705px;}
.ws88{word-spacing:310.738259px;}
.ws87{word-spacing:340.626134px;}
.ws24{word-spacing:454.135950px;}
.ws65{word-spacing:1160.603050px;}
.ws63{word-spacing:1345.668307px;}
.ws5f{word-spacing:1585.786892px;}
.ws5b{word-spacing:1599.535280px;}
.ws7c{word-spacing:1665.145984px;}
._5{margin-left:-10.636606px;}
._4{margin-left:-9.516518px;}
._9{margin-left:-7.830604px;}
._7{margin-left:-6.455781px;}
._6{margin-left:-5.379826px;}
._1{margin-left:-3.511213px;}
._0{margin-left:-2.128008px;}
._2{margin-left:-1.099891px;}
._8{width:1.966613px;}
._3{width:3.634366px;}
._11{width:4.667057px;}
._10{width:6.319438px;}
._1c{width:14.411909px;}
._1d{width:15.972034px;}
._b{width:16.976270px;}
._d{width:18.948865px;}
._e{width:20.957322px;}
._13{width:23.171396px;}
._1f{width:24.221108px;}
._12{width:25.320941px;}
._1e{width:27.230306px;}
._c{width:29.887800px;}
._a{width:39.223025px;}
._18{width:245.032754px;}
._1a{width:251.010329px;}
._15{width:274.920629px;}
._17{width:298.830929px;}
._16{width:322.693409px;}
._1b{width:328.670984px;}
._19{width:352.581284px;}
._14{width:370.514009px;}
._f{width:466.539278px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:35.865600px;}
.fs10{font-size:40.647600px;}
.fsb{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.200200px;}
.fse{font-size:53.798400px;}
.fsc{font-size:59.058000px;}
.fsf{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:77.708400px;}
.fs6{font-size:95.641200px;}
.fs9{font-size:101.619000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y4b{bottom:67.995000px;}
.yd1{bottom:84.454500px;}
.y4a{bottom:87.421500px;}
.y7e{bottom:88.168500px;}
.yb2{bottom:88.170000px;}
.y132{bottom:90.309000px;}
.yeb{bottom:90.757500px;}
.y4{bottom:97.125005px;}
.yd0{bottom:101.640000px;}
.y49{bottom:102.366000px;}
.y18a{bottom:103.113000px;}
.y131{bottom:105.253500px;}
.y7d{bottom:105.889500px;}
.yb1{bottom:105.964500px;}
.y154{bottom:105.981000px;}
.y11b{bottom:106.369500px;}
.y138{bottom:108.652500px;}
.y48{bottom:117.310500px;}
.y189{bottom:117.940500px;}
.y7c{bottom:123.609000px;}
.yb0{bottom:123.759000px;}
.y153{bottom:123.793500px;}
.y11a{bottom:124.569000px;}
.y137{bottom:129.135000px;}
.y188{bottom:132.885000px;}
.y21{bottom:139.264499px;}
.y7b{bottom:141.330000px;}
.yaf{bottom:141.553500px;}
.y152{bottom:141.606000px;}
.y119{bottom:142.768500px;}
.y47{bottom:144.957000px;}
.y187{bottom:147.711000px;}
.ycf{bottom:157.515000px;}
.y7a{bottom:159.049500px;}
.yae{bottom:159.348000px;}
.y46{bottom:159.378000px;}
.y151{bottom:159.418500px;}
.y118{bottom:160.968000px;}
.y186{bottom:162.655500px;}
.y79{bottom:176.769000px;}
.yce{bottom:176.943000px;}
.yad{bottom:177.142500px;}
.y150{bottom:177.231000px;}
.y185{bottom:177.600000px;}
.y45{bottom:178.660500px;}
.y117{bottom:179.167500px;}
.y136{bottom:179.496000px;}
.ycd{bottom:191.886000px;}
.y184{bottom:192.427500px;}
.y135{bottom:194.439000px;}
.yac{bottom:194.937000px;}
.y14f{bottom:195.043500px;}
.y18{bottom:196.933500px;}
.y116{bottom:197.367000px;}
.y78{bottom:206.019000px;}
.ycc{bottom:206.830500px;}
.y44{bottom:207.229500px;}
.y183{bottom:207.370500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y14e{bottom:212.854500px;}
.y115{bottom:215.566500px;}
.yab{bottom:221.421000px;}
.ycb{bottom:221.775000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y182{bottom:222.198000px;}
.y77{bottom:223.740000px;}
.y43{bottom:225.492000px;}
.y14d{bottom:230.667000px;}
.y114{bottom:233.766000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yca{bottom:236.718000px;}
.y181{bottom:237.142500px;}
.y76{bottom:241.459500px;}
.y42{bottom:243.754500px;}
.y14c{bottom:248.479500px;}
.yc9{bottom:251.662500px;}
.y113{bottom:251.965500px;}
.y180{bottom:251.970000px;}
.yaa{bottom:256.456500px;}
.y75{bottom:259.180500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y41{bottom:262.017000px;}
.y14b{bottom:266.292000px;}
.yc8{bottom:266.607000px;}
.y17f{bottom:266.913000px;}
.y112{bottom:270.165000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.ya9{bottom:274.251000px;}
.y74{bottom:276.900000px;}
.y40{bottom:280.279500px;}
.yc7{bottom:281.550000px;}
.y17e{bottom:281.857500px;}
.y14a{bottom:284.104500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y111{bottom:288.364500px;}
.y73{bottom:294.619500px;}
.ya7{bottom:294.949500px;}
.yc6{bottom:296.494500px;}
.y17d{bottom:296.685000px;}
.y3f{bottom:298.542000px;}
.y149{bottom:301.917000px;}
.y110{bottom:306.564000px;}
.ya8{bottom:308.940000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yc5{bottom:311.439000px;}
.y17c{bottom:311.628000px;}
.y72{bottom:312.340500px;}
.ya4{bottom:312.960000px;}
.y3e{bottom:316.804500px;}
.y148{bottom:319.728000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y10f{bottom:324.765000px;}
.yc4{bottom:326.382000px;}
.y17b{bottom:326.572500px;}
.ya6{bottom:327.156000px;}
.y71{bottom:330.060000px;}
.ya5{bottom:331.806000px;}
.y3d{bottom:335.067000px;}
.y147{bottom:337.540500px;}
.yc3{bottom:341.326500px;}
.y17a{bottom:341.400000px;}
.y10e{bottom:342.964500px;}
.y70{bottom:347.781000px;}
.yf{bottom:348.133500px;}
.ya3{bottom:350.151000px;}
.y3c{bottom:353.329500px;}
.y146{bottom:355.353000px;}
.yc2{bottom:356.269500px;}
.y179{bottom:356.344500px;}
.y10d{bottom:361.164000px;}
.ya2{bottom:367.945500px;}
.y178{bottom:371.170500px;}
.yc1{bottom:371.214000px;}
.y145{bottom:373.165500px;}
.y6f{bottom:377.031000px;}
.y10c{bottom:379.363500px;}
.y3b{bottom:382.536000px;}
.ya1{bottom:385.740000px;}
.y177{bottom:386.115000px;}
.yc0{bottom:386.158500px;}
.ye{bottom:386.785499px;}
.y144{bottom:390.978000px;}
.y6e{bottom:394.750500px;}
.y10b{bottom:397.563000px;}
.y176{bottom:400.942500px;}
.ybf{bottom:401.101500px;}
.ya0{bottom:403.534500px;}
.yd{bottom:408.044999px;}
.y143{bottom:408.790500px;}
.y6d{bottom:412.470000px;}
.y10a{bottom:415.762500px;}
.y175{bottom:415.885500px;}
.ybe{bottom:416.046000px;}
.y9f{bottom:421.329000px;}
.y6c{bottom:430.191000px;}
.y174{bottom:430.713000px;}
.ybd{bottom:430.990500px;}
.y109{bottom:433.962000px;}
.y142{bottom:435.327000px;}
.y9e{bottom:439.123500px;}
.y173{bottom:445.657500px;}
.ybc{bottom:445.933500px;}
.y3a{bottom:446.002500px;}
.y108{bottom:452.161500px;}
.y6b{bottom:456.451500px;}
.y9d{bottom:456.918000px;}
.y172{bottom:460.602000px;}
.ybb{bottom:460.878000px;}
.y107{bottom:470.361000px;}
.y141{bottom:470.470500px;}
.y171{bottom:475.428000px;}
.yba{bottom:475.822500px;}
.y9c{bottom:479.382000px;}
.y9b{bottom:483.402000px;}
.y140{bottom:488.283000px;}
.y106{bottom:488.560500px;}
.y39{bottom:489.822000px;}
.y170{bottom:490.372500px;}
.yb9{bottom:490.765500px;}
.y6a{bottom:491.041500px;}
.yc{bottom:502.864502px;}
.y16f{bottom:505.200000px;}
.yb8{bottom:505.710000px;}
.y105{bottom:506.760000px;}
.y69{bottom:508.761000px;}
.y9a{bottom:514.417500px;}
.y38{bottom:515.226000px;}
.y13f{bottom:517.809000px;}
.y99{bottom:518.437500px;}
.y16e{bottom:520.144500px;}
.yb7{bottom:520.654500px;}
.yb{bottom:520.864502px;}
.y104{bottom:524.959500px;}
.y68{bottom:526.482000px;}
.yea{bottom:529.264500px;}
.y37{bottom:531.664500px;}
.y36{bottom:532.098000px;}
.y16d{bottom:534.970500px;}
.y13e{bottom:535.621500px;}
.ya{bottom:538.864499px;}
.yb6{bottom:541.665000px;}
.y103{bottom:543.159000px;}
.y67{bottom:544.201500px;}
.ye9{bottom:546.859500px;}
.y35{bottom:548.103000px;}
.y98{bottom:549.453000px;}
.y16c{bottom:549.915000px;}
.y13d{bottom:553.434000px;}
.y97{bottom:553.473000px;}
.yb5{bottom:556.608000px;}
.y9{bottom:556.864499px;}
.y102{bottom:561.358500px;}
.y66{bottom:561.922500px;}
.ye8{bottom:564.453000px;}
.y34{bottom:564.541500px;}
.y16b{bottom:564.742500px;}
.y130{bottom:567.213000px;}
.y13c{bottom:571.245000px;}
.yb4{bottom:575.724000px;}
.y101{bottom:579.558000px;}
.y65{bottom:579.642000px;}
.y16a{bottom:579.687000px;}
.y96{bottom:579.958500px;}
.y33{bottom:580.980000px;}
.ye7{bottom:582.048000px;}
.y12f{bottom:585.478500px;}
.y13b{bottom:589.057500px;}
.y169{bottom:594.513000px;}
.y64{bottom:597.363000px;}
.y32{bottom:597.418500px;}
.y100{bottom:597.757500px;}
.y95{bottom:600.657000px;}
.y12e{bottom:603.744000px;}
.y13a{bottom:606.870000px;}
.ye6{bottom:607.930500px;}
.y168{bottom:609.457500px;}
.y31{bottom:613.855500px;}
.yb3{bottom:614.913000px;}
.y63{bottom:615.082500px;}
.yff{bottom:615.957000px;}
.y92{bottom:618.666000px;}
.y12d{bottom:622.008000px;}
.y134{bottom:623.295000px;}
.y167{bottom:624.285000px;}
.y30{bottom:630.294000px;}
.y62{bottom:632.802000px;}
.y94{bottom:632.863500px;}
.yfe{bottom:634.156500px;}
.y93{bottom:637.512000px;}
.y133{bottom:638.239500px;}
.y166{bottom:639.229500px;}
.y12c{bottom:640.273500px;}
.y91{bottom:645.196500px;}
.y8{bottom:645.510000px;}
.y2f{bottom:646.732500px;}
.y61{bottom:650.523000px;}
.yfd{bottom:652.356000px;}
.ye5{bottom:653.043000px;}
.y165{bottom:654.055500px;}
.y139{bottom:657.679500px;}
.y12b{bottom:658.539000px;}
.y8e{bottom:663.207000px;}
.y7{bottom:666.771000px;}
.y60{bottom:668.242500px;}
.y164{bottom:668.883000px;}
.yfc{bottom:670.555500px;}
.ye4{bottom:670.636500px;}
.y2e{bottom:672.138000px;}
.y12a{bottom:676.804500px;}
.y90{bottom:677.404500px;}
.y8f{bottom:682.053000px;}
.y5f{bottom:685.963500px;}
.ye3{bottom:688.230000px;}
.yfb{bottom:688.755000px;}
.y163{bottom:692.677500px;}
.y129{bottom:695.070000px;}
.y8d{bottom:700.398000px;}
.y5e{bottom:703.683000px;}
.ye2{bottom:705.825000px;}
.yfa{bottom:706.954500px;}
.y128{bottom:713.335500px;}
.y8c{bottom:718.192500px;}
.y5d{bottom:721.402500px;}
.ye1{bottom:723.418500px;}
.yf9{bottom:725.154000px;}
.y6{bottom:726.298500px;}
.y162{bottom:728.193000px;}
.y127{bottom:731.601000px;}
.y2d{bottom:732.798000px;}
.y8b{bottom:735.987000px;}
.y5c{bottom:739.123500px;}
.ye0{bottom:741.013500px;}
.yf8{bottom:743.353500px;}
.y2c{bottom:747.742500px;}
.y126{bottom:749.866500px;}
.y3{bottom:752.599495px;}
.y8a{bottom:753.781500px;}
.y161{bottom:754.917000px;}
.y5b{bottom:756.843000px;}
.ydf{bottom:758.607000px;}
.yf7{bottom:761.553000px;}
.y125{bottom:768.132000px;}
.y89{bottom:771.576000px;}
.y2b{bottom:773.662500px;}
.y5a{bottom:774.564000px;}
.yde{bottom:776.200500px;}
.y124{bottom:786.397500px;}
.y2a{bottom:789.265500px;}
.y88{bottom:789.370500px;}
.y160{bottom:790.432500px;}
.yf6{bottom:792.241500px;}
.y59{bottom:792.283500px;}
.ydd{bottom:793.795500px;}
.y123{bottom:804.661500px;}
.y29{bottom:804.870000px;}
.y87{bottom:807.165000px;}
.y15f{bottom:808.306500px;}
.y58{bottom:810.003000px;}
.yf5{bottom:810.441000px;}
.ydc{bottom:811.389000px;}
.y122{bottom:822.927000px;}
.y86{bottom:824.959500px;}
.y15e{bottom:826.180500px;}
.y28{bottom:826.893000px;}
.y57{bottom:827.724000px;}
.yf4{bottom:828.640500px;}
.ydb{bottom:828.984000px;}
.y15d{bottom:844.054500px;}
.y56{bottom:845.443500px;}
.yda{bottom:846.577500px;}
.y85{bottom:851.443500px;}
.yf3{bottom:859.329000px;}
.y121{bottom:861.121500px;}
.y15c{bottom:861.930000px;}
.y55{bottom:863.164500px;}
.yd9{bottom:864.172500px;}
.y27{bottom:864.483000px;}
.yf2{bottom:877.528500px;}
.y2{bottom:879.369000px;}
.y15b{bottom:879.804000px;}
.y54{bottom:880.884000px;}
.yd8{bottom:881.766000px;}
.y84{bottom:886.479000px;}
.yf1{bottom:895.728000px;}
.y15a{bottom:897.678000px;}
.y53{bottom:898.603500px;}
.yd7{bottom:899.359500px;}
.y26{bottom:901.194000px;}
.y83{bottom:904.273500px;}
.y120{bottom:913.597500px;}
.yf0{bottom:913.927500px;}
.y159{bottom:915.553500px;}
.y52{bottom:916.324500px;}
.yd6{bottom:916.954500px;}
.y82{bottom:922.068000px;}
.y18f{bottom:930.205500px;}
.y11f{bottom:931.863000px;}
.yef{bottom:932.127000px;}
.y158{bottom:933.427500px;}
.y51{bottom:934.044000px;}
.yd5{bottom:934.548000px;}
.y25{bottom:941.653500px;}
.y18e{bottom:945.148500px;}
.y11e{bottom:950.128500px;}
.yee{bottom:950.326500px;}
.y157{bottom:951.301500px;}
.y81{bottom:951.541500px;}
.y50{bottom:951.765000px;}
.yd4{bottom:952.143000px;}
.y24{bottom:956.596500px;}
.y18d{bottom:960.093000px;}
.y1{bottom:966.726000px;}
.y11d{bottom:968.394000px;}
.yed{bottom:968.526000px;}
.y156{bottom:969.175500px;}
.y80{bottom:969.336000px;}
.y4f{bottom:969.484500px;}
.yd3{bottom:969.736500px;}
.y18c{bottom:975.037500px;}
.y11c{bottom:986.659500px;}
.yec{bottom:986.725500px;}
.y155{bottom:987.051000px;}
.y7f{bottom:987.130500px;}
.y4e{bottom:987.205500px;}
.yd2{bottom:987.330000px;}
.y18b{bottom:989.980500px;}
.y4d{bottom:1004.925000px;}
.y23{bottom:1009.275000px;}
.y22{bottom:1035.292500px;}
.y4c{bottom:1037.802000px;}
.h19{height:0.000000px;}
.h10{height:24.675533px;}
.h15{height:27.599720px;}
.h18{height:28.704161px;}
.h1a{height:28.787846px;}
.h7{height:32.130000px;}
.hc{height:32.900573px;}
.h21{height:33.044035px;}
.h16{height:34.442573px;}
.h12{height:37.013299px;}
.h11{height:37.174694px;}
.ha{height:38.782946px;}
.h17{height:41.006062px;}
.h14{height:41.125613px;}
.h13{height:41.304940px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hd{height:49.351066px;}
.h1f{height:53.101261px;}
.h1e{height:53.471846px;}
.h1b{height:53.477846px;}
.h2{height:55.080000px;}
.h1c{height:57.205613px;}
.h20{height:69.474161px;}
.h1d{height:69.557846px;}
.he{height:69.913872px;}
.hb{height:72.113465px;}
.hf{height:74.288382px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1113.750000px;}
.h8{height:1114.015500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:816.378000px;}
.w4{width:816.750000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:55.666500px;}
.x3b{left:57.651000px;}
.x13{left:59.406000px;}
.x17{left:61.644000px;}
.x3a{left:63.628500px;}
.x14{left:66.063000px;}
.xa{left:68.380500px;}
.xe{left:69.507000px;}
.x12{left:73.599000px;}
.x1b{left:75.093000px;}
.x15{left:78.082500px;}
.x18{left:79.576500px;}
.x19{left:81.070500px;}
.x37{left:84.807000px;}
.x36{left:88.543500px;}
.x39{left:91.017000px;}
.x1c{left:92.847000px;}
.xd{left:94.905000px;}
.x35{left:96.015000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x16{left:110.791500px;}
.xb{left:129.168000px;}
.x1e{left:143.214000px;}
.x1f{left:144.456000px;}
.x22{left:146.457000px;}
.x23{left:147.699000px;}
.x1d{left:150.936000px;}
.x21{left:154.179000px;}
.x28{left:156.786000px;}
.x20{left:166.611000px;}
.x24{left:169.854000px;}
.x26{left:178.623000px;}
.x9{left:180.942000px;}
.x29{left:185.376000px;}
.x25{left:188.919000px;}
.x1a{left:190.122000px;}
.x2a{left:201.051000px;}
.x4{left:203.484001px;}
.x38{left:228.940500px;}
.x2b{left:233.421000px;}
.x27{left:235.183500px;}
.x2f{left:241.753500px;}
.x5{left:254.913000px;}
.xf{left:269.479500px;}
.x2c{left:272.053500px;}
.xc{left:279.270000px;}
.x7{left:295.593000px;}
.x2e{left:303.118500px;}
.x2d{left:305.719500px;}
.x6{left:311.635500px;}
.x10{left:321.634500px;}
.x30{left:335.881500px;}
.x31{left:422.536500px;}
.x3{left:454.959000px;}
.x32{left:509.193000px;}
.x33{left:603.319500px;}
.x8{left:612.810000px;}
.x34{left:697.447500px;}
@media print{
.v3{vertical-align:-30.389333pt;}
.v4{vertical-align:-15.429333pt;}
.v6{vertical-align:-7.968000pt;}
.vd{vertical-align:-6.373333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.370667pt;}
.v2{vertical-align:5.317333pt;}
.va{vertical-align:6.325333pt;}
.v7{vertical-align:7.968000pt;}
.v9{vertical-align:14.293333pt;}
.vb{vertical-align:21.946667pt;}
.v1{vertical-align:25.072000pt;}
.v8{vertical-align:29.914667pt;}
.vc{vertical-align:36.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.000917pt;}
.ls1{letter-spacing:0.001333pt;}
.ls26{letter-spacing:0.002118pt;}
.ls3e{letter-spacing:0.002325pt;}
.ls49{letter-spacing:0.003330pt;}
.ls1f{letter-spacing:0.208015pt;}
.lse{letter-spacing:0.213348pt;}
.ls39{letter-spacing:0.322422pt;}
.ls2c{letter-spacing:0.899230pt;}
.ls1a{letter-spacing:1.005089pt;}
.ls10{letter-spacing:1.010422pt;}
.lsd{letter-spacing:2.232708pt;}
.ls31{letter-spacing:2.654531pt;}
.ls4c{letter-spacing:2.656100pt;}
.ls2{letter-spacing:2.656533pt;}
.ls3{letter-spacing:2.659375pt;}
.ls13{letter-spacing:2.661348pt;}
.ls20{letter-spacing:2.666682pt;}
.ls11{letter-spacing:3.189348pt;}
.ls15{letter-spacing:3.194682pt;}
.ls21{letter-spacing:3.606846pt;}
.ls30{letter-spacing:3.612179pt;}
.lsf{letter-spacing:4.888708pt;}
.ls46{letter-spacing:5.008015pt;}
.ls19{letter-spacing:5.414846pt;}
.ls1c{letter-spacing:6.053348pt;}
.ls16{letter-spacing:6.058682pt;}
.ls3a{letter-spacing:6.268179pt;}
.ls43{letter-spacing:6.912015pt;}
.ls41{letter-spacing:6.957089pt;}
.ls7{letter-spacing:7.437867pt;}
.ls44{letter-spacing:7.815756pt;}
.ls6{letter-spacing:9.738377pt;}
.ls4{letter-spacing:9.743710pt;}
.ls5{letter-spacing:9.745067pt;}
.ls38{letter-spacing:10.038846pt;}
.ls18{letter-spacing:10.955584pt;}
.ls1e{letter-spacing:10.960917pt;}
.ls48{letter-spacing:11.804384pt;}
.ls12{letter-spacing:11.808917pt;}
.ls51{letter-spacing:13.286251pt;}
.ls2b{letter-spacing:13.826118pt;}
.ls28{letter-spacing:13.831452pt;}
.ls2d{letter-spacing:13.836785pt;}
.lsc{letter-spacing:13.910251pt;}
.ls4f{letter-spacing:14.144479pt;}
.ls37{letter-spacing:14.422251pt;}
.ls4a{letter-spacing:14.465067pt;}
.ls1b{letter-spacing:14.758251pt;}
.ls40{letter-spacing:15.580785pt;}
.ls14{letter-spacing:15.846251pt;}
.ls52{letter-spacing:15.904917pt;}
.ls9{letter-spacing:16.687467pt;}
.ls3c{letter-spacing:16.806251pt;}
.ls3b{letter-spacing:17.363025pt;}
.ls22{letter-spacing:17.411865pt;}
.ls4e{letter-spacing:17.707584pt;}
.ls4b{letter-spacing:17.708384pt;}
.ls4d{letter-spacing:17.712917pt;}
.ls35{letter-spacing:17.936917pt;}
.ls2e{letter-spacing:17.991452pt;}
.ls3f{letter-spacing:18.070846pt;}
.ls2a{letter-spacing:18.718042pt;}
.ls2f{letter-spacing:19.004785pt;}
.ls29{letter-spacing:20.097513pt;}
.ls3d{letter-spacing:20.317692pt;}
.lsb{letter-spacing:21.020179pt;}
.ls23{letter-spacing:21.057513pt;}
.lsa{letter-spacing:21.257067pt;}
.ls36{letter-spacing:21.542846pt;}
.ls33{letter-spacing:22.614251pt;}
.ls47{letter-spacing:22.803025pt;}
.ls45{letter-spacing:22.808358pt;}
.ls8{letter-spacing:23.911645pt;}
.ls27{letter-spacing:23.975452pt;}
.ls34{letter-spacing:24.204179pt;}
.ls32{letter-spacing:25.513198pt;}
.ls25{letter-spacing:25.564179pt;}
.ls1d{letter-spacing:28.822846pt;}
.ls17{letter-spacing:28.828179pt;}
.ls42{letter-spacing:33.089513pt;}
.ls24{letter-spacing:1924.718531pt;}
.ws99{word-spacing:-58.394119pt;}
.ws9{word-spacing:-57.693104pt;}
.ws61{word-spacing:-43.622905pt;}
.ws54{word-spacing:-40.875766pt;}
.ws57{word-spacing:-37.406242pt;}
.ws44{word-spacing:-13.283467pt;}
.ws13{word-spacing:-11.955200pt;}
.ws5{word-spacing:-10.626800pt;}
.ws8{word-spacing:-9.298400pt;}
.ws7{word-spacing:-4.877712pt;}
.ws12{word-spacing:-4.495155pt;}
.ws59{word-spacing:-4.432022pt;}
.ws56{word-spacing:-4.430911pt;}
.ws5c{word-spacing:-4.426689pt;}
.ws5e{word-spacing:-4.425578pt;}
.ws14{word-spacing:-3.188040pt;}
.ws6e{word-spacing:-0.302103pt;}
.ws6d{word-spacing:-0.298674pt;}
.ws3{word-spacing:-0.085014pt;}
.ws53{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.047289pt;}
.ws5a{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.159402pt;}
.ws8e{word-spacing:0.212535pt;}
.ws92{word-spacing:0.425071pt;}
.ws6c{word-spacing:0.521289pt;}
.ws6a{word-spacing:0.531339pt;}
.ws6f{word-spacing:0.551230pt;}
.ws4d{word-spacing:0.690740pt;}
.wsac{word-spacing:0.797008pt;}
.ws4e{word-spacing:0.850142pt;}
.wsc4{word-spacing:0.903276pt;}
.ws34{word-spacing:1.009543pt;}
.ws3a{word-spacing:1.168945pt;}
.ws22{word-spacing:1.191167pt;}
.wsb7{word-spacing:1.275213pt;}
.ws35{word-spacing:1.328347pt;}
.wsab{word-spacing:1.381481pt;}
.ws4b{word-spacing:1.487748pt;}
.wsbc{word-spacing:1.540882pt;}
.wsa6{word-spacing:1.594016pt;}
.ws8c{word-spacing:1.647150pt;}
.wsa7{word-spacing:1.700284pt;}
.ws98{word-spacing:1.753418pt;}
.ws6{word-spacing:1.785310pt;}
.ws17{word-spacing:1.806551pt;}
.wsa4{word-spacing:1.859685pt;}
.wsaa{word-spacing:1.965953pt;}
.ws2b{word-spacing:2.072221pt;}
.ws85{word-spacing:2.178489pt;}
.ws36{word-spacing:2.231622pt;}
.ws43{word-spacing:2.391024pt;}
.ws8b{word-spacing:2.444158pt;}
.ws4a{word-spacing:2.550426pt;}
.wsa3{word-spacing:2.603559pt;}
.ws95{word-spacing:2.656693pt;}
.ws32{word-spacing:2.709827pt;}
.ws46{word-spacing:2.762961pt;}
.ws38{word-spacing:2.816095pt;}
.wsaf{word-spacing:2.869229pt;}
.ws50{word-spacing:2.922363pt;}
.wsba{word-spacing:3.028630pt;}
.ws33{word-spacing:3.081764pt;}
.ws97{word-spacing:3.134898pt;}
.wsb3{word-spacing:3.188032pt;}
.ws3d{word-spacing:3.241166pt;}
.wsd9{word-spacing:3.273054pt;}
.ws4f{word-spacing:3.347434pt;}
.ws45{word-spacing:3.400567pt;}
.ws93{word-spacing:3.493552pt;}
.ws94{word-spacing:3.506835pt;}
.wsc3{word-spacing:3.559969pt;}
.ws2a{word-spacing:3.613103pt;}
.wsbd{word-spacing:3.666237pt;}
.ws84{word-spacing:3.772505pt;}
.wsa9{word-spacing:3.878772pt;}
.ws1e{word-spacing:3.931906pt;}
.ws7f{word-spacing:3.985040pt;}
.ws1f{word-spacing:3.995677pt;}
.ws42{word-spacing:4.038174pt;}
.ws9c{word-spacing:4.091308pt;}
.ws9d{word-spacing:4.144442pt;}
.wsb0{word-spacing:4.197575pt;}
.wsd6{word-spacing:4.208213pt;}
.ws26{word-spacing:4.250709pt;}
.ws2d{word-spacing:4.356977pt;}
.ws77{word-spacing:4.403713pt;}
.ws18{word-spacing:4.410111pt;}
.ws96{word-spacing:4.427467pt;}
.ws41{word-spacing:4.463245pt;}
.wsdc{word-spacing:4.505763pt;}
.ws19{word-spacing:4.622646pt;}
.ws71{word-spacing:4.675780pt;}
.ws72{word-spacing:4.711230pt;}
.wsda{word-spacing:4.718299pt;}
.ws75{word-spacing:4.728914pt;}
.ws40{word-spacing:4.782048pt;}
.wsce{word-spacing:4.803314pt;}
.wsa8{word-spacing:4.835182pt;}
.wsd2{word-spacing:4.845821pt;}
.ws1d{word-spacing:4.888316pt;}
.wsd0{word-spacing:4.930835pt;}
.wsc1{word-spacing:4.994583pt;}
.wsde{word-spacing:5.058357pt;}
.wse{word-spacing:5.069005pt;}
.wsbb{word-spacing:5.207119pt;}
.wsbf{word-spacing:5.260253pt;}
.ws10{word-spacing:5.260288pt;}
.ws27{word-spacing:5.313387pt;}
.ws9b{word-spacing:5.366521pt;}
.ws37{word-spacing:5.472788pt;}
.wsbe{word-spacing:5.525922pt;}
.ws39{word-spacing:5.632190pt;}
.ws1a{word-spacing:5.738458pt;}
.wsd7{word-spacing:5.738472pt;}
.ws11{word-spacing:5.738496pt;}
.ws2c{word-spacing:5.791591pt;}
.ws62{word-spacing:5.858581pt;}
.ws68{word-spacing:6.004127pt;}
.ws23{word-spacing:6.078530pt;}
.ws48{word-spacing:6.110395pt;}
.ws1b{word-spacing:6.163529pt;}
.wscc{word-spacing:6.206051pt;}
.ws2e{word-spacing:6.216662pt;}
.wsf{word-spacing:6.216704pt;}
.ws29{word-spacing:6.269796pt;}
.ws47{word-spacing:6.322930pt;}
.wsb6{word-spacing:6.418587pt;}
.ws3b{word-spacing:6.429198pt;}
.ws3f{word-spacing:6.482332pt;}
.ws31{word-spacing:6.535466pt;}
.ws20{word-spacing:6.631123pt;}
.ws9a{word-spacing:6.641733pt;}
.ws4c{word-spacing:6.748001pt;}
.wsb5{word-spacing:6.928674pt;}
.wsd5{word-spacing:7.013688pt;}
.ws8a{word-spacing:7.056195pt;}
.ws52{word-spacing:7.066804pt;}
.wsd{word-spacing:7.077478pt;}
.ws4{word-spacing:7.098702pt;}
.ws51{word-spacing:7.119938pt;}
.wscd{word-spacing:7.183717pt;}
.wsc6{word-spacing:7.332474pt;}
.wsb2{word-spacing:7.438741pt;}
.ws49{word-spacing:7.545009pt;}
.ws2f{word-spacing:7.704411pt;}
.ws7e{word-spacing:7.735230pt;}
.ws30{word-spacing:7.757545pt;}
.ws1c{word-spacing:7.863812pt;}
.wsdb{word-spacing:7.991354pt;}
.wsb9{word-spacing:8.023214pt;}
.ws82{word-spacing:8.288883pt;}
.wsdd{word-spacing:8.288904pt;}
.ws9f{word-spacing:8.395151pt;}
.wsca{word-spacing:8.416426pt;}
.wsc0{word-spacing:8.501419pt;}
.wsb4{word-spacing:8.543947pt;}
.ws3c{word-spacing:8.554553pt;}
.ws3e{word-spacing:8.607686pt;}
.ws7d{word-spacing:8.638497pt;}
.ws74{word-spacing:8.743230pt;}
.ws28{word-spacing:8.767088pt;}
.wsa2{word-spacing:8.873356pt;}
.ws64{word-spacing:8.887915pt;}
.wsc5{word-spacing:9.139025pt;}
.wsa0{word-spacing:9.404694pt;}
.wsa1{word-spacing:9.457828pt;}
.ws76{word-spacing:9.564096pt;}
.wsae{word-spacing:9.617230pt;}
.wsd3{word-spacing:9.649134pt;}
.wsa5{word-spacing:9.670364pt;}
.ws91{word-spacing:9.776631pt;}
.ws67{word-spacing:9.793897pt;}
.wsb1{word-spacing:9.829765pt;}
.ws8f{word-spacing:9.882899pt;}
.ws83{word-spacing:9.936033pt;}
.wsc2{word-spacing:9.989167pt;}
.wscb{word-spacing:9.989192pt;}
.ws7a{word-spacing:10.095435pt;}
.ws90{word-spacing:10.520506pt;}
.ws15{word-spacing:10.584196pt;}
.wsa{word-spacing:10.584293pt;}
.ws80{word-spacing:10.604895pt;}
.ws66{word-spacing:10.691830pt;}
.wsb8{word-spacing:10.945577pt;}
.wsb{word-spacing:10.998784pt;}
.ws81{word-spacing:11.068895pt;}
.wsd4{word-spacing:11.221901pt;}
.wsd1{word-spacing:11.519451pt;}
.ws9e{word-spacing:11.530049pt;}
.wsc{word-spacing:11.620454pt;}
.wsc8{word-spacing:12.667146pt;}
.wscf{word-spacing:12.752160pt;}
.ws16{word-spacing:13.283467pt;}
.ws5d{word-spacing:13.703915pt;}
.ws55{word-spacing:13.709248pt;}
.ws6b{word-spacing:14.682881pt;}
.wsd8{word-spacing:15.217578pt;}
.wsc7{word-spacing:15.940200pt;}
.ws7b{word-spacing:16.657763pt;}
.ws58{word-spacing:16.658581pt;}
.ws21{word-spacing:17.215416pt;}
.wsad{word-spacing:17.640444pt;}
.wsc9{word-spacing:17.640488pt;}
.ws25{word-spacing:17.682995pt;}
.ws1{word-spacing:17.686111pt;}
.ws79{word-spacing:17.883385pt;}
.ws70{word-spacing:18.679915pt;}
.ws60{word-spacing:19.607915pt;}
.ws78{word-spacing:22.562581pt;}
.ws73{word-spacing:22.845248pt;}
.ws69{word-spacing:24.151915pt;}
.ws89{word-spacing:207.180093pt;}
.ws86{word-spacing:231.324182pt;}
.ws88{word-spacing:276.211786pt;}
.ws87{word-spacing:302.778786pt;}
.ws24{word-spacing:403.676400pt;}
.ws65{word-spacing:1031.647155pt;}
.ws63{word-spacing:1196.149606pt;}
.ws5f{word-spacing:1409.588349pt;}
.ws5b{word-spacing:1421.809138pt;}
.ws7c{word-spacing:1480.129763pt;}
._5{margin-left:-9.454761pt;}
._4{margin-left:-8.459127pt;}
._9{margin-left:-6.960537pt;}
._7{margin-left:-5.738472pt;}
._6{margin-left:-4.782068pt;}
._1{margin-left:-3.121078pt;}
._0{margin-left:-1.891563pt;}
._2{margin-left:-0.977681pt;}
._8{width:1.748100pt;}
._3{width:3.230547pt;}
._11{width:4.148495pt;}
._10{width:5.617278pt;}
._1c{width:12.810586pt;}
._1d{width:14.197363pt;}
._b{width:15.090018pt;}
._d{width:16.843436pt;}
._e{width:18.628731pt;}
._13{width:20.596797pt;}
._1f{width:21.529874pt;}
._12{width:22.507503pt;}
._1e{width:24.204716pt;}
._c{width:26.566933pt;}
._a{width:34.864911pt;}
._18{width:217.806893pt;}
._1a{width:223.120293pt;}
._15{width:244.373893pt;}
._17{width:265.627493pt;}
._16{width:286.838586pt;}
._1b{width:292.151986pt;}
._19{width:313.405586pt;}
._14{width:329.345786pt;}
._f{width:414.701581pt;}
.fsd{font-size:31.880533pt;}
.fs10{font-size:36.131200pt;}
.fsb{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.289067pt;}
.fse{font-size:47.820800pt;}
.fsc{font-size:52.496000pt;}
.fsf{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.074133pt;}
.fs6{font-size:85.014400pt;}
.fs9{font-size:90.328000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y4b{bottom:60.440000pt;}
.yd1{bottom:75.070667pt;}
.y4a{bottom:77.708000pt;}
.y7e{bottom:78.372000pt;}
.yb2{bottom:78.373333pt;}
.y132{bottom:80.274667pt;}
.yeb{bottom:80.673333pt;}
.y4{bottom:86.333337pt;}
.yd0{bottom:90.346667pt;}
.y49{bottom:90.992000pt;}
.y18a{bottom:91.656000pt;}
.y131{bottom:93.558667pt;}
.y7d{bottom:94.124000pt;}
.yb1{bottom:94.190667pt;}
.y154{bottom:94.205333pt;}
.y11b{bottom:94.550667pt;}
.y138{bottom:96.580000pt;}
.y48{bottom:104.276000pt;}
.y189{bottom:104.836000pt;}
.y7c{bottom:109.874667pt;}
.yb0{bottom:110.008000pt;}
.y153{bottom:110.038667pt;}
.y11a{bottom:110.728000pt;}
.y137{bottom:114.786667pt;}
.y188{bottom:118.120000pt;}
.y21{bottom:123.790666pt;}
.y7b{bottom:125.626667pt;}
.yaf{bottom:125.825333pt;}
.y152{bottom:125.872000pt;}
.y119{bottom:126.905333pt;}
.y47{bottom:128.850667pt;}
.y187{bottom:131.298667pt;}
.ycf{bottom:140.013333pt;}
.y7a{bottom:141.377333pt;}
.yae{bottom:141.642667pt;}
.y46{bottom:141.669333pt;}
.y151{bottom:141.705333pt;}
.y118{bottom:143.082667pt;}
.y186{bottom:144.582667pt;}
.y79{bottom:157.128000pt;}
.yce{bottom:157.282667pt;}
.yad{bottom:157.460000pt;}
.y150{bottom:157.538667pt;}
.y185{bottom:157.866667pt;}
.y45{bottom:158.809333pt;}
.y117{bottom:159.260000pt;}
.y136{bottom:159.552000pt;}
.ycd{bottom:170.565333pt;}
.y184{bottom:171.046667pt;}
.y135{bottom:172.834667pt;}
.yac{bottom:173.277333pt;}
.y14f{bottom:173.372000pt;}
.y18{bottom:175.052000pt;}
.y116{bottom:175.437333pt;}
.y78{bottom:183.128000pt;}
.ycc{bottom:183.849333pt;}
.y44{bottom:184.204000pt;}
.y183{bottom:184.329333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y14e{bottom:189.204000pt;}
.y115{bottom:191.614667pt;}
.yab{bottom:196.818667pt;}
.ycb{bottom:197.133333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y182{bottom:197.509333pt;}
.y77{bottom:198.880000pt;}
.y43{bottom:200.437333pt;}
.y14d{bottom:205.037333pt;}
.y114{bottom:207.792000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yca{bottom:210.416000pt;}
.y181{bottom:210.793333pt;}
.y76{bottom:214.630667pt;}
.y42{bottom:216.670667pt;}
.y14c{bottom:220.870667pt;}
.yc9{bottom:223.700000pt;}
.y113{bottom:223.969333pt;}
.y180{bottom:223.973333pt;}
.yaa{bottom:227.961333pt;}
.y75{bottom:230.382667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y41{bottom:232.904000pt;}
.y14b{bottom:236.704000pt;}
.yc8{bottom:236.984000pt;}
.y17f{bottom:237.256000pt;}
.y112{bottom:240.146667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.ya9{bottom:243.778667pt;}
.y74{bottom:246.133333pt;}
.y40{bottom:249.137333pt;}
.yc7{bottom:250.266667pt;}
.y17e{bottom:250.540000pt;}
.y14a{bottom:252.537333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y111{bottom:256.324000pt;}
.y73{bottom:261.884000pt;}
.ya7{bottom:262.177333pt;}
.yc6{bottom:263.550667pt;}
.y17d{bottom:263.720000pt;}
.y3f{bottom:265.370667pt;}
.y149{bottom:268.370667pt;}
.y110{bottom:272.501333pt;}
.ya8{bottom:274.613333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yc5{bottom:276.834667pt;}
.y17c{bottom:277.002667pt;}
.y72{bottom:277.636000pt;}
.ya4{bottom:278.186667pt;}
.y3e{bottom:281.604000pt;}
.y148{bottom:284.202667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y10f{bottom:288.680000pt;}
.yc4{bottom:290.117333pt;}
.y17b{bottom:290.286667pt;}
.ya6{bottom:290.805333pt;}
.y71{bottom:293.386667pt;}
.ya5{bottom:294.938667pt;}
.y3d{bottom:297.837333pt;}
.y147{bottom:300.036000pt;}
.yc3{bottom:303.401333pt;}
.y17a{bottom:303.466667pt;}
.y10e{bottom:304.857333pt;}
.y70{bottom:309.138667pt;}
.yf{bottom:309.452000pt;}
.ya3{bottom:311.245333pt;}
.y3c{bottom:314.070667pt;}
.y146{bottom:315.869333pt;}
.yc2{bottom:316.684000pt;}
.y179{bottom:316.750667pt;}
.y10d{bottom:321.034667pt;}
.ya2{bottom:327.062667pt;}
.y178{bottom:329.929333pt;}
.yc1{bottom:329.968000pt;}
.y145{bottom:331.702667pt;}
.y6f{bottom:335.138667pt;}
.y10c{bottom:337.212000pt;}
.y3b{bottom:340.032000pt;}
.ya1{bottom:342.880000pt;}
.y177{bottom:343.213333pt;}
.yc0{bottom:343.252000pt;}
.ye{bottom:343.809333pt;}
.y144{bottom:347.536000pt;}
.y6e{bottom:350.889333pt;}
.y10b{bottom:353.389333pt;}
.y176{bottom:356.393333pt;}
.ybf{bottom:356.534667pt;}
.ya0{bottom:358.697333pt;}
.yd{bottom:362.706666pt;}
.y143{bottom:363.369333pt;}
.y6d{bottom:366.640000pt;}
.y10a{bottom:369.566667pt;}
.y175{bottom:369.676000pt;}
.ybe{bottom:369.818667pt;}
.y9f{bottom:374.514667pt;}
.y6c{bottom:382.392000pt;}
.y174{bottom:382.856000pt;}
.ybd{bottom:383.102667pt;}
.y109{bottom:385.744000pt;}
.y142{bottom:386.957333pt;}
.y9e{bottom:390.332000pt;}
.y173{bottom:396.140000pt;}
.ybc{bottom:396.385333pt;}
.y3a{bottom:396.446667pt;}
.y108{bottom:401.921333pt;}
.y6b{bottom:405.734667pt;}
.y9d{bottom:406.149333pt;}
.y172{bottom:409.424000pt;}
.ybb{bottom:409.669333pt;}
.y107{bottom:418.098667pt;}
.y141{bottom:418.196000pt;}
.y171{bottom:422.602667pt;}
.yba{bottom:422.953333pt;}
.y9c{bottom:426.117333pt;}
.y9b{bottom:429.690667pt;}
.y140{bottom:434.029333pt;}
.y106{bottom:434.276000pt;}
.y39{bottom:435.397333pt;}
.y170{bottom:435.886667pt;}
.yb9{bottom:436.236000pt;}
.y6a{bottom:436.481333pt;}
.yc{bottom:446.990669pt;}
.y16f{bottom:449.066667pt;}
.yb8{bottom:449.520000pt;}
.y105{bottom:450.453333pt;}
.y69{bottom:452.232000pt;}
.y9a{bottom:457.260000pt;}
.y38{bottom:457.978667pt;}
.y13f{bottom:460.274667pt;}
.y99{bottom:460.833333pt;}
.y16e{bottom:462.350667pt;}
.yb7{bottom:462.804000pt;}
.yb{bottom:462.990669pt;}
.y104{bottom:466.630667pt;}
.y68{bottom:467.984000pt;}
.yea{bottom:470.457333pt;}
.y37{bottom:472.590667pt;}
.y36{bottom:472.976000pt;}
.y16d{bottom:475.529333pt;}
.y13e{bottom:476.108000pt;}
.ya{bottom:478.990666pt;}
.yb6{bottom:481.480000pt;}
.y103{bottom:482.808000pt;}
.y67{bottom:483.734667pt;}
.ye9{bottom:486.097333pt;}
.y35{bottom:487.202667pt;}
.y98{bottom:488.402667pt;}
.y16c{bottom:488.813333pt;}
.y13d{bottom:491.941333pt;}
.y97{bottom:491.976000pt;}
.yb5{bottom:494.762667pt;}
.y9{bottom:494.990666pt;}
.y102{bottom:498.985333pt;}
.y66{bottom:499.486667pt;}
.ye8{bottom:501.736000pt;}
.y34{bottom:501.814667pt;}
.y16b{bottom:501.993333pt;}
.y130{bottom:504.189333pt;}
.y13c{bottom:507.773333pt;}
.yb4{bottom:511.754667pt;}
.y101{bottom:515.162667pt;}
.y65{bottom:515.237333pt;}
.y16a{bottom:515.277333pt;}
.y96{bottom:515.518667pt;}
.y33{bottom:516.426667pt;}
.ye7{bottom:517.376000pt;}
.y12f{bottom:520.425333pt;}
.y13b{bottom:523.606667pt;}
.y169{bottom:528.456000pt;}
.y64{bottom:530.989333pt;}
.y32{bottom:531.038667pt;}
.y100{bottom:531.340000pt;}
.y95{bottom:533.917333pt;}
.y12e{bottom:536.661333pt;}
.y13a{bottom:539.440000pt;}
.ye6{bottom:540.382667pt;}
.y168{bottom:541.740000pt;}
.y31{bottom:545.649333pt;}
.yb3{bottom:546.589333pt;}
.y63{bottom:546.740000pt;}
.yff{bottom:547.517333pt;}
.y92{bottom:549.925333pt;}
.y12d{bottom:552.896000pt;}
.y134{bottom:554.040000pt;}
.y167{bottom:554.920000pt;}
.y30{bottom:560.261333pt;}
.y62{bottom:562.490667pt;}
.y94{bottom:562.545333pt;}
.yfe{bottom:563.694667pt;}
.y93{bottom:566.677333pt;}
.y133{bottom:567.324000pt;}
.y166{bottom:568.204000pt;}
.y12c{bottom:569.132000pt;}
.y91{bottom:573.508000pt;}
.y8{bottom:573.786667pt;}
.y2f{bottom:574.873333pt;}
.y61{bottom:578.242667pt;}
.yfd{bottom:579.872000pt;}
.ye5{bottom:580.482667pt;}
.y165{bottom:581.382667pt;}
.y139{bottom:584.604000pt;}
.y12b{bottom:585.368000pt;}
.y8e{bottom:589.517333pt;}
.y7{bottom:592.685334pt;}
.y60{bottom:593.993333pt;}
.y164{bottom:594.562667pt;}
.yfc{bottom:596.049333pt;}
.ye4{bottom:596.121333pt;}
.y2e{bottom:597.456000pt;}
.y12a{bottom:601.604000pt;}
.y90{bottom:602.137333pt;}
.y8f{bottom:606.269333pt;}
.y5f{bottom:609.745333pt;}
.ye3{bottom:611.760000pt;}
.yfb{bottom:612.226667pt;}
.y163{bottom:615.713333pt;}
.y129{bottom:617.840000pt;}
.y8d{bottom:622.576000pt;}
.y5e{bottom:625.496000pt;}
.ye2{bottom:627.400000pt;}
.yfa{bottom:628.404000pt;}
.y128{bottom:634.076000pt;}
.y8c{bottom:638.393333pt;}
.y5d{bottom:641.246667pt;}
.ye1{bottom:643.038667pt;}
.yf9{bottom:644.581333pt;}
.y6{bottom:645.598667pt;}
.y162{bottom:647.282667pt;}
.y127{bottom:650.312000pt;}
.y2d{bottom:651.376000pt;}
.y8b{bottom:654.210667pt;}
.y5c{bottom:656.998667pt;}
.ye0{bottom:658.678667pt;}
.yf8{bottom:660.758667pt;}
.y2c{bottom:664.660000pt;}
.y126{bottom:666.548000pt;}
.y3{bottom:668.977329pt;}
.y8a{bottom:670.028000pt;}
.y161{bottom:671.037333pt;}
.y5b{bottom:672.749333pt;}
.ydf{bottom:674.317333pt;}
.yf7{bottom:676.936000pt;}
.y125{bottom:682.784000pt;}
.y89{bottom:685.845333pt;}
.y2b{bottom:687.700000pt;}
.y5a{bottom:688.501333pt;}
.yde{bottom:689.956000pt;}
.y124{bottom:699.020000pt;}
.y2a{bottom:701.569333pt;}
.y88{bottom:701.662667pt;}
.y160{bottom:702.606667pt;}
.yf6{bottom:704.214667pt;}
.y59{bottom:704.252000pt;}
.ydd{bottom:705.596000pt;}
.y123{bottom:715.254667pt;}
.y29{bottom:715.440000pt;}
.y87{bottom:717.480000pt;}
.y15f{bottom:718.494667pt;}
.y58{bottom:720.002667pt;}
.yf5{bottom:720.392000pt;}
.ydc{bottom:721.234667pt;}
.y122{bottom:731.490667pt;}
.y86{bottom:733.297333pt;}
.y15e{bottom:734.382667pt;}
.y28{bottom:735.016000pt;}
.y57{bottom:735.754667pt;}
.yf4{bottom:736.569333pt;}
.ydb{bottom:736.874667pt;}
.y15d{bottom:750.270667pt;}
.y56{bottom:751.505333pt;}
.yda{bottom:752.513333pt;}
.y85{bottom:756.838667pt;}
.yf3{bottom:763.848000pt;}
.y121{bottom:765.441333pt;}
.y15c{bottom:766.160000pt;}
.y55{bottom:767.257333pt;}
.yd9{bottom:768.153333pt;}
.y27{bottom:768.429333pt;}
.yf2{bottom:780.025333pt;}
.y2{bottom:781.661334pt;}
.y15b{bottom:782.048000pt;}
.y54{bottom:783.008000pt;}
.yd8{bottom:783.792000pt;}
.y84{bottom:787.981333pt;}
.yf1{bottom:796.202667pt;}
.y15a{bottom:797.936000pt;}
.y53{bottom:798.758667pt;}
.yd7{bottom:799.430667pt;}
.y26{bottom:801.061333pt;}
.y83{bottom:803.798667pt;}
.y120{bottom:812.086667pt;}
.yf0{bottom:812.380000pt;}
.y159{bottom:813.825333pt;}
.y52{bottom:814.510667pt;}
.yd6{bottom:815.070667pt;}
.y82{bottom:819.616000pt;}
.y18f{bottom:826.849333pt;}
.y11f{bottom:828.322667pt;}
.yef{bottom:828.557333pt;}
.y158{bottom:829.713333pt;}
.y51{bottom:830.261333pt;}
.yd5{bottom:830.709333pt;}
.y25{bottom:837.025333pt;}
.y18e{bottom:840.132000pt;}
.y11e{bottom:844.558667pt;}
.yee{bottom:844.734667pt;}
.y157{bottom:845.601333pt;}
.y81{bottom:845.814667pt;}
.y50{bottom:846.013333pt;}
.yd4{bottom:846.349333pt;}
.y24{bottom:850.308000pt;}
.y18d{bottom:853.416000pt;}
.y1{bottom:859.312000pt;}
.y11d{bottom:860.794667pt;}
.yed{bottom:860.912000pt;}
.y156{bottom:861.489333pt;}
.y80{bottom:861.632000pt;}
.y4f{bottom:861.764000pt;}
.yd3{bottom:861.988000pt;}
.y18c{bottom:866.700000pt;}
.y11c{bottom:877.030667pt;}
.yec{bottom:877.089333pt;}
.y155{bottom:877.378667pt;}
.y7f{bottom:877.449333pt;}
.y4e{bottom:877.516000pt;}
.yd2{bottom:877.626667pt;}
.y18b{bottom:879.982667pt;}
.y4d{bottom:893.266667pt;}
.y23{bottom:897.133333pt;}
.y22{bottom:920.260000pt;}
.y4c{bottom:922.490667pt;}
.h19{height:0.000000pt;}
.h10{height:21.933807pt;}
.h15{height:24.533085pt;}
.h18{height:25.514810pt;}
.h1a{height:25.589197pt;}
.h7{height:28.560000pt;}
.hc{height:29.244954pt;}
.h21{height:29.372475pt;}
.h16{height:30.615620pt;}
.h12{height:32.900710pt;}
.h11{height:33.044173pt;}
.ha{height:34.473730pt;}
.h17{height:36.449833pt;}
.h14{height:36.556100pt;}
.h13{height:36.715502pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hd{height:43.867614pt;}
.h1f{height:47.201121pt;}
.h1e{height:47.530530pt;}
.h1b{height:47.535863pt;}
.h2{height:48.960000pt;}
.h1c{height:50.849434pt;}
.h20{height:61.754810pt;}
.h1d{height:61.829197pt;}
.he{height:62.145664pt;}
.hb{height:64.100858pt;}
.hf{height:66.034117pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:990.000000pt;}
.h8{height:990.236000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:725.669333pt;}
.w4{width:726.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:49.481333pt;}
.x3b{left:51.245333pt;}
.x13{left:52.805333pt;}
.x17{left:54.794667pt;}
.x3a{left:56.558667pt;}
.x14{left:58.722667pt;}
.xa{left:60.782667pt;}
.xe{left:61.784000pt;}
.x12{left:65.421333pt;}
.x1b{left:66.749333pt;}
.x15{left:69.406667pt;}
.x18{left:70.734667pt;}
.x19{left:72.062667pt;}
.x37{left:75.384000pt;}
.x36{left:78.705333pt;}
.x39{left:80.904000pt;}
.x1c{left:82.530667pt;}
.xd{left:84.360000pt;}
.x35{left:85.346667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x16{left:98.481333pt;}
.xb{left:114.816000pt;}
.x1e{left:127.301333pt;}
.x1f{left:128.405333pt;}
.x22{left:130.184000pt;}
.x23{left:131.288000pt;}
.x1d{left:134.165333pt;}
.x21{left:137.048000pt;}
.x28{left:139.365333pt;}
.x20{left:148.098667pt;}
.x24{left:150.981333pt;}
.x26{left:158.776000pt;}
.x9{left:160.837333pt;}
.x29{left:164.778667pt;}
.x25{left:167.928000pt;}
.x1a{left:168.997333pt;}
.x2a{left:178.712000pt;}
.x4{left:180.874667pt;}
.x38{left:203.502667pt;}
.x2b{left:207.485333pt;}
.x27{left:209.052000pt;}
.x2f{left:214.892000pt;}
.x5{left:226.589333pt;}
.xf{left:239.537333pt;}
.x2c{left:241.825333pt;}
.xc{left:248.240000pt;}
.x7{left:262.749333pt;}
.x2e{left:269.438667pt;}
.x2d{left:271.750667pt;}
.x6{left:277.009333pt;}
.x10{left:285.897333pt;}
.x30{left:298.561333pt;}
.x31{left:375.588000pt;}
.x3{left:404.408000pt;}
.x32{left:452.616000pt;}
.x33{left:536.284000pt;}
.x8{left:544.720000pt;}
.x34{left:619.953333pt;}
}




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