
    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_fb3a2a28ac45dbd1646e9a6a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.082000;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_799b295a228d10bf46d75e39.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.080000;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_74ee41634d4b1a197d62d54a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.925000;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_94e523b4e9e15cd74ced8037.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074000;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_be1fe8a5f806af8449ccae4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.972000px;}
.v1{vertical-align:-19.580400px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.882000px;}
.lsa{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.588000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.300000px;}
.ls2{letter-spacing:0.588000px;}
.ls4{letter-spacing:0.756000px;}
.ls0{letter-spacing:5.760000px;}
.ls1{letter-spacing:11.046000px;}
.ls6{letter-spacing:55.639200px;}
.ls5{letter-spacing:55.639800px;}
.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;}
}
.ws1{word-spacing:-17.136000px;}
.ws2b{word-spacing:-14.523600px;}
.wsf4{word-spacing:-14.520000px;}
.wsd4{word-spacing:-14.220000px;}
.ws4{word-spacing:-13.935600px;}
.wsf2{word-spacing:-13.620000px;}
.ws5{word-spacing:-13.524000px;}
.wsd5{word-spacing:-13.200000px;}
.wsf3{word-spacing:-13.020000px;}
.ws2c{word-spacing:-12.936000px;}
.ws3{word-spacing:-11.067672px;}
.ws0{word-spacing:-9.954000px;}
.ws2{word-spacing:-7.370286px;}
.ws104{word-spacing:-6.840000px;}
.wsc8{word-spacing:-6.056400px;}
.ws29{word-spacing:-5.586000px;}
.wsac{word-spacing:-5.115600px;}
.ws59{word-spacing:-4.998000px;}
.ws45{word-spacing:-4.880400px;}
.ws94{word-spacing:-4.645200px;}
.ws1c{word-spacing:-4.527600px;}
.ws95{word-spacing:-4.410000px;}
.ws9c{word-spacing:-4.351200px;}
.wsa0{word-spacing:-4.233600px;}
.ws9e{word-spacing:-4.174800px;}
.ws85{word-spacing:-3.998400px;}
.ws96{word-spacing:-3.880800px;}
.wsd6{word-spacing:-3.704400px;}
.wsea{word-spacing:-3.540000px;}
.wsb0{word-spacing:-3.469200px;}
.wsed{word-spacing:-3.420000px;}
.ws51{word-spacing:-3.351600px;}
.wsa9{word-spacing:-3.292800px;}
.wsbf{word-spacing:-3.234000px;}
.ws40{word-spacing:-3.116400px;}
.ws10{word-spacing:-2.940000px;}
.ws3f{word-spacing:-2.881200px;}
.wsa1{word-spacing:-2.822400px;}
.ws58{word-spacing:-2.704800px;}
.ws4a{word-spacing:-2.646000px;}
.wsec{word-spacing:-2.640000px;}
.ws78{word-spacing:-2.528400px;}
.wsee{word-spacing:-2.520000px;}
.wseb{word-spacing:-2.460000px;}
.wsaa{word-spacing:-2.410800px;}
.wsef{word-spacing:-2.340000px;}
.ws82{word-spacing:-2.293200px;}
.ws31{word-spacing:-2.234400px;}
.ws5c{word-spacing:-2.175600px;}
.ws1d{word-spacing:-2.116800px;}
.ws50{word-spacing:-1.999200px;}
.wsdc{word-spacing:-1.940400px;}
.ws62{word-spacing:-1.822800px;}
.ws63{word-spacing:-1.705200px;}
.ws41{word-spacing:-1.587600px;}
.ws10c{word-spacing:-1.560000px;}
.ws7a{word-spacing:-1.528800px;}
.ws109{word-spacing:-1.500000px;}
.ws5e{word-spacing:-1.470000px;}
.ws77{word-spacing:-1.411200px;}
.ws1e{word-spacing:-1.352400px;}
.ws39{word-spacing:-1.176000px;}
.ws76{word-spacing:-1.117200px;}
.ws8f{word-spacing:-1.058400px;}
.wsab{word-spacing:-0.999600px;}
.ws71{word-spacing:-0.940800px;}
.ws66{word-spacing:-0.823200px;}
.ws20{word-spacing:-0.764400px;}
.ws7{word-spacing:-0.756000px;}
.ws1f{word-spacing:-0.705600px;}
.ws79{word-spacing:-0.646800px;}
.ws5b{word-spacing:-0.588000px;}
.ws10f{word-spacing:-0.540000px;}
.wsb7{word-spacing:-0.529200px;}
.ws30{word-spacing:-0.470400px;}
.ws27{word-spacing:-0.411600px;}
.ws4e{word-spacing:-0.352800px;}
.wsf{word-spacing:-0.294000px;}
.wsd0{word-spacing:-0.235200px;}
.wsa2{word-spacing:-0.176400px;}
.ws25{word-spacing:-0.058800px;}
.ws6{word-spacing:0.000000px;}
.ws43{word-spacing:0.117600px;}
.ws19{word-spacing:0.176400px;}
.ws3e{word-spacing:0.235200px;}
.ws5f{word-spacing:0.294000px;}
.ws32{word-spacing:0.352800px;}
.wsf8{word-spacing:0.360000px;}
.ws18{word-spacing:0.470400px;}
.ws11a{word-spacing:0.480000px;}
.ws86{word-spacing:0.529200px;}
.ws119{word-spacing:0.540000px;}
.ws34{word-spacing:0.588000px;}
.ws1b{word-spacing:0.646800px;}
.ws8{word-spacing:0.705600px;}
.ws10b{word-spacing:0.720000px;}
.ws9{word-spacing:0.764400px;}
.ws10a{word-spacing:0.780000px;}
.ws99{word-spacing:0.823200px;}
.ws7d{word-spacing:0.882000px;}
.ws35{word-spacing:0.940800px;}
.wsb{word-spacing:0.999600px;}
.ws7c{word-spacing:1.058400px;}
.ws7f{word-spacing:1.234800px;}
.wsd8{word-spacing:1.293600px;}
.ws2a{word-spacing:1.352400px;}
.ws83{word-spacing:1.411200px;}
.wsa5{word-spacing:1.470000px;}
.ws93{word-spacing:1.528800px;}
.wsa4{word-spacing:1.587600px;}
.wsa{word-spacing:1.646400px;}
.wsaf{word-spacing:1.705200px;}
.ws53{word-spacing:1.764000px;}
.ws13{word-spacing:1.822800px;}
.wsbe{word-spacing:1.881600px;}
.wsa8{word-spacing:1.940400px;}
.ws108{word-spacing:1.980000px;}
.wse0{word-spacing:1.999200px;}
.wsa6{word-spacing:2.058000px;}
.ws107{word-spacing:2.100000px;}
.wsc0{word-spacing:2.116800px;}
.ws4f{word-spacing:2.175600px;}
.ws97{word-spacing:2.234400px;}
.ws17{word-spacing:2.293200px;}
.ws106{word-spacing:2.340000px;}
.ws8b{word-spacing:2.352000px;}
.ws44{word-spacing:2.410800px;}
.ws74{word-spacing:2.469600px;}
.ws105{word-spacing:2.520000px;}
.ws46{word-spacing:2.587200px;}
.ws11b{word-spacing:2.700000px;}
.ws49{word-spacing:2.704800px;}
.ws10e{word-spacing:2.760000px;}
.ws61{word-spacing:2.763600px;}
.ws55{word-spacing:2.822400px;}
.ws73{word-spacing:2.881200px;}
.wsda{word-spacing:2.940000px;}
.ws15{word-spacing:2.998800px;}
.ws10d{word-spacing:3.000000px;}
.ws54{word-spacing:3.057600px;}
.wse8{word-spacing:3.060000px;}
.ws72{word-spacing:3.116400px;}
.wsdf{word-spacing:3.175200px;}
.ws65{word-spacing:3.234000px;}
.ws9a{word-spacing:3.292800px;}
.ws3a{word-spacing:3.351600px;}
.ws64{word-spacing:3.410400px;}
.ws56{word-spacing:3.469200px;}
.ws8d{word-spacing:3.528000px;}
.ws12{word-spacing:3.586800px;}
.ws28{word-spacing:3.645600px;}
.ws24{word-spacing:3.704400px;}
.ws33{word-spacing:3.763200px;}
.wsc1{word-spacing:3.822000px;}
.ws91{word-spacing:3.880800px;}
.ws23{word-spacing:3.939600px;}
.wsd7{word-spacing:4.057200px;}
.wsc2{word-spacing:4.116000px;}
.ws22{word-spacing:4.292400px;}
.ws90{word-spacing:4.351200px;}
.wsb3{word-spacing:4.410000px;}
.wsb5{word-spacing:4.468800px;}
.wsa7{word-spacing:4.527600px;}
.ws26{word-spacing:4.586400px;}
.wse9{word-spacing:4.620000px;}
.ws21{word-spacing:4.645200px;}
.ws48{word-spacing:4.704000px;}
.ws9b{word-spacing:4.821600px;}
.ws60{word-spacing:4.880400px;}
.ws14{word-spacing:4.939200px;}
.wse{word-spacing:4.998000px;}
.wsbd{word-spacing:5.056800px;}
.ws5d{word-spacing:5.115600px;}
.wsbc{word-spacing:5.174400px;}
.ws92{word-spacing:5.233200px;}
.wsfd{word-spacing:5.280000px;}
.wsc{word-spacing:5.292000px;}
.ws16{word-spacing:5.350800px;}
.ws8a{word-spacing:5.468400px;}
.ws6c{word-spacing:5.527200px;}
.ws4c{word-spacing:5.586000px;}
.ws3c{word-spacing:5.644800px;}
.wsfc{word-spacing:5.700000px;}
.ws68{word-spacing:5.703600px;}
.ws8c{word-spacing:5.821200px;}
.ws113{word-spacing:5.880000px;}
.wsc7{word-spacing:5.938800px;}
.ws4d{word-spacing:6.056400px;}
.wsdd{word-spacing:6.174000px;}
.ws67{word-spacing:6.232800px;}
.ws112{word-spacing:6.300000px;}
.wsf6{word-spacing:6.360000px;}
.wsb8{word-spacing:6.409200px;}
.wsff{word-spacing:6.540000px;}
.wsb9{word-spacing:6.585600px;}
.wsbb{word-spacing:6.644400px;}
.ws9f{word-spacing:6.703200px;}
.ws1a{word-spacing:6.762000px;}
.ws3b{word-spacing:6.820800px;}
.wsf5{word-spacing:6.840000px;}
.wsd1{word-spacing:6.879600px;}
.wsc6{word-spacing:6.938400px;}
.wsc4{word-spacing:6.997200px;}
.wscc{word-spacing:7.056000px;}
.wsfe{word-spacing:7.080000px;}
.ws84{word-spacing:7.173600px;}
.ws116{word-spacing:7.200000px;}
.ws6d{word-spacing:7.232400px;}
.ws3d{word-spacing:7.291200px;}
.ws70{word-spacing:7.350000px;}
.wsae{word-spacing:7.408800px;}
.wse5{word-spacing:7.500000px;}
.ws47{word-spacing:7.585200px;}
.wsdb{word-spacing:7.644000px;}
.ws7b{word-spacing:7.702800px;}
.ws115{word-spacing:7.740000px;}
.wsc5{word-spacing:7.761600px;}
.wsba{word-spacing:7.879200px;}
.wse4{word-spacing:8.100000px;}
.ws87{word-spacing:8.114400px;}
.ws2f{word-spacing:8.349600px;}
.ws52{word-spacing:8.408400px;}
.wse1{word-spacing:8.702400px;}
.wse2{word-spacing:8.878800px;}
.wsc3{word-spacing:8.937600px;}
.ws6b{word-spacing:9.172800px;}
.wsfb{word-spacing:9.240000px;}
.wsb4{word-spacing:9.408000px;}
.wsd{word-spacing:9.466800px;}
.wsd3{word-spacing:9.643200px;}
.wse3{word-spacing:9.878400px;}
.ws6e{word-spacing:10.054800px;}
.ws5a{word-spacing:10.113600px;}
.wsf9{word-spacing:10.320000px;}
.wsb1{word-spacing:10.348800px;}
.wsa3{word-spacing:10.407600px;}
.ws117{word-spacing:10.800000px;}
.ws11{word-spacing:10.936800px;}
.wsfa{word-spacing:11.100000px;}
.ws37{word-spacing:11.289600px;}
.ws89{word-spacing:11.407200px;}
.ws9d{word-spacing:11.524800px;}
.wsb6{word-spacing:11.583600px;}
.ws118{word-spacing:11.640000px;}
.wscb{word-spacing:11.701200px;}
.ws11d{word-spacing:11.940000px;}
.ws75{word-spacing:12.054000px;}
.ws111{word-spacing:12.060000px;}
.ws6f{word-spacing:12.171600px;}
.wsce{word-spacing:12.230400px;}
.ws6a{word-spacing:12.348000px;}
.wsca{word-spacing:12.642000px;}
.wsde{word-spacing:12.700800px;}
.ws57{word-spacing:12.759600px;}
.wscd{word-spacing:12.818400px;}
.ws11c{word-spacing:12.840000px;}
.ws110{word-spacing:13.020000px;}
.ws42{word-spacing:13.112400px;}
.ws69{word-spacing:13.347600px;}
.ws81{word-spacing:13.524000px;}
.wsc9{word-spacing:13.641600px;}
.wsad{word-spacing:14.112000px;}
.ws102{word-spacing:14.580000px;}
.ws80{word-spacing:14.582400px;}
.ws88{word-spacing:14.758800px;}
.wsd9{word-spacing:14.817600px;}
.ws101{word-spacing:14.880000px;}
.wsb2{word-spacing:15.464400px;}
.ws7e{word-spacing:15.582000px;}
.ws103{word-spacing:15.660000px;}
.ws100{word-spacing:16.020000px;}
.wsd2{word-spacing:16.464000px;}
.ws4b{word-spacing:16.758000px;}
.wse6{word-spacing:17.700000px;}
.ws38{word-spacing:17.934000px;}
.wscf{word-spacing:18.051600px;}
.ws98{word-spacing:18.404400px;}
.wse7{word-spacing:19.080000px;}
.wsf1{word-spacing:19.800000px;}
.ws36{word-spacing:19.874400px;}
.wsf0{word-spacing:21.360000px;}
.ws8e{word-spacing:23.872800px;}
.wsf7{word-spacing:26.760000px;}
.ws114{word-spacing:54.420000px;}
.ws2e{word-spacing:1171.323600px;}
.ws2d{word-spacing:1207.656000px;}
._13{margin-left:-2891.339400px;}
._a{margin-left:-43.335600px;}
._19{margin-left:-14.498400px;}
._18{margin-left:-8.232000px;}
._6{margin-left:-6.565200px;}
._8{margin-left:-5.475600px;}
._2{margin-left:-3.827400px;}
._1{margin-left:-2.098800px;}
._0{margin-left:-1.054200px;}
._3{width:1.078800px;}
._7{width:3.080400px;}
._16{width:4.192200px;}
._17{width:5.807400px;}
._14{width:11.065200px;}
._15{width:15.855600px;}
._9{width:27.112800px;}
._4{width:76.192800px;}
._b{width:731.111400px;}
._11{width:899.785200px;}
._d{width:980.760600px;}
._10{width:1007.470200px;}
._e{width:1053.972000px;}
._c{width:1074.215400px;}
._f{width:1082.685600px;}
._12{width:1103.639400px;}
._5{width:1249.374000px;}
.fc5{color:rgb(216,51,100);}
.fc3{color:rgb(207,0,61);}
.fc2{color:rgb(85,84,84);}
.fc1{color:rgb(0,0,0);}
.fc4{color:rgb(87,87,86);}
.fc0{color:rgb(60,60,59);}
.fs4{font-size:34.280400px;}
.fs0{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:48.972000px;}
.fs1{font-size:58.800000px;}
.fs8{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:84.000000px;}
.fs3{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:49.274700px;}
.y1{bottom:49.274850px;}
.y6d{bottom:74.409450px;}
.y34{bottom:74.409600px;}
.y33{bottom:90.909600px;}
.ye4{bottom:90.952650px;}
.yab{bottom:90.996000px;}
.y1c6{bottom:91.017150px;}
.y1ff{bottom:91.026000px;}
.y18d{bottom:91.099200px;}
.y154{bottom:91.113300px;}
.y11f{bottom:91.155300px;}
.y6c{bottom:91.320750px;}
.y32{bottom:107.409600px;}
.yaa{bottom:107.582400px;}
.y1c5{bottom:107.624850px;}
.y1fe{bottom:107.642400px;}
.y18c{bottom:107.788950px;}
.y153{bottom:107.817150px;}
.y11e{bottom:107.901150px;}
.y6b{bottom:108.232050px;}
.y31{bottom:123.909600px;}
.ye3{bottom:123.995700px;}
.ya9{bottom:124.168800px;}
.y1c4{bottom:124.232550px;}
.y1fd{bottom:124.258800px;}
.y18b{bottom:124.478700px;}
.y11d{bottom:124.647000px;}
.y6a{bottom:125.143200px;}
.y30{bottom:140.409600px;}
.ye2{bottom:140.538900px;}
.ya8{bottom:140.755350px;}
.y1c3{bottom:140.840100px;}
.y1fc{bottom:140.875200px;}
.y152{bottom:141.020850px;}
.y18a{bottom:141.168450px;}
.y11c{bottom:141.392700px;}
.y69{bottom:142.054500px;}
.y2f{bottom:156.909600px;}
.ye1{bottom:157.081950px;}
.ya7{bottom:157.341750px;}
.y1c2{bottom:157.447800px;}
.y1fb{bottom:157.491600px;}
.y151{bottom:157.724700px;}
.y189{bottom:157.858200px;}
.y11b{bottom:158.138550px;}
.y68{bottom:158.965650px;}
.ye0{bottom:173.625150px;}
.ya6{bottom:173.928150px;}
.y1c1{bottom:174.055500px;}
.y1fa{bottom:174.108000px;}
.y2e{bottom:174.329250px;}
.y150{bottom:174.428400px;}
.y188{bottom:174.547800px;}
.y11a{bottom:174.884400px;}
.y67{bottom:175.876950px;}
.ydf{bottom:190.168200px;}
.ya5{bottom:190.514550px;}
.y1c0{bottom:190.663200px;}
.y1f9{bottom:190.724550px;}
.y2d{bottom:190.829250px;}
.y14f{bottom:191.132250px;}
.y187{bottom:191.237700px;}
.y119{bottom:191.630100px;}
.y66{bottom:192.788250px;}
.yde{bottom:206.711400px;}
.ya4{bottom:207.100950px;}
.y1bf{bottom:207.270750px;}
.y2c{bottom:207.329250px;}
.y1f8{bottom:207.340800px;}
.y14e{bottom:207.835950px;}
.y186{bottom:207.927300px;}
.y118{bottom:208.375950px;}
.y65{bottom:209.699400px;}
.ydd{bottom:223.254450px;}
.ya3{bottom:223.687500px;}
.y2b{bottom:223.829250px;}
.y1be{bottom:223.878450px;}
.y1f7{bottom:223.957350px;}
.y14d{bottom:224.539800px;}
.y185{bottom:224.617200px;}
.y117{bottom:225.121800px;}
.y64{bottom:226.610700px;}
.ydc{bottom:239.797650px;}
.ya2{bottom:240.273900px;}
.y1bd{bottom:240.486150px;}
.y1f6{bottom:240.573600px;}
.y14c{bottom:241.243500px;}
.y184{bottom:241.306800px;}
.y116{bottom:241.867650px;}
.y63{bottom:243.521850px;}
.y2a{bottom:245.500800px;}
.ya1{bottom:256.860300px;}
.y1bc{bottom:257.093850px;}
.y1f5{bottom:257.190150px;}
.y14b{bottom:257.947350px;}
.y183{bottom:257.996550px;}
.y115{bottom:258.613350px;}
.y62{bottom:260.433150px;}
.ydb{bottom:272.840700px;}
.ya0{bottom:273.446850px;}
.y1bb{bottom:273.701550px;}
.y1f4{bottom:273.806550px;}
.y14a{bottom:274.651200px;}
.y182{bottom:274.686300px;}
.y114{bottom:275.359200px;}
.yda{bottom:289.383750px;}
.y9f{bottom:290.033250px;}
.y61{bottom:290.100150px;}
.y1ba{bottom:290.309100px;}
.y1f3{bottom:290.422950px;}
.y149{bottom:291.354900px;}
.y181{bottom:291.376050px;}
.y235{bottom:291.685500px;}
.y113{bottom:292.105050px;}
.y29{bottom:295.920300px;}
.yd9{bottom:305.926800px;}
.y9e{bottom:306.619650px;}
.y1b9{bottom:306.916800px;}
.y1f2{bottom:307.039350px;}
.y148{bottom:308.058750px;}
.y180{bottom:308.065650px;}
.y234{bottom:308.185500px;}
.y112{bottom:308.850750px;}
.y28{bottom:312.420300px;}
.y60{bottom:315.206850px;}
.yd8{bottom:322.470000px;}
.y9d{bottom:323.206050px;}
.y1b8{bottom:323.524500px;}
.y1f1{bottom:323.655900px;}
.y233{bottom:324.685500px;}
.y17f{bottom:324.755550px;}
.y147{bottom:324.762450px;}
.y111{bottom:325.596600px;}
.yd7{bottom:339.013050px;}
.y5f{bottom:339.376650px;}
.y9c{bottom:339.792450px;}
.y1b7{bottom:340.132200px;}
.y232{bottom:341.185500px;}
.y17e{bottom:341.445150px;}
.y110{bottom:342.342450px;}
.y1f0{bottom:344.524200px;}
.y146{bottom:345.718200px;}
.yd6{bottom:355.556250px;}
.y9b{bottom:356.379000px;}
.y1b6{bottom:356.739750px;}
.y231{bottom:357.685500px;}
.y10f{bottom:359.088300px;}
.y17d{bottom:362.386800px;}
.y27{bottom:362.839950px;}
.y5e{bottom:363.546300px;}
.yd5{bottom:372.099300px;}
.y9a{bottom:372.965400px;}
.y1b5{bottom:373.347450px;}
.y230{bottom:374.185500px;}
.y10e{bottom:375.834000px;}
.y26{bottom:380.259600px;}
.y5d{bottom:387.716100px;}
.yd4{bottom:388.642500px;}
.y1b4{bottom:389.955150px;}
.y22f{bottom:390.685500px;}
.y10d{bottom:392.579850px;}
.y99{bottom:393.803850px;}
.y1ef{bottom:394.140600px;}
.y145{bottom:395.422050px;}
.y25{bottom:396.759600px;}
.yd3{bottom:405.185550px;}
.y1b3{bottom:406.562850px;}
.y22e{bottom:407.185500px;}
.y10c{bottom:409.325700px;}
.y1ee{bottom:410.757000px;}
.y5c{bottom:411.885750px;}
.y17c{bottom:412.076550px;}
.y144{bottom:412.125750px;}
.y24{bottom:414.179100px;}
.yd2{bottom:421.728750px;}
.y1b2{bottom:423.170400px;}
.y22d{bottom:423.685500px;}
.y10b{bottom:426.071400px;}
.y1ed{bottom:427.373400px;}
.y17b{bottom:428.766300px;}
.y143{bottom:428.829600px;}
.y23{bottom:430.679100px;}
.y5b{bottom:436.055550px;}
.yd1{bottom:438.271800px;}
.y22c{bottom:440.185500px;}
.y98{bottom:443.390250px;}
.y1ec{bottom:443.989950px;}
.y1b1{bottom:444.030150px;}
.y17a{bottom:445.456050px;}
.y142{bottom:445.533300px;}
.y22{bottom:447.179100px;}
.y10a{bottom:451.321200px;}
.yd0{bottom:454.814850px;}
.y22b{bottom:456.685500px;}
.y97{bottom:459.976650px;}
.y5a{bottom:460.225200px;}
.y1eb{bottom:460.606350px;}
.y1b0{bottom:460.637700px;}
.y179{bottom:462.145800px;}
.y141{bottom:462.237150px;}
.y21{bottom:463.679100px;}
.y109{bottom:468.067050px;}
.y22a{bottom:473.185500px;}
.ycf{bottom:475.609950px;}
.y96{bottom:476.563050px;}
.y1ea{bottom:477.222750px;}
.y178{bottom:478.835550px;}
.y140{bottom:478.940850px;}
.y20{bottom:480.179100px;}
.y59{bottom:484.395000px;}
.y108{bottom:484.812750px;}
.y229{bottom:489.685500px;}
.y95{bottom:493.149600px;}
.y177{bottom:495.525300px;}
.y13f{bottom:495.644700px;}
.y1f{bottom:497.598750px;}
.y228{bottom:506.185500px;}
.y58{bottom:508.564800px;}
.y94{bottom:509.736000px;}
.y107{bottom:510.062550px;}
.y1af{bottom:510.245400px;}
.y1e9{bottom:510.339150px;}
.y176{bottom:512.215050px;}
.y13e{bottom:512.348550px;}
.yce{bottom:512.904900px;}
.y1e{bottom:514.098750px;}
.y227{bottom:522.685500px;}
.y93{bottom:526.322400px;}
.y106{bottom:526.808400px;}
.y1ae{bottom:526.853100px;}
.y1e8{bottom:526.955550px;}
.y13d{bottom:529.052250px;}
.y1d{bottom:530.598750px;}
.y57{bottom:532.734450px;}
.y175{bottom:533.156700px;}
.y226{bottom:539.185500px;}
.y92{bottom:542.908800px;}
.y1ad{bottom:543.460800px;}
.y105{bottom:543.554100px;}
.y1e7{bottom:543.571950px;}
.y13c{bottom:545.756100px;}
.y1c{bottom:547.098750px;}
.y225{bottom:555.685500px;}
.y56{bottom:556.904250px;}
.y91{bottom:559.495350px;}
.y1ac{bottom:560.068350px;}
.y1e6{bottom:560.188350px;}
.y104{bottom:560.299950px;}
.ycd{bottom:562.447950px;}
.y13b{bottom:562.459800px;}
.y1b{bottom:563.598750px;}
.y224{bottom:572.185500px;}
.y90{bottom:576.081750px;}
.y1ab{bottom:576.676050px;}
.y1e5{bottom:576.804750px;}
.y103{bottom:577.045800px;}
.ycc{bottom:578.991000px;}
.y1a{bottom:580.098750px;}
.y174{bottom:582.846450px;}
.y55{bottom:587.418750px;}
.y223{bottom:588.685500px;}
.y8f{bottom:592.668150px;}
.y1aa{bottom:593.283750px;}
.y1e4{bottom:593.421300px;}
.y102{bottom:593.791650px;}
.ycb{bottom:595.534200px;}
.y13a{bottom:595.663650px;}
.y173{bottom:599.536200px;}
.y222{bottom:605.185500px;}
.y8e{bottom:609.254550px;}
.y1a9{bottom:609.891300px;}
.y1e3{bottom:610.037700px;}
.y101{bottom:610.537350px;}
.yca{bottom:612.077250px;}
.y172{bottom:616.225950px;}
.y19{bottom:621.011400px;}
.y221{bottom:621.685500px;}
.y8d{bottom:625.841100px;}
.y54{bottom:626.080650px;}
.y1a8{bottom:626.499000px;}
.y1e2{bottom:626.654100px;}
.y100{bottom:627.283200px;}
.yc9{bottom:628.620450px;}
.y139{bottom:628.867350px;}
.y171{bottom:632.915550px;}
.y220{bottom:638.185500px;}
.y8c{bottom:642.427500px;}
.y53{bottom:642.991950px;}
.y1a7{bottom:643.106700px;}
.y1e1{bottom:643.270500px;}
.yc8{bottom:645.163500px;}
.y138{bottom:645.571200px;}
.yff{bottom:648.280950px;}
.y21f{bottom:654.685500px;}
.y8b{bottom:659.013900px;}
.y1e0{bottom:659.886900px;}
.y52{bottom:659.903100px;}
.yc7{bottom:661.706700px;}
.y137{bottom:662.275050px;}
.y18{bottom:663.686850px;}
.y1a6{bottom:663.966300px;}
.y170{bottom:666.105300px;}
.y21e{bottom:671.185500px;}
.y8a{bottom:675.600300px;}
.y1df{bottom:676.503300px;}
.yc6{bottom:678.249750px;}
.y136{bottom:678.978750px;}
.y1a5{bottom:680.574000px;}
.y17{bottom:681.106350px;}
.y16f{bottom:682.795050px;}
.y21d{bottom:687.685500px;}
.y89{bottom:692.186850px;}
.y1de{bottom:693.119700px;}
.y51{bottom:693.314400px;}
.yc5{bottom:694.792950px;}
.y135{bottom:695.682600px;}
.y16{bottom:697.606350px;}
.yfe{bottom:698.026800px;}
.y16e{bottom:699.484800px;}
.y21c{bottom:704.185500px;}
.y88{bottom:708.773250px;}
.y1dd{bottom:709.736100px;}
.y50{bottom:710.225550px;}
.yc4{bottom:711.336000px;}
.y134{bottom:712.386300px;}
.yfd{bottom:714.772500px;}
.y15{bottom:715.026000px;}
.y16d{bottom:716.174550px;}
.y21b{bottom:720.685500px;}
.y87{bottom:725.359650px;}
.y1dc{bottom:726.352500px;}
.y4f{bottom:727.136850px;}
.yc3{bottom:727.879050px;}
.y133{bottom:729.090150px;}
.y1a4{bottom:730.181700px;}
.yfc{bottom:731.518350px;}
.y14{bottom:731.526000px;}
.y16c{bottom:732.864300px;}
.y21a{bottom:737.185500px;}
.y86{bottom:741.946050px;}
.y1db{bottom:742.969050px;}
.y4e{bottom:744.048000px;}
.yc2{bottom:744.422250px;}
.y1a3{bottom:746.789400px;}
.y13{bottom:748.026000px;}
.yfb{bottom:748.264200px;}
.y16b{bottom:749.553900px;}
.y219{bottom:753.685500px;}
.y85{bottom:758.532600px;}
.y1da{bottom:759.585450px;}
.y4d{bottom:760.959300px;}
.yc1{bottom:760.965300px;}
.y132{bottom:762.293850px;}
.y1a2{bottom:763.396950px;}
.y12{bottom:764.526000px;}
.yfa{bottom:765.010050px;}
.y16a{bottom:766.243650px;}
.y218{bottom:770.185500px;}
.y84{bottom:775.119000px;}
.yc0{bottom:777.508500px;}
.y1a1{bottom:780.004650px;}
.y1d9{bottom:780.453900px;}
.y11{bottom:781.026000px;}
.yf9{bottom:781.755750px;}
.y217{bottom:786.685500px;}
.y83{bottom:791.705400px;}
.y4c{bottom:794.370600px;}
.y131{bottom:795.497700px;}
.y1a0{bottom:796.612350px;}
.y10{bottom:798.445500px;}
.yf8{bottom:798.501600px;}
.y169{bottom:799.433400px;}
.y216{bottom:803.185500px;}
.y82{bottom:808.291950px;}
.ybf{bottom:810.551550px;}
.y4b{bottom:811.281750px;}
.y130{bottom:812.201550px;}
.y19f{bottom:813.220050px;}
.yf{bottom:814.945500px;}
.yf7{bottom:815.247450px;}
.y168{bottom:816.123150px;}
.y215{bottom:819.685500px;}
.y81{bottom:824.878350px;}
.ybe{bottom:827.094600px;}
.y4a{bottom:828.193050px;}
.y12f{bottom:828.905250px;}
.y19e{bottom:829.827600px;}
.y1d8{bottom:830.070150px;}
.ye{bottom:831.445500px;}
.yf6{bottom:831.993300px;}
.y167{bottom:832.812900px;}
.y214{bottom:836.185500px;}
.y80{bottom:841.464750px;}
.ybd{bottom:843.637800px;}
.y49{bottom:845.104200px;}
.y12e{bottom:845.609100px;}
.y1d7{bottom:846.686700px;}
.yd{bottom:847.945500px;}
.y166{bottom:849.502650px;}
.y213{bottom:852.685500px;}
.y19d{bottom:854.939250px;}
.y7f{bottom:858.051150px;}
.ybc{bottom:860.180850px;}
.y48{bottom:862.015500px;}
.y12d{bottom:862.312800px;}
.y1d6{bottom:863.303100px;}
.yc{bottom:864.445500px;}
.yf5{bottom:865.239000px;}
.y165{bottom:866.192250px;}
.y212{bottom:869.185500px;}
.y19c{bottom:871.546800px;}
.y7e{bottom:874.637550px;}
.y47{bottom:878.926800px;}
.y12c{bottom:879.016500px;}
.y1d5{bottom:879.919500px;}
.yb{bottom:880.945500px;}
.yf4{bottom:881.984850px;}
.y164{bottom:882.882150px;}
.y211{bottom:885.685500px;}
.y19b{bottom:888.154500px;}
.y7d{bottom:891.224100px;}
.ybb{bottom:893.224050px;}
.y12b{bottom:895.720350px;}
.y46{bottom:895.837950px;}
.y1d4{bottom:896.535900px;}
.yf3{bottom:898.730550px;}
.y163{bottom:899.571750px;}
.y210{bottom:902.185500px;}
.ya{bottom:902.340600px;}
.y19a{bottom:904.762200px;}
.y7c{bottom:907.810500px;}
.yba{bottom:909.767100px;}
.y12a{bottom:912.424200px;}
.y45{bottom:912.749250px;}
.y1d3{bottom:913.152300px;}
.yf2{bottom:915.476400px;}
.y162{bottom:916.261500px;}
.y20f{bottom:918.685500px;}
.y199{bottom:921.369900px;}
.y7b{bottom:924.396900px;}
.yb9{bottom:926.310300px;}
.y129{bottom:929.127900px;}
.y44{bottom:929.660400px;}
.y1d2{bottom:929.768700px;}
.y9{bottom:931.873050px;}
.yf1{bottom:932.222250px;}
.y161{bottom:932.951250px;}
.y20e{bottom:935.185500px;}
.y7a{bottom:940.983450px;}
.yb8{bottom:942.853350px;}
.y1d1{bottom:946.385250px;}
.y198{bottom:946.481550px;}
.y43{bottom:946.571700px;}
.yf0{bottom:948.968100px;}
.y160{bottom:949.641000px;}
.y20d{bottom:951.685500px;}
.y79{bottom:957.569850px;}
.yb7{bottom:959.396550px;}
.y128{bottom:962.331750px;}
.y1d0{bottom:963.001500px;}
.y197{bottom:963.089100px;}
.y42{bottom:963.483000px;}
.yef{bottom:965.713950px;}
.y15f{bottom:966.330750px;}
.y20c{bottom:968.185500px;}
.y8{bottom:970.552350px;}
.y78{bottom:974.156250px;}
.yb6{bottom:975.939450px;}
.y1cf{bottom:979.618050px;}
.y196{bottom:979.696800px;}
.y41{bottom:980.394150px;}
.yee{bottom:982.459650px;}
.y15e{bottom:983.020500px;}
.y20b{bottom:984.685500px;}
.y7{bottom:984.802350px;}
.y77{bottom:990.742650px;}
.yb5{bottom:992.482650px;}
.y127{bottom:995.535450px;}
.y1ce{bottom:996.234300px;}
.y195{bottom:996.304500px;}
.y40{bottom:997.305300px;}
.yed{bottom:999.205500px;}
.y20a{bottom:1001.185500px;}
.y76{bottom:1007.329050px;}
.yb4{bottom:1009.025700px;}
.y126{bottom:1012.239300px;}
.y194{bottom:1012.912200px;}
.y3f{bottom:1014.216600px;}
.yec{bottom:1015.951200px;}
.y15d{bottom:1016.210100px;}
.y1cd{bottom:1017.102750px;}
.y209{bottom:1017.685500px;}
.y75{bottom:1023.915600px;}
.yb3{bottom:1025.568900px;}
.y125{bottom:1028.943000px;}
.y193{bottom:1029.519900px;}
.y3e{bottom:1031.127900px;}
.yeb{bottom:1032.697050px;}
.y15c{bottom:1032.899850px;}
.y208{bottom:1034.185500px;}
.y6{bottom:1036.877550px;}
.y74{bottom:1040.502000px;}
.yb2{bottom:1042.111950px;}
.y3d{bottom:1048.039050px;}
.yea{bottom:1049.442900px;}
.y15b{bottom:1049.589600px;}
.y124{bottom:1049.898900px;}
.y192{bottom:1050.379350px;}
.y207{bottom:1050.685500px;}
.y73{bottom:1057.088400px;}
.yb1{bottom:1058.655150px;}
.y3c{bottom:1064.950350px;}
.ye9{bottom:1066.188750px;}
.y15a{bottom:1066.279350px;}
.y1cc{bottom:1066.719150px;}
.y206{bottom:1067.185500px;}
.y72{bottom:1073.674950px;}
.y3b{bottom:1081.861500px;}
.ye8{bottom:1082.934600px;}
.y159{bottom:1082.969100px;}
.y1cb{bottom:1083.335700px;}
.y205{bottom:1083.685500px;}
.yb0{bottom:1083.702150px;}
.y71{bottom:1090.261350px;}
.y3a{bottom:1098.772800px;}
.y4{bottom:1099.275600px;}
.y123{bottom:1099.602600px;}
.y158{bottom:1099.658850px;}
.ye7{bottom:1099.680300px;}
.y1ca{bottom:1099.952100px;}
.y191{bottom:1099.987050px;}
.y204{bottom:1100.185500px;}
.yaf{bottom:1100.245350px;}
.y70{bottom:1106.847750px;}
.y3{bottom:1114.275600px;}
.y5{bottom:1115.204400px;}
.y39{bottom:1115.684100px;}
.y122{bottom:1116.306450px;}
.y157{bottom:1116.348600px;}
.y1c9{bottom:1116.568500px;}
.y190{bottom:1116.594750px;}
.y203{bottom:1116.685500px;}
.yae{bottom:1116.788400px;}
.y6f{bottom:1127.686200px;}
.y38{bottom:1132.595250px;}
.ye6{bottom:1132.926150px;}
.y121{bottom:1133.010150px;}
.y156{bottom:1133.038350px;}
.y1c8{bottom:1133.184900px;}
.y202{bottom:1133.185500px;}
.y18f{bottom:1133.202450px;}
.yad{bottom:1133.331450px;}
.y37{bottom:1149.506400px;}
.ye5{bottom:1149.671850px;}
.y201{bottom:1149.685500px;}
.y120{bottom:1149.714000px;}
.y155{bottom:1149.728100px;}
.y1c7{bottom:1149.801300px;}
.y18e{bottom:1149.810000px;}
.yac{bottom:1149.874650px;}
.y6e{bottom:1165.024500px;}
.y200{bottom:1166.185500px;}
.y36{bottom:1166.417700px;}
.y35{bottom:1205.693550px;}
.h7{height:32.575200px;}
.h2{height:37.254000px;}
.h6{height:42.528000px;}
.h4{height:42.576000px;}
.ha{height:43.335600px;}
.h8{height:46.452000px;}
.h9{height:48.642000px;}
.h3{height:52.155600px;}
.hb{height:53.220000px;}
.h5{height:90.372000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:85.039350px;}
.x3{left:92.735400px;}
.x6{left:97.795350px;}
.x8{left:106.339350px;}
.x16{left:127.559100px;}
.x5{left:145.368450px;}
.xb{left:178.290750px;}
.x10{left:205.356750px;}
.x11{left:206.814750px;}
.xc{left:212.922600px;}
.x7{left:216.758400px;}
.x12{left:219.522600px;}
.x13{left:221.952450px;}
.xd{left:223.272150px;}
.xf{left:228.072450px;}
.xe{left:245.448150px;}
.x14{left:250.907400px;}
.xa{left:364.300050px;}
.x9{left:526.582950px;}
.x4{left:722.277600px;}
.x15{left:791.651700px;}
.x1{left:793.741350px;}
@media print{
.v2{vertical-align:-24.864000pt;}
.v1{vertical-align:-17.404800pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.784000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.522667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.266667pt;}
.ls2{letter-spacing:0.522667pt;}
.ls4{letter-spacing:0.672000pt;}
.ls0{letter-spacing:5.120000pt;}
.ls1{letter-spacing:9.818667pt;}
.ls6{letter-spacing:49.457067pt;}
.ls5{letter-spacing:49.457600pt;}
.ws1{word-spacing:-15.232000pt;}
.ws2b{word-spacing:-12.909867pt;}
.wsf4{word-spacing:-12.906667pt;}
.wsd4{word-spacing:-12.640000pt;}
.ws4{word-spacing:-12.387200pt;}
.wsf2{word-spacing:-12.106667pt;}
.ws5{word-spacing:-12.021333pt;}
.wsd5{word-spacing:-11.733333pt;}
.wsf3{word-spacing:-11.573333pt;}
.ws2c{word-spacing:-11.498667pt;}
.ws3{word-spacing:-9.837931pt;}
.ws0{word-spacing:-8.848000pt;}
.ws2{word-spacing:-6.551365pt;}
.ws104{word-spacing:-6.080000pt;}
.wsc8{word-spacing:-5.383467pt;}
.ws29{word-spacing:-4.965333pt;}
.wsac{word-spacing:-4.547200pt;}
.ws59{word-spacing:-4.442667pt;}
.ws45{word-spacing:-4.338133pt;}
.ws94{word-spacing:-4.129067pt;}
.ws1c{word-spacing:-4.024533pt;}
.ws95{word-spacing:-3.920000pt;}
.ws9c{word-spacing:-3.867733pt;}
.wsa0{word-spacing:-3.763200pt;}
.ws9e{word-spacing:-3.710933pt;}
.ws85{word-spacing:-3.554133pt;}
.ws96{word-spacing:-3.449600pt;}
.wsd6{word-spacing:-3.292800pt;}
.wsea{word-spacing:-3.146667pt;}
.wsb0{word-spacing:-3.083733pt;}
.wsed{word-spacing:-3.040000pt;}
.ws51{word-spacing:-2.979200pt;}
.wsa9{word-spacing:-2.926933pt;}
.wsbf{word-spacing:-2.874667pt;}
.ws40{word-spacing:-2.770133pt;}
.ws10{word-spacing:-2.613333pt;}
.ws3f{word-spacing:-2.561067pt;}
.wsa1{word-spacing:-2.508800pt;}
.ws58{word-spacing:-2.404267pt;}
.ws4a{word-spacing:-2.352000pt;}
.wsec{word-spacing:-2.346667pt;}
.ws78{word-spacing:-2.247467pt;}
.wsee{word-spacing:-2.240000pt;}
.wseb{word-spacing:-2.186667pt;}
.wsaa{word-spacing:-2.142933pt;}
.wsef{word-spacing:-2.080000pt;}
.ws82{word-spacing:-2.038400pt;}
.ws31{word-spacing:-1.986133pt;}
.ws5c{word-spacing:-1.933867pt;}
.ws1d{word-spacing:-1.881600pt;}
.ws50{word-spacing:-1.777067pt;}
.wsdc{word-spacing:-1.724800pt;}
.ws62{word-spacing:-1.620267pt;}
.ws63{word-spacing:-1.515733pt;}
.ws41{word-spacing:-1.411200pt;}
.ws10c{word-spacing:-1.386667pt;}
.ws7a{word-spacing:-1.358933pt;}
.ws109{word-spacing:-1.333333pt;}
.ws5e{word-spacing:-1.306667pt;}
.ws77{word-spacing:-1.254400pt;}
.ws1e{word-spacing:-1.202133pt;}
.ws39{word-spacing:-1.045333pt;}
.ws76{word-spacing:-0.993067pt;}
.ws8f{word-spacing:-0.940800pt;}
.wsab{word-spacing:-0.888533pt;}
.ws71{word-spacing:-0.836267pt;}
.ws66{word-spacing:-0.731733pt;}
.ws20{word-spacing:-0.679467pt;}
.ws7{word-spacing:-0.672000pt;}
.ws1f{word-spacing:-0.627200pt;}
.ws79{word-spacing:-0.574933pt;}
.ws5b{word-spacing:-0.522667pt;}
.ws10f{word-spacing:-0.480000pt;}
.wsb7{word-spacing:-0.470400pt;}
.ws30{word-spacing:-0.418133pt;}
.ws27{word-spacing:-0.365867pt;}
.ws4e{word-spacing:-0.313600pt;}
.wsf{word-spacing:-0.261333pt;}
.wsd0{word-spacing:-0.209067pt;}
.wsa2{word-spacing:-0.156800pt;}
.ws25{word-spacing:-0.052267pt;}
.ws6{word-spacing:0.000000pt;}
.ws43{word-spacing:0.104533pt;}
.ws19{word-spacing:0.156800pt;}
.ws3e{word-spacing:0.209067pt;}
.ws5f{word-spacing:0.261333pt;}
.ws32{word-spacing:0.313600pt;}
.wsf8{word-spacing:0.320000pt;}
.ws18{word-spacing:0.418133pt;}
.ws11a{word-spacing:0.426667pt;}
.ws86{word-spacing:0.470400pt;}
.ws119{word-spacing:0.480000pt;}
.ws34{word-spacing:0.522667pt;}
.ws1b{word-spacing:0.574933pt;}
.ws8{word-spacing:0.627200pt;}
.ws10b{word-spacing:0.640000pt;}
.ws9{word-spacing:0.679467pt;}
.ws10a{word-spacing:0.693333pt;}
.ws99{word-spacing:0.731733pt;}
.ws7d{word-spacing:0.784000pt;}
.ws35{word-spacing:0.836267pt;}
.wsb{word-spacing:0.888533pt;}
.ws7c{word-spacing:0.940800pt;}
.ws7f{word-spacing:1.097600pt;}
.wsd8{word-spacing:1.149867pt;}
.ws2a{word-spacing:1.202133pt;}
.ws83{word-spacing:1.254400pt;}
.wsa5{word-spacing:1.306667pt;}
.ws93{word-spacing:1.358933pt;}
.wsa4{word-spacing:1.411200pt;}
.wsa{word-spacing:1.463467pt;}
.wsaf{word-spacing:1.515733pt;}
.ws53{word-spacing:1.568000pt;}
.ws13{word-spacing:1.620267pt;}
.wsbe{word-spacing:1.672533pt;}
.wsa8{word-spacing:1.724800pt;}
.ws108{word-spacing:1.760000pt;}
.wse0{word-spacing:1.777067pt;}
.wsa6{word-spacing:1.829333pt;}
.ws107{word-spacing:1.866667pt;}
.wsc0{word-spacing:1.881600pt;}
.ws4f{word-spacing:1.933867pt;}
.ws97{word-spacing:1.986133pt;}
.ws17{word-spacing:2.038400pt;}
.ws106{word-spacing:2.080000pt;}
.ws8b{word-spacing:2.090667pt;}
.ws44{word-spacing:2.142933pt;}
.ws74{word-spacing:2.195200pt;}
.ws105{word-spacing:2.240000pt;}
.ws46{word-spacing:2.299733pt;}
.ws11b{word-spacing:2.400000pt;}
.ws49{word-spacing:2.404267pt;}
.ws10e{word-spacing:2.453333pt;}
.ws61{word-spacing:2.456533pt;}
.ws55{word-spacing:2.508800pt;}
.ws73{word-spacing:2.561067pt;}
.wsda{word-spacing:2.613333pt;}
.ws15{word-spacing:2.665600pt;}
.ws10d{word-spacing:2.666667pt;}
.ws54{word-spacing:2.717867pt;}
.wse8{word-spacing:2.720000pt;}
.ws72{word-spacing:2.770133pt;}
.wsdf{word-spacing:2.822400pt;}
.ws65{word-spacing:2.874667pt;}
.ws9a{word-spacing:2.926933pt;}
.ws3a{word-spacing:2.979200pt;}
.ws64{word-spacing:3.031467pt;}
.ws56{word-spacing:3.083733pt;}
.ws8d{word-spacing:3.136000pt;}
.ws12{word-spacing:3.188267pt;}
.ws28{word-spacing:3.240533pt;}
.ws24{word-spacing:3.292800pt;}
.ws33{word-spacing:3.345067pt;}
.wsc1{word-spacing:3.397333pt;}
.ws91{word-spacing:3.449600pt;}
.ws23{word-spacing:3.501867pt;}
.wsd7{word-spacing:3.606400pt;}
.wsc2{word-spacing:3.658667pt;}
.ws22{word-spacing:3.815467pt;}
.ws90{word-spacing:3.867733pt;}
.wsb3{word-spacing:3.920000pt;}
.wsb5{word-spacing:3.972267pt;}
.wsa7{word-spacing:4.024533pt;}
.ws26{word-spacing:4.076800pt;}
.wse9{word-spacing:4.106667pt;}
.ws21{word-spacing:4.129067pt;}
.ws48{word-spacing:4.181333pt;}
.ws9b{word-spacing:4.285867pt;}
.ws60{word-spacing:4.338133pt;}
.ws14{word-spacing:4.390400pt;}
.wse{word-spacing:4.442667pt;}
.wsbd{word-spacing:4.494933pt;}
.ws5d{word-spacing:4.547200pt;}
.wsbc{word-spacing:4.599467pt;}
.ws92{word-spacing:4.651733pt;}
.wsfd{word-spacing:4.693333pt;}
.wsc{word-spacing:4.704000pt;}
.ws16{word-spacing:4.756267pt;}
.ws8a{word-spacing:4.860800pt;}
.ws6c{word-spacing:4.913067pt;}
.ws4c{word-spacing:4.965333pt;}
.ws3c{word-spacing:5.017600pt;}
.wsfc{word-spacing:5.066667pt;}
.ws68{word-spacing:5.069867pt;}
.ws8c{word-spacing:5.174400pt;}
.ws113{word-spacing:5.226667pt;}
.wsc7{word-spacing:5.278933pt;}
.ws4d{word-spacing:5.383467pt;}
.wsdd{word-spacing:5.488000pt;}
.ws67{word-spacing:5.540267pt;}
.ws112{word-spacing:5.600000pt;}
.wsf6{word-spacing:5.653333pt;}
.wsb8{word-spacing:5.697067pt;}
.wsff{word-spacing:5.813333pt;}
.wsb9{word-spacing:5.853867pt;}
.wsbb{word-spacing:5.906133pt;}
.ws9f{word-spacing:5.958400pt;}
.ws1a{word-spacing:6.010667pt;}
.ws3b{word-spacing:6.062933pt;}
.wsf5{word-spacing:6.080000pt;}
.wsd1{word-spacing:6.115200pt;}
.wsc6{word-spacing:6.167467pt;}
.wsc4{word-spacing:6.219733pt;}
.wscc{word-spacing:6.272000pt;}
.wsfe{word-spacing:6.293333pt;}
.ws84{word-spacing:6.376533pt;}
.ws116{word-spacing:6.400000pt;}
.ws6d{word-spacing:6.428800pt;}
.ws3d{word-spacing:6.481067pt;}
.ws70{word-spacing:6.533333pt;}
.wsae{word-spacing:6.585600pt;}
.wse5{word-spacing:6.666667pt;}
.ws47{word-spacing:6.742400pt;}
.wsdb{word-spacing:6.794667pt;}
.ws7b{word-spacing:6.846933pt;}
.ws115{word-spacing:6.880000pt;}
.wsc5{word-spacing:6.899200pt;}
.wsba{word-spacing:7.003733pt;}
.wse4{word-spacing:7.200000pt;}
.ws87{word-spacing:7.212800pt;}
.ws2f{word-spacing:7.421867pt;}
.ws52{word-spacing:7.474133pt;}
.wse1{word-spacing:7.735467pt;}
.wse2{word-spacing:7.892267pt;}
.wsc3{word-spacing:7.944533pt;}
.ws6b{word-spacing:8.153600pt;}
.wsfb{word-spacing:8.213333pt;}
.wsb4{word-spacing:8.362667pt;}
.wsd{word-spacing:8.414933pt;}
.wsd3{word-spacing:8.571733pt;}
.wse3{word-spacing:8.780800pt;}
.ws6e{word-spacing:8.937600pt;}
.ws5a{word-spacing:8.989867pt;}
.wsf9{word-spacing:9.173333pt;}
.wsb1{word-spacing:9.198933pt;}
.wsa3{word-spacing:9.251200pt;}
.ws117{word-spacing:9.600000pt;}
.ws11{word-spacing:9.721600pt;}
.wsfa{word-spacing:9.866667pt;}
.ws37{word-spacing:10.035200pt;}
.ws89{word-spacing:10.139733pt;}
.ws9d{word-spacing:10.244267pt;}
.wsb6{word-spacing:10.296533pt;}
.ws118{word-spacing:10.346667pt;}
.wscb{word-spacing:10.401067pt;}
.ws11d{word-spacing:10.613333pt;}
.ws75{word-spacing:10.714667pt;}
.ws111{word-spacing:10.720000pt;}
.ws6f{word-spacing:10.819200pt;}
.wsce{word-spacing:10.871467pt;}
.ws6a{word-spacing:10.976000pt;}
.wsca{word-spacing:11.237333pt;}
.wsde{word-spacing:11.289600pt;}
.ws57{word-spacing:11.341867pt;}
.wscd{word-spacing:11.394133pt;}
.ws11c{word-spacing:11.413333pt;}
.ws110{word-spacing:11.573333pt;}
.ws42{word-spacing:11.655467pt;}
.ws69{word-spacing:11.864533pt;}
.ws81{word-spacing:12.021333pt;}
.wsc9{word-spacing:12.125867pt;}
.wsad{word-spacing:12.544000pt;}
.ws102{word-spacing:12.960000pt;}
.ws80{word-spacing:12.962133pt;}
.ws88{word-spacing:13.118933pt;}
.wsd9{word-spacing:13.171200pt;}
.ws101{word-spacing:13.226667pt;}
.wsb2{word-spacing:13.746133pt;}
.ws7e{word-spacing:13.850667pt;}
.ws103{word-spacing:13.920000pt;}
.ws100{word-spacing:14.240000pt;}
.wsd2{word-spacing:14.634667pt;}
.ws4b{word-spacing:14.896000pt;}
.wse6{word-spacing:15.733333pt;}
.ws38{word-spacing:15.941333pt;}
.wscf{word-spacing:16.045867pt;}
.ws98{word-spacing:16.359467pt;}
.wse7{word-spacing:16.960000pt;}
.wsf1{word-spacing:17.600000pt;}
.ws36{word-spacing:17.666133pt;}
.wsf0{word-spacing:18.986667pt;}
.ws8e{word-spacing:21.220267pt;}
.wsf7{word-spacing:23.786667pt;}
.ws114{word-spacing:48.373333pt;}
.ws2e{word-spacing:1041.176533pt;}
.ws2d{word-spacing:1073.472000pt;}
._13{margin-left:-2570.079467pt;}
._a{margin-left:-38.520533pt;}
._19{margin-left:-12.887467pt;}
._18{margin-left:-7.317333pt;}
._6{margin-left:-5.835733pt;}
._8{margin-left:-4.867200pt;}
._2{margin-left:-3.402133pt;}
._1{margin-left:-1.865600pt;}
._0{margin-left:-0.937067pt;}
._3{width:0.958933pt;}
._7{width:2.738133pt;}
._16{width:3.726400pt;}
._17{width:5.162133pt;}
._14{width:9.835733pt;}
._15{width:14.093867pt;}
._9{width:24.100267pt;}
._4{width:67.726933pt;}
._b{width:649.876800pt;}
._11{width:799.809067pt;}
._d{width:871.787200pt;}
._10{width:895.529067pt;}
._e{width:936.864000pt;}
._c{width:954.858133pt;}
._f{width:962.387200pt;}
._12{width:981.012800pt;}
._5{width:1110.554667pt;}
.fs4{font-size:30.471467pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:43.530667pt;}
.fs1{font-size:52.266667pt;}
.fs8{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:74.666667pt;}
.fs3{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:43.799733pt;}
.y1{bottom:43.799867pt;}
.y6d{bottom:66.141733pt;}
.y34{bottom:66.141867pt;}
.y33{bottom:80.808533pt;}
.ye4{bottom:80.846800pt;}
.yab{bottom:80.885333pt;}
.y1c6{bottom:80.904133pt;}
.y1ff{bottom:80.912000pt;}
.y18d{bottom:80.977067pt;}
.y154{bottom:80.989600pt;}
.y11f{bottom:81.026933pt;}
.y6c{bottom:81.174000pt;}
.y32{bottom:95.475200pt;}
.yaa{bottom:95.628800pt;}
.y1c5{bottom:95.666533pt;}
.y1fe{bottom:95.682133pt;}
.y18c{bottom:95.812400pt;}
.y153{bottom:95.837467pt;}
.y11e{bottom:95.912133pt;}
.y6b{bottom:96.206267pt;}
.y31{bottom:110.141867pt;}
.ye3{bottom:110.218400pt;}
.ya9{bottom:110.372267pt;}
.y1c4{bottom:110.428933pt;}
.y1fd{bottom:110.452267pt;}
.y18b{bottom:110.647733pt;}
.y11d{bottom:110.797333pt;}
.y6a{bottom:111.238400pt;}
.y30{bottom:124.808533pt;}
.ye2{bottom:124.923467pt;}
.ya8{bottom:125.115867pt;}
.y1c3{bottom:125.191200pt;}
.y1fc{bottom:125.222400pt;}
.y152{bottom:125.351867pt;}
.y18a{bottom:125.483067pt;}
.y11c{bottom:125.682400pt;}
.y69{bottom:126.270667pt;}
.y2f{bottom:139.475200pt;}
.ye1{bottom:139.628400pt;}
.ya7{bottom:139.859333pt;}
.y1c2{bottom:139.953600pt;}
.y1fb{bottom:139.992533pt;}
.y151{bottom:140.199733pt;}
.y189{bottom:140.318400pt;}
.y11b{bottom:140.567600pt;}
.y68{bottom:141.302800pt;}
.ye0{bottom:154.333467pt;}
.ya6{bottom:154.602800pt;}
.y1c1{bottom:154.716000pt;}
.y1fa{bottom:154.762667pt;}
.y2e{bottom:154.959333pt;}
.y150{bottom:155.047467pt;}
.y188{bottom:155.153600pt;}
.y11a{bottom:155.452800pt;}
.y67{bottom:156.335067pt;}
.ydf{bottom:169.038400pt;}
.ya5{bottom:169.346267pt;}
.y1c0{bottom:169.478400pt;}
.y1f9{bottom:169.532933pt;}
.y2d{bottom:169.626000pt;}
.y14f{bottom:169.895333pt;}
.y187{bottom:169.989067pt;}
.y119{bottom:170.337867pt;}
.y66{bottom:171.367333pt;}
.yde{bottom:183.743467pt;}
.ya4{bottom:184.089733pt;}
.y1bf{bottom:184.240667pt;}
.y2c{bottom:184.292667pt;}
.y1f8{bottom:184.302933pt;}
.y14e{bottom:184.743067pt;}
.y186{bottom:184.824267pt;}
.y118{bottom:185.223067pt;}
.y65{bottom:186.399467pt;}
.ydd{bottom:198.448400pt;}
.ya3{bottom:198.833333pt;}
.y2b{bottom:198.959333pt;}
.y1be{bottom:199.003067pt;}
.y1f7{bottom:199.073200pt;}
.y14d{bottom:199.590933pt;}
.y185{bottom:199.659733pt;}
.y117{bottom:200.108267pt;}
.y64{bottom:201.431733pt;}
.ydc{bottom:213.153467pt;}
.ya2{bottom:213.576800pt;}
.y1bd{bottom:213.765467pt;}
.y1f6{bottom:213.843200pt;}
.y14c{bottom:214.438667pt;}
.y184{bottom:214.494933pt;}
.y116{bottom:214.993467pt;}
.y63{bottom:216.463867pt;}
.y2a{bottom:218.222933pt;}
.ya1{bottom:228.320267pt;}
.y1bc{bottom:228.527867pt;}
.y1f5{bottom:228.613467pt;}
.y14b{bottom:229.286533pt;}
.y183{bottom:229.330267pt;}
.y115{bottom:229.878533pt;}
.y62{bottom:231.496133pt;}
.ydb{bottom:242.525067pt;}
.ya0{bottom:243.063867pt;}
.y1bb{bottom:243.290267pt;}
.y1f4{bottom:243.383600pt;}
.y14a{bottom:244.134400pt;}
.y182{bottom:244.165600pt;}
.y114{bottom:244.763733pt;}
.yda{bottom:257.230000pt;}
.y9f{bottom:257.807333pt;}
.y61{bottom:257.866800pt;}
.y1ba{bottom:258.052533pt;}
.y1f3{bottom:258.153733pt;}
.y149{bottom:258.982133pt;}
.y181{bottom:259.000933pt;}
.y235{bottom:259.276000pt;}
.y113{bottom:259.648933pt;}
.y29{bottom:263.040267pt;}
.yd9{bottom:271.934933pt;}
.y9e{bottom:272.550800pt;}
.y1b9{bottom:272.814933pt;}
.y1f2{bottom:272.923867pt;}
.y148{bottom:273.830000pt;}
.y180{bottom:273.836133pt;}
.y234{bottom:273.942667pt;}
.y112{bottom:274.534000pt;}
.y28{bottom:277.706933pt;}
.y60{bottom:280.183867pt;}
.yd8{bottom:286.640000pt;}
.y9d{bottom:287.294267pt;}
.y1b8{bottom:287.577333pt;}
.y1f1{bottom:287.694133pt;}
.y233{bottom:288.609333pt;}
.y17f{bottom:288.671600pt;}
.y147{bottom:288.677733pt;}
.y111{bottom:289.419200pt;}
.yd7{bottom:301.344933pt;}
.y5f{bottom:301.668133pt;}
.y9c{bottom:302.037733pt;}
.y1b7{bottom:302.339733pt;}
.y232{bottom:303.276000pt;}
.y17e{bottom:303.506800pt;}
.y110{bottom:304.304400pt;}
.y1f0{bottom:306.243733pt;}
.y146{bottom:307.305067pt;}
.yd6{bottom:316.050000pt;}
.y9b{bottom:316.781333pt;}
.y1b6{bottom:317.102000pt;}
.y231{bottom:317.942667pt;}
.y10f{bottom:319.189600pt;}
.y17d{bottom:322.121600pt;}
.y27{bottom:322.524400pt;}
.y5e{bottom:323.152267pt;}
.yd5{bottom:330.754933pt;}
.y9a{bottom:331.524800pt;}
.y1b5{bottom:331.864400pt;}
.y230{bottom:332.609333pt;}
.y10e{bottom:334.074667pt;}
.y26{bottom:338.008533pt;}
.y5d{bottom:344.636533pt;}
.yd4{bottom:345.460000pt;}
.y1b4{bottom:346.626800pt;}
.y22f{bottom:347.276000pt;}
.y10d{bottom:348.959867pt;}
.y99{bottom:350.047867pt;}
.y1ef{bottom:350.347200pt;}
.y145{bottom:351.486267pt;}
.y25{bottom:352.675200pt;}
.yd3{bottom:360.164933pt;}
.y1b3{bottom:361.389200pt;}
.y22e{bottom:361.942667pt;}
.y10c{bottom:363.845067pt;}
.y1ee{bottom:365.117333pt;}
.y5c{bottom:366.120667pt;}
.y17c{bottom:366.290267pt;}
.y144{bottom:366.334000pt;}
.y24{bottom:368.159200pt;}
.yd2{bottom:374.870000pt;}
.y1b2{bottom:376.151467pt;}
.y22d{bottom:376.609333pt;}
.y10b{bottom:378.730133pt;}
.y1ed{bottom:379.887467pt;}
.y17b{bottom:381.125600pt;}
.y143{bottom:381.181867pt;}
.y23{bottom:382.825867pt;}
.y5b{bottom:387.604933pt;}
.yd1{bottom:389.574933pt;}
.y22c{bottom:391.276000pt;}
.y98{bottom:394.124667pt;}
.y1ec{bottom:394.657733pt;}
.y1b1{bottom:394.693467pt;}
.y17a{bottom:395.960933pt;}
.y142{bottom:396.029600pt;}
.y22{bottom:397.492533pt;}
.y10a{bottom:401.174400pt;}
.yd0{bottom:404.279867pt;}
.y22b{bottom:405.942667pt;}
.y97{bottom:408.868133pt;}
.y5a{bottom:409.089067pt;}
.y1eb{bottom:409.427867pt;}
.y1b0{bottom:409.455733pt;}
.y179{bottom:410.796267pt;}
.y141{bottom:410.877467pt;}
.y21{bottom:412.159200pt;}
.y109{bottom:416.059600pt;}
.y22a{bottom:420.609333pt;}
.ycf{bottom:422.764400pt;}
.y96{bottom:423.611600pt;}
.y1ea{bottom:424.198000pt;}
.y178{bottom:425.631600pt;}
.y140{bottom:425.725200pt;}
.y20{bottom:426.825867pt;}
.y59{bottom:430.573333pt;}
.y108{bottom:430.944667pt;}
.y229{bottom:435.276000pt;}
.y95{bottom:438.355200pt;}
.y177{bottom:440.466933pt;}
.y13f{bottom:440.573067pt;}
.y1f{bottom:442.310000pt;}
.y228{bottom:449.942667pt;}
.y58{bottom:452.057600pt;}
.y94{bottom:453.098667pt;}
.y107{bottom:453.388933pt;}
.y1af{bottom:453.551467pt;}
.y1e9{bottom:453.634800pt;}
.y176{bottom:455.302267pt;}
.y13e{bottom:455.420933pt;}
.yce{bottom:455.915467pt;}
.y1e{bottom:456.976667pt;}
.y227{bottom:464.609333pt;}
.y93{bottom:467.842133pt;}
.y106{bottom:468.274133pt;}
.y1ae{bottom:468.313867pt;}
.y1e8{bottom:468.404933pt;}
.y13d{bottom:470.268667pt;}
.y1d{bottom:471.643333pt;}
.y57{bottom:473.541733pt;}
.y175{bottom:473.917067pt;}
.y226{bottom:479.276000pt;}
.y92{bottom:482.585600pt;}
.y1ad{bottom:483.076267pt;}
.y105{bottom:483.159200pt;}
.y1e7{bottom:483.175067pt;}
.y13c{bottom:485.116533pt;}
.y1c{bottom:486.310000pt;}
.y225{bottom:493.942667pt;}
.y56{bottom:495.026000pt;}
.y91{bottom:497.329200pt;}
.y1ac{bottom:497.838533pt;}
.y1e6{bottom:497.945200pt;}
.y104{bottom:498.044400pt;}
.ycd{bottom:499.953733pt;}
.y13b{bottom:499.964267pt;}
.y1b{bottom:500.976667pt;}
.y224{bottom:508.609333pt;}
.y90{bottom:512.072667pt;}
.y1ab{bottom:512.600933pt;}
.y1e5{bottom:512.715333pt;}
.y103{bottom:512.929600pt;}
.ycc{bottom:514.658667pt;}
.y1a{bottom:515.643333pt;}
.y174{bottom:518.085733pt;}
.y55{bottom:522.150000pt;}
.y223{bottom:523.276000pt;}
.y8f{bottom:526.816133pt;}
.y1aa{bottom:527.363333pt;}
.y1e4{bottom:527.485600pt;}
.y102{bottom:527.814800pt;}
.ycb{bottom:529.363733pt;}
.y13a{bottom:529.478800pt;}
.y173{bottom:532.921067pt;}
.y222{bottom:537.942667pt;}
.y8e{bottom:541.559600pt;}
.y1a9{bottom:542.125600pt;}
.y1e3{bottom:542.255733pt;}
.y101{bottom:542.699867pt;}
.yca{bottom:544.068667pt;}
.y172{bottom:547.756400pt;}
.y19{bottom:552.010133pt;}
.y221{bottom:552.609333pt;}
.y8d{bottom:556.303200pt;}
.y54{bottom:556.516133pt;}
.y1a8{bottom:556.888000pt;}
.y1e2{bottom:557.025867pt;}
.y100{bottom:557.585067pt;}
.yc9{bottom:558.773733pt;}
.y139{bottom:558.993200pt;}
.y171{bottom:562.591600pt;}
.y220{bottom:567.276000pt;}
.y8c{bottom:571.046667pt;}
.y53{bottom:571.548400pt;}
.y1a7{bottom:571.650400pt;}
.y1e1{bottom:571.796000pt;}
.yc8{bottom:573.478667pt;}
.y138{bottom:573.841067pt;}
.yff{bottom:576.249733pt;}
.y21f{bottom:581.942667pt;}
.y8b{bottom:585.790133pt;}
.y1e0{bottom:586.566133pt;}
.y52{bottom:586.580533pt;}
.yc7{bottom:588.183733pt;}
.y137{bottom:588.688933pt;}
.y18{bottom:589.943867pt;}
.y1a6{bottom:590.192267pt;}
.y170{bottom:592.093600pt;}
.y21e{bottom:596.609333pt;}
.y8a{bottom:600.533600pt;}
.y1df{bottom:601.336267pt;}
.yc6{bottom:602.888667pt;}
.y136{bottom:603.536667pt;}
.y1a5{bottom:604.954667pt;}
.y17{bottom:605.427867pt;}
.y16f{bottom:606.928933pt;}
.y21d{bottom:611.276000pt;}
.y89{bottom:615.277200pt;}
.y1de{bottom:616.106400pt;}
.y51{bottom:616.279467pt;}
.yc5{bottom:617.593733pt;}
.y135{bottom:618.384533pt;}
.y16{bottom:620.094533pt;}
.yfe{bottom:620.468267pt;}
.y16e{bottom:621.764267pt;}
.y21c{bottom:625.942667pt;}
.y88{bottom:630.020667pt;}
.y1dd{bottom:630.876533pt;}
.y50{bottom:631.311600pt;}
.yc4{bottom:632.298667pt;}
.y134{bottom:633.232267pt;}
.yfd{bottom:635.353333pt;}
.y15{bottom:635.578667pt;}
.y16d{bottom:636.599600pt;}
.y21b{bottom:640.609333pt;}
.y87{bottom:644.764133pt;}
.y1dc{bottom:645.646667pt;}
.y4f{bottom:646.343867pt;}
.yc3{bottom:647.003600pt;}
.y133{bottom:648.080133pt;}
.y1a4{bottom:649.050400pt;}
.yfc{bottom:650.238533pt;}
.y14{bottom:650.245333pt;}
.y16c{bottom:651.434933pt;}
.y21a{bottom:655.276000pt;}
.y86{bottom:659.507600pt;}
.y1db{bottom:660.416933pt;}
.y4e{bottom:661.376000pt;}
.yc2{bottom:661.708667pt;}
.y1a3{bottom:663.812800pt;}
.y13{bottom:664.912000pt;}
.yfb{bottom:665.123733pt;}
.y16b{bottom:666.270133pt;}
.y219{bottom:669.942667pt;}
.y85{bottom:674.251200pt;}
.y1da{bottom:675.187067pt;}
.y4d{bottom:676.408267pt;}
.yc1{bottom:676.413600pt;}
.y132{bottom:677.594533pt;}
.y1a2{bottom:678.575067pt;}
.y12{bottom:679.578667pt;}
.yfa{bottom:680.008933pt;}
.y16a{bottom:681.105467pt;}
.y218{bottom:684.609333pt;}
.y84{bottom:688.994667pt;}
.yc0{bottom:691.118667pt;}
.y1a1{bottom:693.337467pt;}
.y1d9{bottom:693.736800pt;}
.y11{bottom:694.245333pt;}
.yf9{bottom:694.894000pt;}
.y217{bottom:699.276000pt;}
.y83{bottom:703.738133pt;}
.y4c{bottom:706.107200pt;}
.y131{bottom:707.109067pt;}
.y1a0{bottom:708.099867pt;}
.y10{bottom:709.729333pt;}
.yf8{bottom:709.779200pt;}
.y169{bottom:710.607467pt;}
.y216{bottom:713.942667pt;}
.y82{bottom:718.481733pt;}
.ybf{bottom:720.490267pt;}
.y4b{bottom:721.139333pt;}
.y130{bottom:721.956933pt;}
.y19f{bottom:722.862267pt;}
.yf{bottom:724.396000pt;}
.yf7{bottom:724.664400pt;}
.y168{bottom:725.442800pt;}
.y215{bottom:728.609333pt;}
.y81{bottom:733.225200pt;}
.ybe{bottom:735.195200pt;}
.y4a{bottom:736.171600pt;}
.y12f{bottom:736.804667pt;}
.y19e{bottom:737.624533pt;}
.y1d8{bottom:737.840133pt;}
.ye{bottom:739.062667pt;}
.yf6{bottom:739.549600pt;}
.y167{bottom:740.278133pt;}
.y214{bottom:743.276000pt;}
.y80{bottom:747.968667pt;}
.ybd{bottom:749.900267pt;}
.y49{bottom:751.203733pt;}
.y12e{bottom:751.652533pt;}
.y1d7{bottom:752.610400pt;}
.yd{bottom:753.729333pt;}
.y166{bottom:755.113467pt;}
.y213{bottom:757.942667pt;}
.y19d{bottom:759.946000pt;}
.y7f{bottom:762.712133pt;}
.ybc{bottom:764.605200pt;}
.y48{bottom:766.236000pt;}
.y12d{bottom:766.500267pt;}
.y1d6{bottom:767.380533pt;}
.yc{bottom:768.396000pt;}
.yf5{bottom:769.101333pt;}
.y165{bottom:769.948667pt;}
.y212{bottom:772.609333pt;}
.y19c{bottom:774.708267pt;}
.y7e{bottom:777.455600pt;}
.y47{bottom:781.268267pt;}
.y12c{bottom:781.348000pt;}
.y1d5{bottom:782.150667pt;}
.yb{bottom:783.062667pt;}
.yf4{bottom:783.986533pt;}
.y164{bottom:784.784133pt;}
.y211{bottom:787.276000pt;}
.y19b{bottom:789.470667pt;}
.y7d{bottom:792.199200pt;}
.ybb{bottom:793.976933pt;}
.y12b{bottom:796.195867pt;}
.y46{bottom:796.300400pt;}
.y1d4{bottom:796.920800pt;}
.yf3{bottom:798.871600pt;}
.y163{bottom:799.619333pt;}
.y210{bottom:801.942667pt;}
.ya{bottom:802.080533pt;}
.y19a{bottom:804.233067pt;}
.y7c{bottom:806.942667pt;}
.yba{bottom:808.681867pt;}
.y12a{bottom:811.043733pt;}
.y45{bottom:811.332667pt;}
.y1d3{bottom:811.690933pt;}
.yf2{bottom:813.756800pt;}
.y162{bottom:814.454667pt;}
.y20f{bottom:816.609333pt;}
.y199{bottom:818.995467pt;}
.y7b{bottom:821.686133pt;}
.yb9{bottom:823.386933pt;}
.y129{bottom:825.891467pt;}
.y44{bottom:826.364800pt;}
.y1d2{bottom:826.461067pt;}
.y9{bottom:828.331600pt;}
.yf1{bottom:828.642000pt;}
.y161{bottom:829.290000pt;}
.y20e{bottom:831.276000pt;}
.y7a{bottom:836.429733pt;}
.yb8{bottom:838.091867pt;}
.y1d1{bottom:841.231333pt;}
.y198{bottom:841.316933pt;}
.y43{bottom:841.397067pt;}
.yf0{bottom:843.527200pt;}
.y160{bottom:844.125333pt;}
.y20d{bottom:845.942667pt;}
.y79{bottom:851.173200pt;}
.yb7{bottom:852.796933pt;}
.y128{bottom:855.406000pt;}
.y1d0{bottom:856.001333pt;}
.y197{bottom:856.079200pt;}
.y42{bottom:856.429333pt;}
.yef{bottom:858.412400pt;}
.y15f{bottom:858.960667pt;}
.y20c{bottom:860.609333pt;}
.y8{bottom:862.713200pt;}
.y78{bottom:865.916667pt;}
.yb6{bottom:867.501733pt;}
.y1cf{bottom:870.771600pt;}
.y196{bottom:870.841600pt;}
.y41{bottom:871.461467pt;}
.yee{bottom:873.297467pt;}
.y15e{bottom:873.796000pt;}
.y20b{bottom:875.276000pt;}
.y7{bottom:875.379867pt;}
.y77{bottom:880.660133pt;}
.yb5{bottom:882.206800pt;}
.y127{bottom:884.920400pt;}
.y1ce{bottom:885.541600pt;}
.y195{bottom:885.604000pt;}
.y40{bottom:886.493600pt;}
.yed{bottom:888.182667pt;}
.y20a{bottom:889.942667pt;}
.y76{bottom:895.403600pt;}
.yb4{bottom:896.911733pt;}
.y126{bottom:899.768267pt;}
.y194{bottom:900.366400pt;}
.y3f{bottom:901.525867pt;}
.yec{bottom:903.067733pt;}
.y15d{bottom:903.297867pt;}
.y1cd{bottom:904.091333pt;}
.y209{bottom:904.609333pt;}
.y75{bottom:910.147200pt;}
.yb3{bottom:911.616800pt;}
.y125{bottom:914.616000pt;}
.y193{bottom:915.128800pt;}
.y3e{bottom:916.558133pt;}
.yeb{bottom:917.952933pt;}
.y15c{bottom:918.133200pt;}
.y208{bottom:919.276000pt;}
.y6{bottom:921.668933pt;}
.y74{bottom:924.890667pt;}
.yb2{bottom:926.321733pt;}
.y3d{bottom:931.590267pt;}
.yea{bottom:932.838133pt;}
.y15b{bottom:932.968533pt;}
.y124{bottom:933.243467pt;}
.y192{bottom:933.670533pt;}
.y207{bottom:933.942667pt;}
.y73{bottom:939.634133pt;}
.yb1{bottom:941.026800pt;}
.y3c{bottom:946.622533pt;}
.ye9{bottom:947.723333pt;}
.y15a{bottom:947.803867pt;}
.y1cc{bottom:948.194800pt;}
.y206{bottom:948.609333pt;}
.y72{bottom:954.377733pt;}
.y3b{bottom:961.654667pt;}
.ye8{bottom:962.608533pt;}
.y159{bottom:962.639200pt;}
.y1cb{bottom:962.965067pt;}
.y205{bottom:963.276000pt;}
.yb0{bottom:963.290800pt;}
.y71{bottom:969.121200pt;}
.y3a{bottom:976.686933pt;}
.y4{bottom:977.133867pt;}
.y123{bottom:977.424533pt;}
.y158{bottom:977.474533pt;}
.ye7{bottom:977.493600pt;}
.y1ca{bottom:977.735200pt;}
.y191{bottom:977.766267pt;}
.y204{bottom:977.942667pt;}
.yaf{bottom:977.995867pt;}
.y70{bottom:983.864667pt;}
.y3{bottom:990.467200pt;}
.y5{bottom:991.292800pt;}
.y39{bottom:991.719200pt;}
.y122{bottom:992.272400pt;}
.y157{bottom:992.309867pt;}
.y1c9{bottom:992.505333pt;}
.y190{bottom:992.528667pt;}
.y203{bottom:992.609333pt;}
.yae{bottom:992.700800pt;}
.y6f{bottom:1002.387733pt;}
.y38{bottom:1006.751333pt;}
.ye6{bottom:1007.045467pt;}
.y121{bottom:1007.120133pt;}
.y156{bottom:1007.145200pt;}
.y1c8{bottom:1007.275467pt;}
.y202{bottom:1007.276000pt;}
.y18f{bottom:1007.291067pt;}
.yad{bottom:1007.405733pt;}
.y37{bottom:1021.783467pt;}
.ye5{bottom:1021.930533pt;}
.y201{bottom:1021.942667pt;}
.y120{bottom:1021.968000pt;}
.y155{bottom:1021.980533pt;}
.y1c7{bottom:1022.045600pt;}
.y18e{bottom:1022.053333pt;}
.yac{bottom:1022.110800pt;}
.y6e{bottom:1035.577333pt;}
.y200{bottom:1036.609333pt;}
.y36{bottom:1036.815733pt;}
.y35{bottom:1071.727600pt;}
.h7{height:28.955733pt;}
.h2{height:33.114667pt;}
.h6{height:37.802667pt;}
.h4{height:37.845333pt;}
.ha{height:38.520533pt;}
.h8{height:41.290667pt;}
.h9{height:43.237333pt;}
.h3{height:46.360533pt;}
.hb{height:47.306667pt;}
.h5{height:80.330667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.590533pt;}
.x3{left:82.431467pt;}
.x6{left:86.929200pt;}
.x8{left:94.523867pt;}
.x16{left:113.385867pt;}
.x5{left:129.216400pt;}
.xb{left:158.480667pt;}
.x10{left:182.539333pt;}
.x11{left:183.835333pt;}
.xc{left:189.264533pt;}
.x7{left:192.674133pt;}
.x12{left:195.131200pt;}
.x13{left:197.291067pt;}
.xd{left:198.464133pt;}
.xf{left:202.731067pt;}
.xe{left:218.176133pt;}
.x14{left:223.028800pt;}
.xa{left:323.822267pt;}
.x9{left:468.073733pt;}
.x4{left:642.024533pt;}
.x15{left:703.690400pt;}
.x1{left:705.547867pt;}
}




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