
    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_9f874684adf995879c7d5cdc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_f0d401e258a8e40d9d0a71de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_7f84ea589a38082d08329016.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.042000;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_0bc1a5f60381355fd25f9791.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.909000;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_68d73514cc911954f002a47e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
.ff9{font-family:sans-serif;visibility:hidden;}
.ffa{font-family:sans-serif;visibility:hidden;}
.ffb{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffc;src:url('chunks/assets/font_661c6c15f831b433480ab3ac.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_46f03a77ed37cfdee04c6205.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.234000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f4bc538837e2aa3584b2d518.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_01ffed06fee143cf9d9cf316.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4748816d4d6ee78aece41142.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_92c44bc52a21fbec61deb9ec.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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:-10.758000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:13.655751px;}
.v2{vertical-align:15.745951px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.001114px;}
.ls9{letter-spacing:0.001150px;}
.ls5{letter-spacing:5.367840px;}
.ls7{letter-spacing:20.347150px;}
.ls6{letter-spacing:20.857473px;}
.ls0{letter-spacing:23.413974px;}
.ls3{letter-spacing:35.117578px;}
.ls2{letter-spacing:35.865600px;}
.ls4{letter-spacing:341.345578px;}
.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;}
}
.ws8b{word-spacing:-45.664082px;}
.ws19{word-spacing:-29.266330px;}
.ws17{word-spacing:-23.025715px;}
.ws5{word-spacing:-19.510886px;}
.ws18{word-spacing:-19.439155px;}
.wsa1{word-spacing:-17.932800px;}
.wsd5{word-spacing:-3.730022px;}
.ws98{word-spacing:-3.299635px;}
.ws83{word-spacing:-3.227904px;}
.wsd2{word-spacing:-3.012710px;}
.ws71{word-spacing:-2.940979px;}
.ws5f{word-spacing:-2.869248px;}
.wsc6{word-spacing:-2.510592px;}
.ws8{word-spacing:-2.438861px;}
.wsc2{word-spacing:-2.151936px;}
.ws20{word-spacing:-2.008474px;}
.ws29{word-spacing:-1.936742px;}
.wsbf{word-spacing:-1.793280px;}
.wse9{word-spacing:-1.721549px;}
.ws34{word-spacing:-1.362893px;}
.wse1{word-spacing:-1.219430px;}
.ws48{word-spacing:-1.147699px;}
.ws28{word-spacing:-1.075968px;}
.ws96{word-spacing:-0.932506px;}
.ws81{word-spacing:-0.789043px;}
.ws32{word-spacing:-0.717312px;}
.ws51{word-spacing:-0.502118px;}
.wsd4{word-spacing:-0.430387px;}
.wsd7{word-spacing:-0.286925px;}
.ws50{word-spacing:-0.215194px;}
.ws43{word-spacing:-0.143462px;}
.ws15{word-spacing:-0.103292px;}
.ws1{word-spacing:-0.071731px;}
.ws8c{word-spacing:-0.047821px;}
.ws6{word-spacing:0.000000px;}
.wsbe{word-spacing:0.286925px;}
.ws5d{word-spacing:0.358656px;}
.ws5c{word-spacing:0.430387px;}
.wsbd{word-spacing:0.502118px;}
.wse0{word-spacing:0.573850px;}
.ws72{word-spacing:0.717312px;}
.ws61{word-spacing:0.789043px;}
.ws93{word-spacing:0.860774px;}
.ws90{word-spacing:1.004237px;}
.ws4f{word-spacing:1.075968px;}
.ws9b{word-spacing:1.147699px;}
.ws99{word-spacing:1.219430px;}
.wsdd{word-spacing:1.291162px;}
.wsd6{word-spacing:1.649818px;}
.ws6d{word-spacing:1.721549px;}
.wsc5{word-spacing:1.743972px;}
.ws14{word-spacing:1.793280px;}
.ws54{word-spacing:1.865011px;}
.ws73{word-spacing:2.008474px;}
.ws3e{word-spacing:2.080205px;}
.ws91{word-spacing:2.295398px;}
.ws9c{word-spacing:2.367130px;}
.ws7a{word-spacing:2.438861px;}
.wse4{word-spacing:2.654054px;}
.ws41{word-spacing:2.725786px;}
.ws75{word-spacing:2.797517px;}
.ws65{word-spacing:2.869248px;}
.ws47{word-spacing:2.940979px;}
.ws70{word-spacing:3.084442px;}
.wsdf{word-spacing:3.156173px;}
.ws88{word-spacing:3.227904px;}
.ws1c{word-spacing:3.299635px;}
.ws23{word-spacing:3.371366px;}
.ws6e{word-spacing:3.443098px;}
.wsb1{word-spacing:3.473917px;}
.wsb2{word-spacing:3.499465px;}
.ws5e{word-spacing:3.514829px;}
.ws60{word-spacing:3.658291px;}
.ws74{word-spacing:3.730022px;}
.ws40{word-spacing:3.801754px;}
.ws2{word-spacing:3.873485px;}
.wsac{word-spacing:3.888284px;}
.wsa{word-spacing:3.945216px;}
.wsea{word-spacing:4.016947px;}
.ws11{word-spacing:4.088678px;}
.ws85{word-spacing:4.160410px;}
.ws89{word-spacing:4.232141px;}
.wsda{word-spacing:4.303872px;}
.wsde{word-spacing:4.375603px;}
.ws6b{word-spacing:4.447334px;}
.ws5a{word-spacing:4.519066px;}
.wse3{word-spacing:4.590797px;}
.ws3{word-spacing:4.648169px;}
.ws35{word-spacing:4.662528px;}
.ws46{word-spacing:4.805990px;}
.ws56{word-spacing:4.877722px;}
.ws53{word-spacing:4.949453px;}
.ws22{word-spacing:5.021184px;}
.ws1b{word-spacing:5.092915px;}
.wsd8{word-spacing:5.164646px;}
.ws1e{word-spacing:5.236378px;}
.ws95{word-spacing:5.379840px;}
.ws79{word-spacing:5.523302px;}
.wsd9{word-spacing:5.595034px;}
.wsd3{word-spacing:5.666765px;}
.ws92{word-spacing:5.738496px;}
.ws38{word-spacing:5.881958px;}
.ws24{word-spacing:5.953690px;}
.wsb5{word-spacing:6.097152px;}
.ws39{word-spacing:6.168883px;}
.ws13{word-spacing:6.240614px;}
.ws59{word-spacing:6.455808px;}
.ws6a{word-spacing:6.597685px;}
.wsca{word-spacing:6.599270px;}
.wsce{word-spacing:6.742733px;}
.ws10{word-spacing:6.814464px;}
.wsa6{word-spacing:6.886195px;}
.wsa3{word-spacing:6.957926px;}
.wsc7{word-spacing:7.029658px;}
.wsab{word-spacing:7.101389px;}
.ws8e{word-spacing:7.173120px;}
.ws57{word-spacing:7.244851px;}
.ws52{word-spacing:7.316582px;}
.wsed{word-spacing:7.388314px;}
.ws9f{word-spacing:7.460045px;}
.ws7b{word-spacing:7.531776px;}
.ws6c{word-spacing:7.603507px;}
.ws82{word-spacing:7.626960px;}
.wse5{word-spacing:7.675238px;}
.ws55{word-spacing:7.746970px;}
.ws78{word-spacing:7.890432px;}
.ws3b{word-spacing:7.962163px;}
.wscf{word-spacing:8.033894px;}
.ws8d{word-spacing:8.105626px;}
.wse7{word-spacing:8.177357px;}
.wsa2{word-spacing:8.392550px;}
.ws3a{word-spacing:8.464282px;}
.ws2f{word-spacing:8.536013px;}
.ws77{word-spacing:8.607744px;}
.ws21{word-spacing:8.679475px;}
.ws4e{word-spacing:8.751206px;}
.ws4c{word-spacing:8.822938px;}
.ws4a{word-spacing:8.894669px;}
.ws9e{word-spacing:8.966400px;}
.wsa7{word-spacing:9.175920px;}
.wsb7{word-spacing:9.180841px;}
.ws97{word-spacing:9.181594px;}
.ws7c{word-spacing:9.253325px;}
.wsc8{word-spacing:9.325056px;}
.ws62{word-spacing:9.396787px;}
.wsb0{word-spacing:9.469680px;}
.ws8a{word-spacing:9.540250px;}
.ws76{word-spacing:9.611981px;}
.ws5b{word-spacing:9.683712px;}
.ws9a{word-spacing:9.827174px;}
.wsb9{word-spacing:9.871680px;}
.ws12{word-spacing:9.970637px;}
.ws58{word-spacing:10.042368px;}
.ws9d{word-spacing:10.114099px;}
.ws30{word-spacing:10.170336px;}
.wscc{word-spacing:10.185830px;}
.ws37{word-spacing:10.329293px;}
.wsd1{word-spacing:10.687949px;}
.wsdb{word-spacing:10.903142px;}
.ws7f{word-spacing:10.974874px;}
.ws1d{word-spacing:11.046605px;}
.wsc9{word-spacing:11.118336px;}
.ws25{word-spacing:11.190067px;}
.wsae{word-spacing:11.261798px;}
.ws26{word-spacing:11.405261px;}
.ws3d{word-spacing:11.476992px;}
.wsa0{word-spacing:11.548723px;}
.ws2e{word-spacing:11.620454px;}
.wsc0{word-spacing:11.692186px;}
.wsb{word-spacing:11.695811px;}
.wsbb{word-spacing:11.763917px;}
.wsd0{word-spacing:11.835648px;}
.wsee{word-spacing:11.907379px;}
.ws7d{word-spacing:11.979110px;}
.ws87{word-spacing:12.020160px;}
.wseb{word-spacing:12.050842px;}
.wse2{word-spacing:12.122573px;}
.wsa9{word-spacing:12.194304px;}
.wsa8{word-spacing:12.207679px;}
.ws7e{word-spacing:12.266035px;}
.ws36{word-spacing:12.337766px;}
.ws67{word-spacing:12.409498px;}
.wse6{word-spacing:12.696422px;}
.ws42{word-spacing:12.768154px;}
.wsa4{word-spacing:12.839885px;}
.wsf1{word-spacing:12.911616px;}
.ws6f{word-spacing:12.983347px;}
.wsb4{word-spacing:13.231680px;}
.ws44{word-spacing:13.270272px;}
.ws45{word-spacing:13.342003px;}
.ws80{word-spacing:13.485466px;}
.wscd{word-spacing:13.628928px;}
.ws1f{word-spacing:13.700659px;}
.wsef{word-spacing:13.772390px;}
.wsc1{word-spacing:13.987584px;}
.wsa5{word-spacing:14.131046px;}
.wsaa{word-spacing:14.274509px;}
.ws2a{word-spacing:14.346240px;}
.ws2c{word-spacing:14.367972px;}
.wscb{word-spacing:14.489702px;}
.ws63{word-spacing:14.704896px;}
.ws94{word-spacing:14.848358px;}
.wsc3{word-spacing:15.063552px;}
.wsb3{word-spacing:15.240960px;}
.wsbc{word-spacing:15.278746px;}
.wse8{word-spacing:15.422208px;}
.ws64{word-spacing:15.565670px;}
.wsba{word-spacing:15.852595px;}
.wsf0{word-spacing:16.211251px;}
.ws84{word-spacing:16.230012px;}
.wsb6{word-spacing:17.457600px;}
.ws31{word-spacing:18.708140px;}
.ws33{word-spacing:18.737299px;}
.wsb8{word-spacing:20.544960px;}
.wsec{word-spacing:23.169178px;}
.ws7{word-spacing:23.312640px;}
.ws3f{word-spacing:23.332856px;}
.wsad{word-spacing:23.333265px;}
.wsc4{word-spacing:24.204461px;}
.ws86{word-spacing:24.449883px;}
.ws0{word-spacing:26.827469px;}
.ws4d{word-spacing:28.233642px;}
.ws4b{word-spacing:28.353642px;}
.wsdc{word-spacing:30.359265px;}
.ws3c{word-spacing:30.872767px;}
.wsaf{word-spacing:31.423763px;}
.ws2b{word-spacing:33.804140px;}
.ws2d{word-spacing:33.839299px;}
.ws49{word-spacing:36.869837px;}
.ws4{word-spacing:38.631358px;}
.ws16{word-spacing:64.916736px;}
.wsf{word-spacing:71.659469px;}
.ws69{word-spacing:94.533404px;}
.ws27{word-spacing:96.750773px;}
.ws68{word-spacing:100.712074px;}
.ws1a{word-spacing:116.100658px;}
.ws66{word-spacing:159.266536px;}
.wsc{word-spacing:436.660637px;}
.wsd{word-spacing:443.424889px;}
.ws9{word-spacing:498.155795px;}
.wse{word-spacing:536.955201px;}
.ws8f{word-spacing:1295.366658px;}
._15{margin-left:-44.832000px;}
._10{margin-left:-37.085030px;}
._2a{margin-left:-35.865600px;}
._56{margin-left:-32.996352px;}
._f{margin-left:-27.329587px;}
._7{margin-left:-10.687883px;}
._e{margin-left:-7.818701px;}
._c{margin-left:-5.881958px;}
._1{margin-left:-4.519066px;}
._38{margin-left:-3.299635px;}
._0{margin-left:-2.223667px;}
._d{margin-left:-1.219430px;}
._2{width:1.936742px;}
._3{width:3.202064px;}
._26{width:4.375603px;}
._52{width:12.126386px;}
._55{width:17.502413px;}
._40{width:18.793574px;}
._3a{width:19.941274px;}
._46{width:20.945510px;}
._25{width:22.523597px;}
._4f{width:24.245146px;}
._32{width:25.751501px;}
._24{width:27.401318px;}
._39{width:29.194598px;}
._34{width:30.198835px;}
._5{width:31.561728px;}
._36{width:32.637696px;}
._3c{width:34.000589px;}
._2b{width:35.937331px;}
._4{width:37.443582px;}
._53{width:38.447923px;}
._3e{width:40.384666px;}
._45{width:41.604096px;}
._50{width:43.612570px;}
._43{width:45.543681px;}
._44{width:46.768742px;}
._47{width:47.772979px;}
._51{width:49.494528px;}
._3d{width:51.216077px;}
._31{width:52.794163px;}
._3f{width:53.870131px;}
._54{width:55.089562px;}
._3b{width:57.098035px;}
._41{width:58.102272px;}
._42{width:59.249971px;}
._33{width:60.899789px;}
._37{width:62.951841px;}
._28{width:64.988467px;}
._4d{width:70.615861px;}
._8{width:72.000735px;}
._12{width:76.096587px;}
._4b{width:77.492475px;}
._4c{width:82.575807px;}
._11{width:84.058750px;}
._4a{width:88.754478px;}
._2c{width:107.309875px;}
._35{width:116.203950px;}
._13{width:118.382129px;}
._49{width:135.348993px;}
._1e{width:141.884314px;}
._48{width:147.308940px;}
._9{width:155.108504px;}
._4e{width:159.523081px;}
._1c{width:175.526246px;}
._18{width:184.779571px;}
._6{width:194.641081px;}
._1a{width:202.353715px;}
._b{width:218.203267px;}
._1f{width:236.156500px;}
._16{width:253.569792px;}
._1b{width:310.326561px;}
._14{width:336.710383px;}
._1d{width:428.467847px;}
._a{width:445.655729px;}
._21{width:559.879405px;}
._22{width:697.890234px;}
._19{width:707.645677px;}
._23{width:876.859578px;}
._29{width:961.556736px;}
._2d{width:1120.584806px;}
._2f{width:1291.520256px;}
._2e{width:1316.482714px;}
._17{width:1411.239629px;}
._20{width:1432.991572px;}
._27{width:2118.150605px;}
._30{width:2135.653018px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:26.324340px;}
.fs7{font-size:28.792596px;}
.fs3{font-size:37.606200px;}
.fs6{font-size:41.132280px;}
.fs5{font-size:45.127440px;}
.fs9{font-size:47.820600px;}
.fs8{font-size:52.884360px;}
.fsa{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs2{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y9d{bottom:4.774450px;}
.ye1{bottom:11.881445px;}
.y9c{bottom:17.628132px;}
.ye0{bottom:27.362285px;}
.yb5{bottom:27.778868px;}
.yaa{bottom:30.207693px;}
.ye2{bottom:36.578028px;}
.yac{bottom:41.807518px;}
.yb6{bottom:48.919284px;}
.yc5{bottom:54.296293px;}
.yca{bottom:56.673630px;}
.yb7{bottom:70.059701px;}
.y9f{bottom:75.653098px;}
.ybd{bottom:79.075849px;}
.yc6{bottom:80.813718px;}
.ybe{bottom:82.468303px;}
.ycb{bottom:85.568393px;}
.ybf{bottom:85.935584px;}
.yc0{bottom:88.913139px;}
.yb8{bottom:91.200117px;}
.ye5{bottom:97.028983px;}
.ya5{bottom:105.282204px;}
.yab{bottom:106.522164px;}
.yc7{bottom:107.331143px;}
.y141{bottom:110.313000px;}
.y17d{bottom:110.932500px;}
.yb9{bottom:112.340533px;}
.yc1{bottom:113.989332px;}
.ycc{bottom:114.463155px;}
.y60{bottom:114.967500px;}
.ye3{bottom:119.562282px;}
.y9a{bottom:121.999500px;}
.y7e{bottom:123.655500px;}
.y132{bottom:129.046500px;}
.yb1{bottom:129.050738px;}
.y140{bottom:131.980500px;}
.y162{bottom:132.601500px;}
.yba{bottom:133.480949px;}
.yc8{bottom:133.848567px;}
.y5f{bottom:136.636500px;}
.yd0{bottom:136.873500px;}
.y9e{bottom:138.975475px;}
.y1a1{bottom:139.824000px;}
.yf1{bottom:140.352000px;}
.yb0{bottom:142.844575px;}
.ycd{bottom:143.357917px;}
.y99{bottom:143.668500px;}
.yc4{bottom:143.740660px;}
.y7d{bottom:145.324500px;}
.y131{bottom:150.714000px;}
.yb{bottom:151.408500px;}
.y13f{bottom:153.649500px;}
.y161{bottom:154.270500px;}
.ybb{bottom:154.621366px;}
.yaf{bottom:156.638411px;}
.yc3{bottom:157.534497px;}
.y5e{bottom:158.305500px;}
.ycf{bottom:158.541000px;}
.yc9{bottom:160.365992px;}
.y1a0{bottom:161.493000px;}
.yf0{bottom:162.019500px;}
.y98{bottom:165.337500px;}
.y7c{bottom:166.992000px;}
.yae{bottom:170.432248px;}
.yc2{bottom:171.328333px;}
.yce{bottom:172.252680px;}
.y130{bottom:172.383000px;}
.ya{bottom:173.077500px;}
.y13e{bottom:175.318500px;}
.ybc{bottom:175.761782px;}
.y160{bottom:175.939500px;}
.y5d{bottom:179.974500px;}
.y116{bottom:183.162000px;}
.yef{bottom:183.688500px;}
.y97{bottom:187.006500px;}
.yb4{bottom:188.653500px;}
.y7b{bottom:188.661000px;}
.ye8{bottom:190.109175px;}
.yad{bottom:191.673875px;}
.y12f{bottom:194.052000px;}
.ya4{bottom:196.741898px;}
.y13d{bottom:196.987500px;}
.y15f{bottom:197.607000px;}
.y5c{bottom:201.642000px;}
.ye4{bottom:202.642939px;}
.y115{bottom:204.831000px;}
.yee{bottom:205.357500px;}
.y96{bottom:208.674000px;}
.ye7{bottom:209.516174px;}
.y7a{bottom:210.330000px;}
.ya3{bottom:210.535735px;}
.y12e{bottom:215.721000px;}
.ya6{bottom:217.208827px;}
.y13c{bottom:218.656500px;}
.y17c{bottom:219.276000px;}
.y5b{bottom:223.311000px;}
.ya2{bottom:224.329571px;}
.y114{bottom:226.500000px;}
.yed{bottom:227.026500px;}
.y95{bottom:230.343000px;}
.y15e{bottom:230.857500px;}
.y79{bottom:231.999000px;}
.ye6{bottom:235.864246px;}
.y12d{bottom:237.390000px;}
.ya1{bottom:238.123408px;}
.y190{bottom:240.324000px;}
.y17b{bottom:240.945000px;}
.y5a{bottom:244.980000px;}
.y113{bottom:248.167500px;}
.y94{bottom:252.012000px;}
.y78{bottom:253.668000px;}
.y1c4{bottom:254.614500px;}
.ya0{bottom:259.365035px;}
.y18f{bottom:261.993000px;}
.y17a{bottom:262.614000px;}
.y13b{bottom:262.870500px;}
.y59{bottom:266.649000px;}
.y112{bottom:269.836500px;}
.y12c{bottom:270.640500px;}
.y93{bottom:273.681000px;}
.y77{bottom:275.337000px;}
.yec{bottom:276.117000px;}
.y1c3{bottom:276.283500px;}
.y15d{bottom:282.850500px;}
.y18e{bottom:283.662000px;}
.y179{bottom:284.283000px;}
.y13a{bottom:284.538000px;}
.y58{bottom:288.318000px;}
.y111{bottom:291.505500px;}
.y92{bottom:295.350000px;}
.y76{bottom:297.004500px;}
.yeb{bottom:297.786000px;}
.y1c2{bottom:297.952500px;}
.y15c{bottom:304.519500px;}
.y18d{bottom:305.331000px;}
.y178{bottom:305.952000px;}
.y139{bottom:306.207000px;}
.y57{bottom:309.985500px;}
.y110{bottom:313.174500px;}
.y91{bottom:317.019000px;}
.y75{bottom:318.673500px;}
.yea{bottom:319.455000px;}
.y1c1{bottom:319.621500px;}
.y12b{bottom:322.632000px;}
.y15b{bottom:326.188500px;}
.y18c{bottom:327.000000px;}
.y138{bottom:327.876000px;}
.y56{bottom:331.654500px;}
.y10f{bottom:334.843500px;}
.y90{bottom:338.686500px;}
.y177{bottom:339.201000px;}
.y74{bottom:340.342500px;}
.ye9{bottom:341.124000px;}
.y12a{bottom:344.301000px;}
.y15a{bottom:347.856000px;}
.y18b{bottom:348.669000px;}
.y137{bottom:349.545000px;}
.y55{bottom:353.323500px;}
.y1c0{bottom:355.579500px;}
.y10e{bottom:356.512500px;}
.y8f{bottom:360.355500px;}
.y73{bottom:362.011500px;}
.y129{bottom:365.970000px;}
.y159{bottom:369.525000px;}
.y18a{bottom:370.336500px;}
.ydf{bottom:371.235000px;}
.y19f{bottom:374.269500px;}
.y54{bottom:374.992500px;}
.y1bf{bottom:377.248500px;}
.y10d{bottom:378.180000px;}
.y8e{bottom:382.024500px;}
.y72{bottom:383.680500px;}
.y128{bottom:387.639000px;}
.y176{bottom:391.194000px;}
.y189{bottom:392.005500px;}
.y53{bottom:396.661500px;}
.y1be{bottom:398.917500px;}
.y10c{bottom:399.849000px;}
.y158{bottom:402.775500px;}
.y8d{bottom:403.693500px;}
.y71{bottom:405.349500px;}
.y127{bottom:409.308000px;}
.y175{bottom:412.863000px;}
.y188{bottom:413.674500px;}
.y1bd{bottom:420.586500px;}
.y10b{bottom:421.518000px;}
.y8c{bottom:425.362500px;}
.y70{bottom:427.017000px;}
.y52{bottom:429.912000px;}
.y126{bottom:430.975500px;}
.y19e{bottom:434.170500px;}
.y174{bottom:434.532000px;}
.y187{bottom:435.343500px;}
.y1bc{bottom:442.254000px;}
.y10a{bottom:443.187000px;}
.y8b{bottom:447.031500px;}
.y6f{bottom:448.686000px;}
.y125{bottom:452.644500px;}
.yb3{bottom:453.291000px;}
.y157{bottom:454.768500px;}
.y19d{bottom:455.839500px;}
.y173{bottom:456.201000px;}
.y186{bottom:457.012500px;}
.y109{bottom:464.856000px;}
.y8a{bottom:468.699000px;}
.y6e{bottom:470.355000px;}
.y124{bottom:474.313500px;}
.yb2{bottom:474.960000px;}
.y156{bottom:476.437500px;}
.y19c{bottom:477.508500px;}
.y1bb{bottom:478.213500px;}
.y185{bottom:478.681500px;}
.y51{bottom:481.903500px;}
.y108{bottom:486.523500px;}
.y172{bottom:489.450000px;}
.y89{bottom:490.368000px;}
.y6d{bottom:492.024000px;}
.y123{bottom:495.982500px;}
.y155{bottom:498.106500px;}
.y19b{bottom:499.177500px;}
.y1ba{bottom:499.882500px;}
.y184{bottom:500.349000px;}
.y50{bottom:503.572500px;}
.ya9{bottom:505.072500px;}
.y107{bottom:508.192500px;}
.y88{bottom:512.037000px;}
.y42{bottom:512.116500px;}
.y6c{bottom:513.693000px;}
.y122{bottom:517.651500px;}
.y154{bottom:519.774000px;}
.y19a{bottom:520.845000px;}
.y9{bottom:521.466000px;}
.y1b9{bottom:521.551500px;}
.y4f{bottom:525.241500px;}
.y106{bottom:529.861500px;}
.y87{bottom:533.706000px;}
.y6b{bottom:535.362000px;}
.y153{bottom:541.443000px;}
.y199{bottom:542.514000px;}
.y1b8{bottom:543.219000px;}
.y183{bottom:545.358000px;}
.y4e{bottom:546.910500px;}
.y121{bottom:550.902000px;}
.y41{bottom:551.344500px;}
.y105{bottom:551.530500px;}
.y86{bottom:555.375000px;}
.y6a{bottom:557.029500px;}
.y152{bottom:563.112000px;}
.y198{bottom:564.183000px;}
.y8{bottom:567.792000px;}
.y40{bottom:573.013500px;}
.y85{bottom:577.042500px;}
.y69{bottom:578.698500px;}
.y1b7{bottom:579.178500px;}
.y104{bottom:584.781000px;}
.y197{bottom:585.852000px;}
.y4d{bottom:586.338000px;}
.y3f{bottom:594.682500px;}
.y84{bottom:598.711500px;}
.y68{bottom:600.367500px;}
.y7{bottom:600.669000px;}
.y1b6{bottom:600.847500px;}
.y120{bottom:602.893500px;}
.y151{bottom:606.450000px;}
.y196{bottom:607.521000px;}
.y3e{bottom:616.350000px;}
.y83{bottom:620.380500px;}
.y67{bottom:622.036500px;}
.y1b5{bottom:622.515000px;}
.y11f{bottom:624.562500px;}
.y150{bottom:628.117500px;}
.y195{bottom:629.188500px;}
.y6{bottom:633.544500px;}
.y103{bottom:636.774000px;}
.y3d{bottom:638.019000px;}
.y1e{bottom:641.901000px;}
.y82{bottom:642.049500px;}
.y11e{bottom:646.231500px;}
.y4c{bottom:646.237500px;}
.y14f{bottom:649.786500px;}
.y194{bottom:650.857500px;}
.yde{bottom:657.582000px;}
.y102{bottom:658.441500px;}
.y1b4{bottom:658.474500px;}
.y66{bottom:661.768500px;}
.y1d{bottom:664.167000px;}
.y171{bottom:667.545000px;}
.y11d{bottom:667.900500px;}
.y14e{bottom:671.455500px;}
.y193{bottom:672.526500px;}
.y81{bottom:675.300000px;}
.y3c{bottom:677.247000px;}
.y136{bottom:679.063500px;}
.y101{bottom:680.110500px;}
.y1b3{bottom:680.143500px;}
.y65{bottom:683.437500px;}
.y1c{bottom:686.433000px;}
.y4b{bottom:687.333000px;}
.y11c{bottom:689.569500px;}
.y14d{bottom:693.124500px;}
.y192{bottom:694.195500px;}
.y3b{bottom:698.916000px;}
.y135{bottom:700.732500px;}
.y100{bottom:701.779500px;}
.y1b2{bottom:701.812500px;}
.y64{bottom:705.106500px;}
.y1b{bottom:708.700500px;}
.ydd{bottom:709.575000px;}
.y11b{bottom:711.237000px;}
.y14c{bottom:714.793500px;}
.y80{bottom:715.032000px;}
.y3a{bottom:720.585000px;}
.y134{bottom:722.401500px;}
.y5{bottom:723.208500px;}
.y4a{bottom:723.946500px;}
.y63{bottom:726.775500px;}
.y170{bottom:727.446000px;}
.y1a{bottom:730.966500px;}
.ydc{bottom:731.244000px;}
.y11a{bottom:732.906000px;}
.y14b{bottom:736.462500px;}
.y7f{bottom:736.701000px;}
.y1b1{bottom:737.770500px;}
.yff{bottom:741.207000px;}
.y39{bottom:742.254000px;}
.y62{bottom:748.444500px;}
.y16f{bottom:749.115000px;}
.y4{bottom:750.108000px;}
.ydb{bottom:752.913000px;}
.y19{bottom:753.232500px;}
.y14a{bottom:758.130000px;}
.y1b0{bottom:759.439500px;}
.y49{bottom:760.558500px;}
.y38{bottom:763.921500px;}
.y119{bottom:766.156500px;}
.ya8{bottom:769.710000px;}
.y61{bottom:770.112000px;}
.y16e{bottom:770.784000px;}
.yda{bottom:774.582000px;}
.y18{bottom:774.901500px;}
.y191{bottom:779.439000px;}
.y149{bottom:779.799000px;}
.y1af{bottom:781.108500px;}
.y1a7{bottom:791.020500px;}
.ya7{bottom:791.379000px;}
.y16d{bottom:792.451500px;}
.yd9{bottom:796.249500px;}
.y17{bottom:797.167500px;}
.y48{bottom:797.172000px;}
.y27{bottom:799.558500px;}
.yfe{bottom:801.106500px;}
.y148{bottom:801.468000px;}
.y37{bottom:803.149500px;}
.y1a6{bottom:812.688000px;}
.y16c{bottom:814.120500px;}
.y1ae{bottom:817.066500px;}
.yd8{bottom:817.918500px;}
.y16{bottom:818.836500px;}
.y47{bottom:818.841000px;}
.y118{bottom:820.477500px;}
.y26{bottom:821.227500px;}
.y9b{bottom:821.491500px;}
.yfd{bottom:822.775500px;}
.y36{bottom:824.818500px;}
.y1a5{bottom:834.357000px;}
.y147{bottom:834.718500px;}
.y16b{bottom:835.789500px;}
.y1ad{bottom:838.735500px;}
.yd7{bottom:839.587500px;}
.y15{bottom:841.102500px;}
.y25{bottom:842.896500px;}
.yfc{bottom:844.444500px;}
.y35{bottom:846.487500px;}
.y1a4{bottom:856.026000px;}
.y117{bottom:856.687500px;}
.y16a{bottom:857.458500px;}
.y46{bottom:859.936500px;}
.yd6{bottom:861.256500px;}
.y14{bottom:862.771500px;}
.y24{bottom:864.565500px;}
.yfb{bottom:866.113500px;}
.y34{bottom:868.156500px;}
.y1ac{bottom:874.693500px;}
.y1a3{bottom:877.695000px;}
.y169{bottom:879.127500px;}
.y45{bottom:881.605500px;}
.yd5{bottom:882.925500px;}
.y13{bottom:884.440500px;}
.y23{bottom:886.234500px;}
.y146{bottom:886.711500px;}
.yfa{bottom:887.782500px;}
.y33{bottom:889.824000px;}
.y1ab{bottom:896.362500px;}
.y1a2{bottom:899.364000px;}
.y168{bottom:900.795000px;}
.y44{bottom:903.274500px;}
.yd4{bottom:904.594500px;}
.y12{bottom:906.109500px;}
.y22{bottom:907.902000px;}
.y145{bottom:908.379000px;}
.yf9{bottom:909.450000px;}
.y1aa{bottom:918.031500px;}
.y182{bottom:921.033000px;}
.y167{bottom:922.464000px;}
.y43{bottom:924.942000px;}
.y11{bottom:928.375500px;}
.y32{bottom:929.052000px;}
.y21{bottom:929.571000px;}
.y144{bottom:930.048000px;}
.yf8{bottom:931.119000px;}
.yd3{bottom:941.206500px;}
.y181{bottom:942.700500px;}
.y166{bottom:944.133000px;}
.y2d{bottom:946.611000px;}
.y10{bottom:950.643000px;}
.y31{bottom:950.721000px;}
.y20{bottom:951.240000px;}
.y143{bottom:951.717000px;}
.yf7{bottom:952.788000px;}
.y1a9{bottom:953.989500px;}
.y180{bottom:964.369500px;}
.y165{bottom:965.802000px;}
.y2c{bottom:968.280000px;}
.y30{bottom:972.390000px;}
.yf{bottom:972.909000px;}
.yf6{bottom:974.457000px;}
.y1a8{bottom:975.658500px;}
.yd2{bottom:977.820000px;}
.y17f{bottom:986.038500px;}
.y164{bottom:987.471000px;}
.y2b{bottom:989.949000px;}
.y142{bottom:991.144500px;}
.y2f{bottom:994.059000px;}
.ye{bottom:994.578000px;}
.y1f{bottom:995.175000px;}
.yf5{bottom:996.126000px;}
.y17e{bottom:1007.707500px;}
.y2a{bottom:1011.618000px;}
.yd1{bottom:1014.432000px;}
.y2e{bottom:1015.728000px;}
.yd{bottom:1016.844000px;}
.yf4{bottom:1017.795000px;}
.y163{bottom:1020.721500px;}
.y133{bottom:1029.376500px;}
.y29{bottom:1033.287000px;}
.yf3{bottom:1039.462500px;}
.y3{bottom:1051.044000px;}
.y28{bottom:1054.954500px;}
.yf2{bottom:1061.131500px;}
.y2{bottom:1072.713000px;}
.y1{bottom:1094.382000px;}
.yc{bottom:1142.382000px;}
.hc{height:18.584984px;}
.hb{height:26.549977px;}
.h7{height:34.936160px;}
.h8{height:38.111063px;}
.h9{height:41.923392px;}
.he{height:42.494273px;}
.h10{height:49.090950px;}
.hf{height:49.129570px;}
.h2{height:53.798400px;}
.h5{height:55.376486px;}
.h3{height:64.557900px;}
.h4{height:77.469300px;}
.ha{height:203.073480px;}
.hd{height:253.844928px;}
.h6{height:270.764640px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:338.459904px;}
.w2{width:676.911600px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:9.959993px;}
.x25{left:11.558844px;}
.x13{left:15.806582px;}
.x24{left:17.863171px;}
.x32{left:23.436278px;}
.x1b{left:45.668279px;}
.x11{left:50.059863px;}
.x23{left:51.271816px;}
.x15{left:74.096192px;}
.x30{left:78.785799px;}
.x26{left:80.163129px;}
.x33{left:89.610099px;}
.x27{left:93.988182px;}
.x1c{left:96.326714px;}
.xc{left:108.000000px;}
.x36{left:112.509000px;}
.xf{left:116.967000px;}
.x9{left:119.934000px;}
.x1d{left:125.265860px;}
.x10{left:134.338500px;}
.xd{left:135.690000px;}
.x12{left:144.634146px;}
.x7{left:152.337000px;}
.x31{left:162.825328px;}
.x3{left:218.566500px;}
.xb{left:221.271000px;}
.x34{left:226.528228px;}
.x4{left:227.973000px;}
.x1{left:232.443000px;}
.x29{left:246.462838px;}
.x2{left:251.863500px;}
.xa{left:259.918500px;}
.x35{left:263.391000px;}
.x28{left:264.917143px;}
.x8{left:272.251500px;}
.x2f{left:277.228500px;}
.x1e{left:310.897507px;}
.xe{left:332.026500px;}
.x1f{left:333.351052px;}
.x18{left:348.333303px;}
.x16{left:382.586585px;}
.x5{left:399.048000px;}
.x1a{left:406.622913px;}
.x6{left:416.763000px;}
.x2d{left:460.108165px;}
.x2c{left:466.086964px;}
.x20{left:474.809863px;}
.x17{left:477.160868px;}
.x2a{left:484.541269px;}
.x19{left:490.337727px;}
.x21{left:525.468299px;}
.x2b{left:530.565702px;}
.x22{left:547.921844px;}
.x2e{left:553.019247px;}
@media print{
.v3{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.138446pt;}
.v2{vertical-align:13.996401pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000990pt;}
.ls9{letter-spacing:0.001022pt;}
.ls5{letter-spacing:4.771413pt;}
.ls7{letter-spacing:18.086356pt;}
.ls6{letter-spacing:18.539976pt;}
.ls0{letter-spacing:20.812421pt;}
.ls3{letter-spacing:31.215625pt;}
.ls2{letter-spacing:31.880533pt;}
.ls4{letter-spacing:303.418291pt;}
.ws8b{word-spacing:-40.590295pt;}
.ws19{word-spacing:-26.014515pt;}
.ws17{word-spacing:-20.467302pt;}
.ws5{word-spacing:-17.343010pt;}
.ws18{word-spacing:-17.279249pt;}
.wsa1{word-spacing:-15.940267pt;}
.wsd5{word-spacing:-3.315575pt;}
.ws98{word-spacing:-2.933009pt;}
.ws83{word-spacing:-2.869248pt;}
.wsd2{word-spacing:-2.677965pt;}
.ws71{word-spacing:-2.614204pt;}
.ws5f{word-spacing:-2.550443pt;}
.wsc6{word-spacing:-2.231637pt;}
.ws8{word-spacing:-2.167876pt;}
.wsc2{word-spacing:-1.912832pt;}
.ws20{word-spacing:-1.785310pt;}
.ws29{word-spacing:-1.721549pt;}
.wsbf{word-spacing:-1.594027pt;}
.wse9{word-spacing:-1.530266pt;}
.ws34{word-spacing:-1.211460pt;}
.wse1{word-spacing:-1.083938pt;}
.ws48{word-spacing:-1.020177pt;}
.ws28{word-spacing:-0.956416pt;}
.ws96{word-spacing:-0.828894pt;}
.ws81{word-spacing:-0.701372pt;}
.ws32{word-spacing:-0.637611pt;}
.ws51{word-spacing:-0.446327pt;}
.wsd4{word-spacing:-0.382566pt;}
.wsd7{word-spacing:-0.255044pt;}
.ws50{word-spacing:-0.191283pt;}
.ws43{word-spacing:-0.127522pt;}
.ws15{word-spacing:-0.091815pt;}
.ws1{word-spacing:-0.063761pt;}
.ws8c{word-spacing:-0.042507pt;}
.ws6{word-spacing:0.000000pt;}
.wsbe{word-spacing:0.255044pt;}
.ws5d{word-spacing:0.318805pt;}
.ws5c{word-spacing:0.382566pt;}
.wsbd{word-spacing:0.446327pt;}
.wse0{word-spacing:0.510089pt;}
.ws72{word-spacing:0.637611pt;}
.ws61{word-spacing:0.701372pt;}
.ws93{word-spacing:0.765133pt;}
.ws90{word-spacing:0.892655pt;}
.ws4f{word-spacing:0.956416pt;}
.ws9b{word-spacing:1.020177pt;}
.ws99{word-spacing:1.083938pt;}
.wsdd{word-spacing:1.147699pt;}
.wsd6{word-spacing:1.466505pt;}
.ws6d{word-spacing:1.530266pt;}
.wsc5{word-spacing:1.550198pt;}
.ws14{word-spacing:1.594027pt;}
.ws54{word-spacing:1.657788pt;}
.ws73{word-spacing:1.785310pt;}
.ws3e{word-spacing:1.849071pt;}
.ws91{word-spacing:2.040354pt;}
.ws9c{word-spacing:2.104115pt;}
.ws7a{word-spacing:2.167876pt;}
.wse4{word-spacing:2.359159pt;}
.ws41{word-spacing:2.422921pt;}
.ws75{word-spacing:2.486682pt;}
.ws65{word-spacing:2.550443pt;}
.ws47{word-spacing:2.614204pt;}
.ws70{word-spacing:2.741726pt;}
.wsdf{word-spacing:2.805487pt;}
.ws88{word-spacing:2.869248pt;}
.ws1c{word-spacing:2.933009pt;}
.ws23{word-spacing:2.996770pt;}
.ws6e{word-spacing:3.060531pt;}
.wsb1{word-spacing:3.087927pt;}
.wsb2{word-spacing:3.110636pt;}
.ws5e{word-spacing:3.124292pt;}
.ws60{word-spacing:3.251814pt;}
.ws74{word-spacing:3.315575pt;}
.ws40{word-spacing:3.379337pt;}
.ws2{word-spacing:3.443098pt;}
.wsac{word-spacing:3.456253pt;}
.wsa{word-spacing:3.506859pt;}
.wsea{word-spacing:3.570620pt;}
.ws11{word-spacing:3.634381pt;}
.ws85{word-spacing:3.698142pt;}
.ws89{word-spacing:3.761903pt;}
.wsda{word-spacing:3.825664pt;}
.wsde{word-spacing:3.889425pt;}
.ws6b{word-spacing:3.953186pt;}
.ws5a{word-spacing:4.016947pt;}
.wse3{word-spacing:4.080708pt;}
.ws3{word-spacing:4.131706pt;}
.ws35{word-spacing:4.144469pt;}
.ws46{word-spacing:4.271991pt;}
.ws56{word-spacing:4.335753pt;}
.ws53{word-spacing:4.399514pt;}
.ws22{word-spacing:4.463275pt;}
.ws1b{word-spacing:4.527036pt;}
.wsd8{word-spacing:4.590797pt;}
.ws1e{word-spacing:4.654558pt;}
.ws95{word-spacing:4.782080pt;}
.ws79{word-spacing:4.909602pt;}
.wsd9{word-spacing:4.973363pt;}
.wsd3{word-spacing:5.037124pt;}
.ws92{word-spacing:5.100885pt;}
.ws38{word-spacing:5.228407pt;}
.ws24{word-spacing:5.292169pt;}
.wsb5{word-spacing:5.419691pt;}
.ws39{word-spacing:5.483452pt;}
.ws13{word-spacing:5.547213pt;}
.ws59{word-spacing:5.738496pt;}
.ws6a{word-spacing:5.864609pt;}
.wsca{word-spacing:5.866018pt;}
.wsce{word-spacing:5.993540pt;}
.ws10{word-spacing:6.057301pt;}
.wsa6{word-spacing:6.121062pt;}
.wsa3{word-spacing:6.184823pt;}
.wsc7{word-spacing:6.248585pt;}
.wsab{word-spacing:6.312346pt;}
.ws8e{word-spacing:6.376107pt;}
.ws57{word-spacing:6.439868pt;}
.ws52{word-spacing:6.503629pt;}
.wsed{word-spacing:6.567390pt;}
.ws9f{word-spacing:6.631151pt;}
.ws7b{word-spacing:6.694912pt;}
.ws6c{word-spacing:6.758673pt;}
.ws82{word-spacing:6.779520pt;}
.wse5{word-spacing:6.822434pt;}
.ws55{word-spacing:6.886195pt;}
.ws78{word-spacing:7.013717pt;}
.ws3b{word-spacing:7.077478pt;}
.wscf{word-spacing:7.141239pt;}
.ws8d{word-spacing:7.205001pt;}
.wse7{word-spacing:7.268762pt;}
.wsa2{word-spacing:7.460045pt;}
.ws3a{word-spacing:7.523806pt;}
.ws2f{word-spacing:7.587567pt;}
.ws77{word-spacing:7.651328pt;}
.ws21{word-spacing:7.715089pt;}
.ws4e{word-spacing:7.778850pt;}
.ws4c{word-spacing:7.842611pt;}
.ws4a{word-spacing:7.906372pt;}
.ws9e{word-spacing:7.970133pt;}
.wsa7{word-spacing:8.156373pt;}
.wsb7{word-spacing:8.160748pt;}
.ws97{word-spacing:8.161417pt;}
.ws7c{word-spacing:8.225178pt;}
.wsc8{word-spacing:8.288939pt;}
.ws62{word-spacing:8.352700pt;}
.wsb0{word-spacing:8.417493pt;}
.ws8a{word-spacing:8.480222pt;}
.ws76{word-spacing:8.543983pt;}
.ws5b{word-spacing:8.607744pt;}
.ws9a{word-spacing:8.735266pt;}
.wsb9{word-spacing:8.774827pt;}
.ws12{word-spacing:8.862788pt;}
.ws58{word-spacing:8.926549pt;}
.ws9d{word-spacing:8.990310pt;}
.ws30{word-spacing:9.040299pt;}
.wscc{word-spacing:9.054071pt;}
.ws37{word-spacing:9.181594pt;}
.wsd1{word-spacing:9.500399pt;}
.wsdb{word-spacing:9.691682pt;}
.ws7f{word-spacing:9.755443pt;}
.ws1d{word-spacing:9.819204pt;}
.wsc9{word-spacing:9.882965pt;}
.ws25{word-spacing:9.946726pt;}
.wsae{word-spacing:10.010487pt;}
.ws26{word-spacing:10.138010pt;}
.ws3d{word-spacing:10.201771pt;}
.wsa0{word-spacing:10.265532pt;}
.ws2e{word-spacing:10.329293pt;}
.wsc0{word-spacing:10.393054pt;}
.wsb{word-spacing:10.396276pt;}
.wsbb{word-spacing:10.456815pt;}
.wsd0{word-spacing:10.520576pt;}
.wsee{word-spacing:10.584337pt;}
.ws7d{word-spacing:10.648098pt;}
.ws87{word-spacing:10.684587pt;}
.wseb{word-spacing:10.711859pt;}
.wse2{word-spacing:10.775620pt;}
.wsa9{word-spacing:10.839381pt;}
.wsa8{word-spacing:10.851270pt;}
.ws7e{word-spacing:10.903142pt;}
.ws36{word-spacing:10.966903pt;}
.ws67{word-spacing:11.030665pt;}
.wse6{word-spacing:11.285709pt;}
.ws42{word-spacing:11.349470pt;}
.wsa4{word-spacing:11.413231pt;}
.wsf1{word-spacing:11.476992pt;}
.ws6f{word-spacing:11.540753pt;}
.wsb4{word-spacing:11.761493pt;}
.ws44{word-spacing:11.795797pt;}
.ws45{word-spacing:11.859558pt;}
.ws80{word-spacing:11.987081pt;}
.wscd{word-spacing:12.114603pt;}
.ws1f{word-spacing:12.178364pt;}
.wsef{word-spacing:12.242125pt;}
.wsc1{word-spacing:12.433408pt;}
.wsa5{word-spacing:12.560930pt;}
.wsaa{word-spacing:12.688452pt;}
.ws2a{word-spacing:12.752213pt;}
.ws2c{word-spacing:12.771531pt;}
.wscb{word-spacing:12.879735pt;}
.ws63{word-spacing:13.071019pt;}
.ws94{word-spacing:13.198541pt;}
.wsc3{word-spacing:13.389824pt;}
.wsb3{word-spacing:13.547520pt;}
.wsbc{word-spacing:13.581107pt;}
.wse8{word-spacing:13.708629pt;}
.ws64{word-spacing:13.836151pt;}
.wsba{word-spacing:14.091196pt;}
.wsf0{word-spacing:14.410001pt;}
.ws84{word-spacing:14.426677pt;}
.wsb6{word-spacing:15.517867pt;}
.ws31{word-spacing:16.629458pt;}
.ws33{word-spacing:16.655377pt;}
.wsb8{word-spacing:18.262187pt;}
.wsec{word-spacing:20.594825pt;}
.ws7{word-spacing:20.722347pt;}
.ws3f{word-spacing:20.740316pt;}
.wsad{word-spacing:20.740680pt;}
.wsc4{word-spacing:21.515077pt;}
.ws86{word-spacing:21.733229pt;}
.ws0{word-spacing:23.846639pt;}
.ws4d{word-spacing:25.096571pt;}
.ws4b{word-spacing:25.203238pt;}
.wsdc{word-spacing:26.986013pt;}
.ws3c{word-spacing:27.442459pt;}
.wsaf{word-spacing:27.932233pt;}
.ws2b{word-spacing:30.048125pt;}
.ws2d{word-spacing:30.079377pt;}
.ws49{word-spacing:32.773188pt;}
.ws4{word-spacing:34.338985pt;}
.ws16{word-spacing:57.703765pt;}
.wsf{word-spacing:63.697306pt;}
.ws69{word-spacing:84.029692pt;}
.ws27{word-spacing:86.000687pt;}
.ws68{word-spacing:89.521844pt;}
.ws1a{word-spacing:103.200585pt;}
.ws66{word-spacing:141.570254pt;}
.wsc{word-spacing:388.142788pt;}
.wsd{word-spacing:394.155457pt;}
.ws9{word-spacing:442.805151pt;}
.wse{word-spacing:477.293512pt;}
.ws8f{word-spacing:1151.437029pt;}
._15{margin-left:-39.850667pt;}
._10{margin-left:-32.964471pt;}
._2a{margin-left:-31.880533pt;}
._56{margin-left:-29.330091pt;}
._f{margin-left:-24.292966pt;}
._7{margin-left:-9.500340pt;}
._e{margin-left:-6.949956pt;}
._c{margin-left:-5.228407pt;}
._1{margin-left:-4.016947pt;}
._38{margin-left:-2.933009pt;}
._0{margin-left:-1.976593pt;}
._d{margin-left:-1.083938pt;}
._2{width:1.721549pt;}
._3{width:2.846279pt;}
._26{width:3.889425pt;}
._52{width:10.779010pt;}
._55{width:15.557700pt;}
._40{width:16.705399pt;}
._3a{width:17.725577pt;}
._46{width:18.618231pt;}
._25{width:20.020975pt;}
._4f{width:21.551241pt;}
._32{width:22.890223pt;}
._24{width:24.356727pt;}
._39{width:25.950754pt;}
._34{width:26.843409pt;}
._5{width:28.054869pt;}
._36{width:29.011285pt;}
._3c{width:30.222746pt;}
._2b{width:31.944294pt;}
._4{width:33.283184pt;}
._53{width:34.175932pt;}
._3e{width:35.897481pt;}
._45{width:36.981419pt;}
._50{width:38.766729pt;}
._43{width:40.483272pt;}
._44{width:41.572215pt;}
._47{width:42.464870pt;}
._51{width:43.995136pt;}
._3d{width:45.525402pt;}
._31{width:46.928145pt;}
._3f{width:47.884561pt;}
._54{width:48.968499pt;}
._3b{width:50.753809pt;}
._41{width:51.646464pt;}
._42{width:52.666641pt;}
._33{width:54.133146pt;}
._37{width:55.957192pt;}
._28{width:57.767526pt;}
._4d{width:62.769654pt;}
._8{width:64.000654pt;}
._12{width:67.641411pt;}
._4b{width:68.882200pt;}
._4c{width:73.400718pt;}
._11{width:74.718889pt;}
._4a{width:78.892869pt;}
._2c{width:95.386556pt;}
._35{width:103.292400pt;}
._13{width:105.228559pt;}
._49{width:120.310216pt;}
._1e{width:126.119390pt;}
._48{width:130.941280pt;}
._9{width:137.874225pt;}
._4e{width:141.798294pt;}
._1c{width:156.023330pt;}
._18{width:164.248508pt;}
._6{width:173.014294pt;}
._1a{width:179.869969pt;}
._b{width:193.958460pt;}
._1f{width:209.916889pt;}
._16{width:225.395371pt;}
._1b{width:275.845832pt;}
._14{width:299.298118pt;}
._1d{width:380.860308pt;}
._a{width:396.138426pt;}
._21{width:497.670583pt;}
._22{width:620.346875pt;}
._19{width:629.018380pt;}
._23{width:779.430736pt;}
._29{width:854.717099pt;}
._2d{width:996.075383pt;}
._2f{width:1148.018005pt;}
._2e{width:1170.206857pt;}
._17{width:1254.435226pt;}
._20{width:1273.770286pt;}
._27{width:1882.800538pt;}
._30{width:1898.358238pt;}
.fs4{font-size:23.399413pt;}
.fs7{font-size:25.593419pt;}
.fs3{font-size:33.427733pt;}
.fs6{font-size:36.562027pt;}
.fs5{font-size:40.113280pt;}
.fs9{font-size:42.507200pt;}
.fs8{font-size:47.008320pt;}
.fsa{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs2{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:4.243956pt;}
.ye1{bottom:10.561284pt;}
.y9c{bottom:15.669451pt;}
.ye0{bottom:24.322031pt;}
.yb5{bottom:24.692327pt;}
.yaa{bottom:26.851283pt;}
.ye2{bottom:32.513802pt;}
.yac{bottom:37.162238pt;}
.yb6{bottom:43.483808pt;}
.yc5{bottom:48.263371pt;}
.yca{bottom:50.376560pt;}
.yb7{bottom:62.275289pt;}
.y9f{bottom:67.247198pt;}
.ybd{bottom:70.289644pt;}
.yc6{bottom:71.834416pt;}
.ybe{bottom:73.305158pt;}
.ycb{bottom:76.060793pt;}
.ybf{bottom:76.387186pt;}
.yc0{bottom:79.033902pt;}
.yb8{bottom:81.066770pt;}
.ye5{bottom:86.247985pt;}
.ya5{bottom:93.584182pt;}
.yab{bottom:94.686368pt;}
.yc7{bottom:95.405460pt;}
.y141{bottom:98.056000pt;}
.y17d{bottom:98.606667pt;}
.yb9{bottom:99.858252pt;}
.yc1{bottom:101.323850pt;}
.ycc{bottom:101.745027pt;}
.y60{bottom:102.193333pt;}
.ye3{bottom:106.277584pt;}
.y9a{bottom:108.444000pt;}
.y7e{bottom:109.916000pt;}
.y132{bottom:114.708000pt;}
.yb1{bottom:114.711767pt;}
.y140{bottom:117.316000pt;}
.y162{bottom:117.868000pt;}
.yba{bottom:118.649733pt;}
.yc8{bottom:118.976504pt;}
.y5f{bottom:121.454667pt;}
.yd0{bottom:121.665333pt;}
.y9e{bottom:123.533755pt;}
.y1a1{bottom:124.288000pt;}
.yf1{bottom:124.757333pt;}
.yb0{bottom:126.972955pt;}
.ycd{bottom:127.429260pt;}
.y99{bottom:127.705333pt;}
.yc4{bottom:127.769475pt;}
.y7d{bottom:129.177333pt;}
.y131{bottom:133.968000pt;}
.yb{bottom:134.585333pt;}
.y13f{bottom:136.577333pt;}
.y161{bottom:137.129333pt;}
.ybb{bottom:137.441214pt;}
.yaf{bottom:139.234143pt;}
.yc3{bottom:140.030664pt;}
.y5e{bottom:140.716000pt;}
.ycf{bottom:140.925333pt;}
.yc9{bottom:142.547549pt;}
.y1a0{bottom:143.549333pt;}
.yf0{bottom:144.017333pt;}
.y98{bottom:146.966667pt;}
.y7c{bottom:148.437333pt;}
.yae{bottom:151.495332pt;}
.yc2{bottom:152.291852pt;}
.yce{bottom:153.113493pt;}
.y130{bottom:153.229333pt;}
.ya{bottom:153.846667pt;}
.y13e{bottom:155.838667pt;}
.ybc{bottom:156.232695pt;}
.y160{bottom:156.390667pt;}
.y5d{bottom:159.977333pt;}
.y116{bottom:162.810667pt;}
.yef{bottom:163.278667pt;}
.y97{bottom:166.228000pt;}
.yb4{bottom:167.692000pt;}
.y7b{bottom:167.698667pt;}
.ye8{bottom:168.985933pt;}
.yad{bottom:170.376778pt;}
.y12f{bottom:172.490667pt;}
.ya4{bottom:174.881687pt;}
.y13d{bottom:175.100000pt;}
.y15f{bottom:175.650667pt;}
.y5c{bottom:179.237333pt;}
.ye4{bottom:180.127057pt;}
.y115{bottom:182.072000pt;}
.yee{bottom:182.540000pt;}
.y96{bottom:185.488000pt;}
.ye7{bottom:186.236599pt;}
.y7a{bottom:186.960000pt;}
.ya3{bottom:187.142875pt;}
.y12e{bottom:191.752000pt;}
.ya6{bottom:193.074512pt;}
.y13c{bottom:194.361333pt;}
.y17c{bottom:194.912000pt;}
.y5b{bottom:198.498667pt;}
.ya2{bottom:199.404063pt;}
.y114{bottom:201.333333pt;}
.yed{bottom:201.801333pt;}
.y95{bottom:204.749333pt;}
.y15e{bottom:205.206667pt;}
.y79{bottom:206.221333pt;}
.ye6{bottom:209.657107pt;}
.y12d{bottom:211.013333pt;}
.ya1{bottom:211.665252pt;}
.y190{bottom:213.621333pt;}
.y17b{bottom:214.173333pt;}
.y5a{bottom:217.760000pt;}
.y113{bottom:220.593333pt;}
.y94{bottom:224.010667pt;}
.y78{bottom:225.482667pt;}
.y1c4{bottom:226.324000pt;}
.ya0{bottom:230.546698pt;}
.y18f{bottom:232.882667pt;}
.y17a{bottom:233.434667pt;}
.y13b{bottom:233.662667pt;}
.y59{bottom:237.021333pt;}
.y112{bottom:239.854667pt;}
.y12c{bottom:240.569333pt;}
.y93{bottom:243.272000pt;}
.y77{bottom:244.744000pt;}
.yec{bottom:245.437333pt;}
.y1c3{bottom:245.585333pt;}
.y15d{bottom:251.422667pt;}
.y18e{bottom:252.144000pt;}
.y179{bottom:252.696000pt;}
.y13a{bottom:252.922667pt;}
.y58{bottom:256.282667pt;}
.y111{bottom:259.116000pt;}
.y92{bottom:262.533333pt;}
.y76{bottom:264.004000pt;}
.yeb{bottom:264.698667pt;}
.y1c2{bottom:264.846667pt;}
.y15c{bottom:270.684000pt;}
.y18d{bottom:271.405333pt;}
.y178{bottom:271.957333pt;}
.y139{bottom:272.184000pt;}
.y57{bottom:275.542667pt;}
.y110{bottom:278.377333pt;}
.y91{bottom:281.794667pt;}
.y75{bottom:283.265333pt;}
.yea{bottom:283.960000pt;}
.y1c1{bottom:284.108000pt;}
.y12b{bottom:286.784000pt;}
.y15b{bottom:289.945333pt;}
.y18c{bottom:290.666667pt;}
.y138{bottom:291.445333pt;}
.y56{bottom:294.804000pt;}
.y10f{bottom:297.638667pt;}
.y90{bottom:301.054667pt;}
.y177{bottom:301.512000pt;}
.y74{bottom:302.526667pt;}
.ye9{bottom:303.221333pt;}
.y12a{bottom:306.045333pt;}
.y15a{bottom:309.205333pt;}
.y18b{bottom:309.928000pt;}
.y137{bottom:310.706667pt;}
.y55{bottom:314.065333pt;}
.y1c0{bottom:316.070667pt;}
.y10e{bottom:316.900000pt;}
.y8f{bottom:320.316000pt;}
.y73{bottom:321.788000pt;}
.y129{bottom:325.306667pt;}
.y159{bottom:328.466667pt;}
.y18a{bottom:329.188000pt;}
.ydf{bottom:329.986667pt;}
.y19f{bottom:332.684000pt;}
.y54{bottom:333.326667pt;}
.y1bf{bottom:335.332000pt;}
.y10d{bottom:336.160000pt;}
.y8e{bottom:339.577333pt;}
.y72{bottom:341.049333pt;}
.y128{bottom:344.568000pt;}
.y176{bottom:347.728000pt;}
.y189{bottom:348.449333pt;}
.y53{bottom:352.588000pt;}
.y1be{bottom:354.593333pt;}
.y10c{bottom:355.421333pt;}
.y158{bottom:358.022667pt;}
.y8d{bottom:358.838667pt;}
.y71{bottom:360.310667pt;}
.y127{bottom:363.829333pt;}
.y175{bottom:366.989333pt;}
.y188{bottom:367.710667pt;}
.y1bd{bottom:373.854667pt;}
.y10b{bottom:374.682667pt;}
.y8c{bottom:378.100000pt;}
.y70{bottom:379.570667pt;}
.y52{bottom:382.144000pt;}
.y126{bottom:383.089333pt;}
.y19e{bottom:385.929333pt;}
.y174{bottom:386.250667pt;}
.y187{bottom:386.972000pt;}
.y1bc{bottom:393.114667pt;}
.y10a{bottom:393.944000pt;}
.y8b{bottom:397.361333pt;}
.y6f{bottom:398.832000pt;}
.y125{bottom:402.350667pt;}
.yb3{bottom:402.925333pt;}
.y157{bottom:404.238667pt;}
.y19d{bottom:405.190667pt;}
.y173{bottom:405.512000pt;}
.y186{bottom:406.233333pt;}
.y109{bottom:413.205333pt;}
.y8a{bottom:416.621333pt;}
.y6e{bottom:418.093333pt;}
.y124{bottom:421.612000pt;}
.yb2{bottom:422.186667pt;}
.y156{bottom:423.500000pt;}
.y19c{bottom:424.452000pt;}
.y1bb{bottom:425.078667pt;}
.y185{bottom:425.494667pt;}
.y51{bottom:428.358667pt;}
.y108{bottom:432.465333pt;}
.y172{bottom:435.066667pt;}
.y89{bottom:435.882667pt;}
.y6d{bottom:437.354667pt;}
.y123{bottom:440.873333pt;}
.y155{bottom:442.761333pt;}
.y19b{bottom:443.713333pt;}
.y1ba{bottom:444.340000pt;}
.y184{bottom:444.754667pt;}
.y50{bottom:447.620000pt;}
.ya9{bottom:448.953333pt;}
.y107{bottom:451.726667pt;}
.y88{bottom:455.144000pt;}
.y42{bottom:455.214667pt;}
.y6c{bottom:456.616000pt;}
.y122{bottom:460.134667pt;}
.y154{bottom:462.021333pt;}
.y19a{bottom:462.973333pt;}
.y9{bottom:463.525333pt;}
.y1b9{bottom:463.601333pt;}
.y4f{bottom:466.881333pt;}
.y106{bottom:470.988000pt;}
.y87{bottom:474.405333pt;}
.y6b{bottom:475.877333pt;}
.y153{bottom:481.282667pt;}
.y199{bottom:482.234667pt;}
.y1b8{bottom:482.861333pt;}
.y183{bottom:484.762667pt;}
.y4e{bottom:486.142667pt;}
.y121{bottom:489.690667pt;}
.y41{bottom:490.084000pt;}
.y105{bottom:490.249333pt;}
.y86{bottom:493.666667pt;}
.y6a{bottom:495.137333pt;}
.y152{bottom:500.544000pt;}
.y198{bottom:501.496000pt;}
.y8{bottom:504.704000pt;}
.y40{bottom:509.345333pt;}
.y85{bottom:512.926667pt;}
.y69{bottom:514.398667pt;}
.y1b7{bottom:514.825333pt;}
.y104{bottom:519.805333pt;}
.y197{bottom:520.757333pt;}
.y4d{bottom:521.189333pt;}
.y3f{bottom:528.606667pt;}
.y84{bottom:532.188000pt;}
.y68{bottom:533.660000pt;}
.y7{bottom:533.928000pt;}
.y1b6{bottom:534.086667pt;}
.y120{bottom:535.905333pt;}
.y151{bottom:539.066667pt;}
.y196{bottom:540.018667pt;}
.y3e{bottom:547.866667pt;}
.y83{bottom:551.449333pt;}
.y67{bottom:552.921333pt;}
.y1b5{bottom:553.346667pt;}
.y11f{bottom:555.166667pt;}
.y150{bottom:558.326667pt;}
.y195{bottom:559.278667pt;}
.y6{bottom:563.150667pt;}
.y103{bottom:566.021333pt;}
.y3d{bottom:567.128000pt;}
.y1e{bottom:570.578667pt;}
.y82{bottom:570.710667pt;}
.y11e{bottom:574.428000pt;}
.y4c{bottom:574.433333pt;}
.y14f{bottom:577.588000pt;}
.y194{bottom:578.540000pt;}
.yde{bottom:584.517333pt;}
.y102{bottom:585.281333pt;}
.y1b4{bottom:585.310667pt;}
.y66{bottom:588.238667pt;}
.y1d{bottom:590.370667pt;}
.y171{bottom:593.373333pt;}
.y11d{bottom:593.689333pt;}
.y14e{bottom:596.849333pt;}
.y193{bottom:597.801333pt;}
.y81{bottom:600.266667pt;}
.y3c{bottom:601.997333pt;}
.y136{bottom:603.612000pt;}
.y101{bottom:604.542667pt;}
.y1b3{bottom:604.572000pt;}
.y65{bottom:607.500000pt;}
.y1c{bottom:610.162667pt;}
.y4b{bottom:610.962667pt;}
.y11c{bottom:612.950667pt;}
.y14d{bottom:616.110667pt;}
.y192{bottom:617.062667pt;}
.y3b{bottom:621.258667pt;}
.y135{bottom:622.873333pt;}
.y100{bottom:623.804000pt;}
.y1b2{bottom:623.833333pt;}
.y64{bottom:626.761333pt;}
.y1b{bottom:629.956000pt;}
.ydd{bottom:630.733333pt;}
.y11b{bottom:632.210667pt;}
.y14c{bottom:635.372000pt;}
.y80{bottom:635.584000pt;}
.y3a{bottom:640.520000pt;}
.y134{bottom:642.134667pt;}
.y5{bottom:642.852000pt;}
.y4a{bottom:643.508000pt;}
.y63{bottom:646.022667pt;}
.y170{bottom:646.618667pt;}
.y1a{bottom:649.748000pt;}
.ydc{bottom:649.994667pt;}
.y11a{bottom:651.472000pt;}
.y14b{bottom:654.633333pt;}
.y7f{bottom:654.845333pt;}
.y1b1{bottom:655.796000pt;}
.yff{bottom:658.850667pt;}
.y39{bottom:659.781333pt;}
.y62{bottom:665.284000pt;}
.y16f{bottom:665.880000pt;}
.y4{bottom:666.762667pt;}
.ydb{bottom:669.256000pt;}
.y19{bottom:669.540000pt;}
.y14a{bottom:673.893333pt;}
.y1b0{bottom:675.057333pt;}
.y49{bottom:676.052000pt;}
.y38{bottom:679.041333pt;}
.y119{bottom:681.028000pt;}
.ya8{bottom:684.186667pt;}
.y61{bottom:684.544000pt;}
.y16e{bottom:685.141333pt;}
.yda{bottom:688.517333pt;}
.y18{bottom:688.801333pt;}
.y191{bottom:692.834667pt;}
.y149{bottom:693.154667pt;}
.y1af{bottom:694.318667pt;}
.y1a7{bottom:703.129333pt;}
.ya7{bottom:703.448000pt;}
.y16d{bottom:704.401333pt;}
.yd9{bottom:707.777333pt;}
.y17{bottom:708.593333pt;}
.y48{bottom:708.597333pt;}
.y27{bottom:710.718667pt;}
.yfe{bottom:712.094667pt;}
.y148{bottom:712.416000pt;}
.y37{bottom:713.910667pt;}
.y1a6{bottom:722.389333pt;}
.y16c{bottom:723.662667pt;}
.y1ae{bottom:726.281333pt;}
.yd8{bottom:727.038667pt;}
.y16{bottom:727.854667pt;}
.y47{bottom:727.858667pt;}
.y118{bottom:729.313333pt;}
.y26{bottom:729.980000pt;}
.y9b{bottom:730.214667pt;}
.yfd{bottom:731.356000pt;}
.y36{bottom:733.172000pt;}
.y1a5{bottom:741.650667pt;}
.y147{bottom:741.972000pt;}
.y16b{bottom:742.924000pt;}
.y1ad{bottom:745.542667pt;}
.yd7{bottom:746.300000pt;}
.y15{bottom:747.646667pt;}
.y25{bottom:749.241333pt;}
.yfc{bottom:750.617333pt;}
.y35{bottom:752.433333pt;}
.y1a4{bottom:760.912000pt;}
.y117{bottom:761.500000pt;}
.y16a{bottom:762.185333pt;}
.y46{bottom:764.388000pt;}
.yd6{bottom:765.561333pt;}
.y14{bottom:766.908000pt;}
.y24{bottom:768.502667pt;}
.yfb{bottom:769.878667pt;}
.y34{bottom:771.694667pt;}
.y1ac{bottom:777.505333pt;}
.y1a3{bottom:780.173333pt;}
.y169{bottom:781.446667pt;}
.y45{bottom:783.649333pt;}
.yd5{bottom:784.822667pt;}
.y13{bottom:786.169333pt;}
.y23{bottom:787.764000pt;}
.y146{bottom:788.188000pt;}
.yfa{bottom:789.140000pt;}
.y33{bottom:790.954667pt;}
.y1ab{bottom:796.766667pt;}
.y1a2{bottom:799.434667pt;}
.y168{bottom:800.706667pt;}
.y44{bottom:802.910667pt;}
.yd4{bottom:804.084000pt;}
.y12{bottom:805.430667pt;}
.y22{bottom:807.024000pt;}
.y145{bottom:807.448000pt;}
.yf9{bottom:808.400000pt;}
.y1aa{bottom:816.028000pt;}
.y182{bottom:818.696000pt;}
.y167{bottom:819.968000pt;}
.y43{bottom:822.170667pt;}
.y11{bottom:825.222667pt;}
.y32{bottom:825.824000pt;}
.y21{bottom:826.285333pt;}
.y144{bottom:826.709333pt;}
.yf8{bottom:827.661333pt;}
.yd3{bottom:836.628000pt;}
.y181{bottom:837.956000pt;}
.y166{bottom:839.229333pt;}
.y2d{bottom:841.432000pt;}
.y10{bottom:845.016000pt;}
.y31{bottom:845.085333pt;}
.y20{bottom:845.546667pt;}
.y143{bottom:845.970667pt;}
.yf7{bottom:846.922667pt;}
.y1a9{bottom:847.990667pt;}
.y180{bottom:857.217333pt;}
.y165{bottom:858.490667pt;}
.y2c{bottom:860.693333pt;}
.y30{bottom:864.346667pt;}
.yf{bottom:864.808000pt;}
.yf6{bottom:866.184000pt;}
.y1a8{bottom:867.252000pt;}
.yd2{bottom:869.173333pt;}
.y17f{bottom:876.478667pt;}
.y164{bottom:877.752000pt;}
.y2b{bottom:879.954667pt;}
.y142{bottom:881.017333pt;}
.y2f{bottom:883.608000pt;}
.ye{bottom:884.069333pt;}
.y1f{bottom:884.600000pt;}
.yf5{bottom:885.445333pt;}
.y17e{bottom:895.740000pt;}
.y2a{bottom:899.216000pt;}
.yd1{bottom:901.717333pt;}
.y2e{bottom:902.869333pt;}
.yd{bottom:903.861333pt;}
.yf4{bottom:904.706667pt;}
.y163{bottom:907.308000pt;}
.y133{bottom:915.001333pt;}
.y29{bottom:918.477333pt;}
.yf3{bottom:923.966667pt;}
.y3{bottom:934.261333pt;}
.y28{bottom:937.737333pt;}
.yf2{bottom:943.228000pt;}
.y2{bottom:953.522667pt;}
.y1{bottom:972.784000pt;}
.yc{bottom:1015.450667pt;}
.hc{height:16.519986pt;}
.hb{height:23.599980pt;}
.h7{height:31.054364pt;}
.h8{height:33.876501pt;}
.h9{height:37.265237pt;}
.he{height:37.772687pt;}
.h10{height:43.636400pt;}
.hf{height:43.670729pt;}
.h2{height:47.820800pt;}
.h5{height:49.223543pt;}
.h3{height:57.384800pt;}
.h4{height:68.861600pt;}
.ha{height:180.509760pt;}
.hd{height:225.639936pt;}
.h6{height:240.679680pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:300.853248pt;}
.w2{width:601.699200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:8.853327pt;}
.x25{left:10.274528pt;}
.x13{left:14.050295pt;}
.x24{left:15.878374pt;}
.x32{left:20.832248pt;}
.x1b{left:40.594026pt;}
.x11{left:44.497656pt;}
.x23{left:45.574948pt;}
.x15{left:65.863281pt;}
.x30{left:70.031822pt;}
.x26{left:71.256115pt;}
.x33{left:79.653421pt;}
.x27{left:83.545051pt;}
.x1c{left:85.623746pt;}
.xc{left:96.000000pt;}
.x36{left:100.008000pt;}
.xf{left:103.970667pt;}
.x9{left:106.608000pt;}
.x1d{left:111.347432pt;}
.x10{left:119.412000pt;}
.xd{left:120.613333pt;}
.x12{left:128.563685pt;}
.x7{left:135.410667pt;}
.x31{left:144.733625pt;}
.x3{left:194.281333pt;}
.xb{left:196.685333pt;}
.x34{left:201.358425pt;}
.x4{left:202.642667pt;}
.x1{left:206.616000pt;}
.x29{left:219.078078pt;}
.x2{left:223.878667pt;}
.xa{left:231.038667pt;}
.x35{left:234.125333pt;}
.x28{left:235.481905pt;}
.x8{left:242.001333pt;}
.x2f{left:246.425333pt;}
.x1e{left:276.353339pt;}
.xe{left:295.134667pt;}
.x1f{left:296.312046pt;}
.x18{left:309.629603pt;}
.x16{left:340.076965pt;}
.x5{left:354.709333pt;}
.x1a{left:361.442590pt;}
.x6{left:370.456000pt;}
.x2d{left:408.985036pt;}
.x2c{left:414.299523pt;}
.x20{left:422.053212pt;}
.x17{left:424.142993pt;}
.x2a{left:430.703350pt;}
.x19{left:435.855758pt;}
.x21{left:467.082932pt;}
.x2b{left:471.613957pt;}
.x22{left:487.041639pt;}
.x2e{left:491.572664pt;}
}




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