
    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_1a2109c55a61b2d1a4dd8824.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202000;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_6a60e8c26e37f5fa7cf47037.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.203000;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_7c56843bddf42e2768b4742b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.239000;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_ff83b662fadf98cc0fdc6f89.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;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_814eb0365ba23ad63ca8c9f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_81dfc1e700c42aa0f48cddc2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_11c8f73307ad4068185b62b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.483000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_86366b014829398fb134d8df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.770000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bf7b6b9e1a7e6b3cdee6aa14.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.483000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5e79e73259628f63fb745e23.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_583ce2e4f0860345939e23b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.444000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_580089652fe3b2e9185f0c02.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_30c0bafc6acd2a27563b47d2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938000;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_62cd6411fbb93a44f2a07895.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.714000;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_a88e4eb98d333b084dca6aea.woff2')format("woff");}.fff{font-family:fff;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8733ffd1a587abbfcb2a68a8.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_065df55cf8feb672435b994e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.027000;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.250000,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.250000,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.250000,0.000000,-0.051979,0.244537,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);}
.m3{transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-ms-transform:matrix(0.250004,0.000000,-0.051977,0.244537,0,0);-webkit-transform:matrix(0.250004,0.000000,-0.051977,0.244537,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:-18.000000px;}
.v4{vertical-align:-15.698806px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.488000px;}
.v6{vertical-align:3.402000px;}
.v5{vertical-align:18.000000px;}
.v2{vertical-align:26.399780px;}
.ls7{letter-spacing:-4.667933px;}
.lsf{letter-spacing:-1.176000px;}
.ls6{letter-spacing:-1.050000px;}
.lse{letter-spacing:-0.470400px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000002px;}
.ls2{letter-spacing:0.000040px;}
.ls11{letter-spacing:0.000070px;}
.ls1{letter-spacing:0.000176px;}
.ls13{letter-spacing:0.150130px;}
.ls14{letter-spacing:0.225194px;}
.ls10{letter-spacing:0.823200px;}
.lsb{letter-spacing:1.064258px;}
.ls15{letter-spacing:1.125972px;}
.lsd{letter-spacing:1.128960px;}
.ls9{letter-spacing:1.170073px;}
.ls3{letter-spacing:1.176000px;}
.lsa{letter-spacing:1.234800px;}
.lsc{letter-spacing:1.240669px;}
.ls8{letter-spacing:1.305304px;}
.ls12{letter-spacing:1.876621px;}
.ls0{letter-spacing:5.460000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-21.216000px;}
.wsa9{word-spacing:-14.641200px;}
.wsa1{word-spacing:-13.935600px;}
.ws58{word-spacing:-13.818000px;}
.ws59{word-spacing:-12.642000px;}
.ws3{word-spacing:-12.483600px;}
.ws5{word-spacing:-12.420000px;}
.wsdf{word-spacing:-12.310630px;}
.wsde{word-spacing:-11.559982px;}
.wsbc{word-spacing:-11.426400px;}
.wsdd{word-spacing:-10.659204px;}
.wsdc{word-spacing:-10.584140px;}
.ws0{word-spacing:-10.176000px;}
.ws2{word-spacing:-10.117800px;}
.ws21{word-spacing:-9.936000px;}
.wse1{word-spacing:-9.855000px;}
.wsbb{word-spacing:-9.315000px;}
.ws7{word-spacing:-8.148000px;}
.wsda{word-spacing:-7.965000px;}
.wsbd{word-spacing:-6.898500px;}
.wse0{word-spacing:-1.876621px;}
.wsdb{word-spacing:-1.575000px;}
.ws2b{word-spacing:-1.176000px;}
.wsa8{word-spacing:-0.823200px;}
.ws7a{word-spacing:-0.411600px;}
.ws3d{word-spacing:-0.294000px;}
.wsb4{word-spacing:-0.235200px;}
.ws7c{word-spacing:-0.176400px;}
.wsd8{word-spacing:-0.135000px;}
.ws4{word-spacing:-0.060000px;}
.wsaf{word-spacing:-0.058800px;}
.wsd9{word-spacing:-0.045000px;}
.ws6{word-spacing:0.000000px;}
.ws56{word-spacing:0.117600px;}
.ws17{word-spacing:0.294000px;}
.ws7e{word-spacing:0.411600px;}
.ws43{word-spacing:0.588000px;}
.ws8e{word-spacing:0.646800px;}
.wse{word-spacing:0.882000px;}
.ws5b{word-spacing:0.999600px;}
.ws7f{word-spacing:1.117200px;}
.ws51{word-spacing:1.470000px;}
.ws38{word-spacing:1.646400px;}
.ws32{word-spacing:1.822800px;}
.ws6a{word-spacing:2.058000px;}
.wsd3{word-spacing:2.116800px;}
.ws52{word-spacing:2.175600px;}
.ws25{word-spacing:2.234400px;}
.ws5a{word-spacing:2.293200px;}
.wsc{word-spacing:2.352000px;}
.ws64{word-spacing:2.410800px;}
.ws4f{word-spacing:2.469600px;}
.ws50{word-spacing:2.528400px;}
.ws9{word-spacing:2.587200px;}
.wsc5{word-spacing:2.646000px;}
.ws2a{word-spacing:2.763600px;}
.ws69{word-spacing:2.881200px;}
.ws53{word-spacing:2.998800px;}
.ws81{word-spacing:3.057600px;}
.ws61{word-spacing:3.234000px;}
.ws16{word-spacing:3.410400px;}
.ws4e{word-spacing:3.528000px;}
.ws57{word-spacing:3.586800px;}
.wsc3{word-spacing:3.645600px;}
.ws15{word-spacing:3.704400px;}
.ws6f{word-spacing:3.763200px;}
.ws3c{word-spacing:3.822000px;}
.ws3f{word-spacing:3.880800px;}
.ws2e{word-spacing:3.939600px;}
.ws47{word-spacing:4.057200px;}
.ws83{word-spacing:4.233600px;}
.wsa4{word-spacing:4.351200px;}
.ws30{word-spacing:4.468800px;}
.ws63{word-spacing:4.527600px;}
.ws5f{word-spacing:4.645200px;}
.wsa{word-spacing:4.704000px;}
.ws9e{word-spacing:4.762800px;}
.wsd1{word-spacing:4.939200px;}
.ws85{word-spacing:4.998000px;}
.wsb0{word-spacing:5.056800px;}
.ws79{word-spacing:5.115600px;}
.wsa6{word-spacing:5.174400px;}
.ws78{word-spacing:5.292000px;}
.ws29{word-spacing:5.409600px;}
.ws55{word-spacing:5.527200px;}
.wsbf{word-spacing:5.586000px;}
.ws8{word-spacing:5.762400px;}
.wsbe{word-spacing:5.821200px;}
.ws3e{word-spacing:5.880000px;}
.ws89{word-spacing:5.938800px;}
.ws1b{word-spacing:6.056400px;}
.ws60{word-spacing:6.115200px;}
.wsc0{word-spacing:6.291600px;}
.ws7b{word-spacing:6.350400px;}
.ws68{word-spacing:6.526800px;}
.ws42{word-spacing:6.585600px;}
.ws6e{word-spacing:6.644400px;}
.ws24{word-spacing:6.703200px;}
.ws54{word-spacing:6.820800px;}
.ws75{word-spacing:6.879600px;}
.ws26{word-spacing:6.938400px;}
.ws65{word-spacing:6.997200px;}
.ws22{word-spacing:7.173600px;}
.ws6d{word-spacing:7.232400px;}
.wsb2{word-spacing:7.291200px;}
.ws87{word-spacing:7.350000px;}
.ws28{word-spacing:7.408800px;}
.wsb{word-spacing:7.467600px;}
.ws82{word-spacing:7.702800px;}
.ws48{word-spacing:7.996800px;}
.ws8c{word-spacing:8.055600px;}
.wsc7{word-spacing:8.173200px;}
.ws34{word-spacing:8.232000px;}
.wsd2{word-spacing:8.408400px;}
.wsad{word-spacing:8.467200px;}
.ws35{word-spacing:8.526000px;}
.ws97{word-spacing:8.584800px;}
.wsb8{word-spacing:8.643600px;}
.ws1a{word-spacing:8.702400px;}
.ws2d{word-spacing:8.820000px;}
.wsb3{word-spacing:8.937600px;}
.ws14{word-spacing:8.996400px;}
.ws80{word-spacing:9.055200px;}
.ws44{word-spacing:9.231600px;}
.ws94{word-spacing:9.349200px;}
.ws99{word-spacing:9.408000px;}
.wsd5{word-spacing:9.525600px;}
.ws46{word-spacing:9.584400px;}
.wsf{word-spacing:9.643200px;}
.ws20{word-spacing:9.819600px;}
.ws73{word-spacing:10.113600px;}
.ws39{word-spacing:10.172400px;}
.wsd7{word-spacing:10.231200px;}
.ws7d{word-spacing:10.290000px;}
.ws71{word-spacing:10.348800px;}
.ws49{word-spacing:10.466400px;}
.ws2f{word-spacing:10.525200px;}
.ws77{word-spacing:10.642800px;}
.ws95{word-spacing:10.760400px;}
.wsb6{word-spacing:10.878000px;}
.ws72{word-spacing:10.936800px;}
.ws45{word-spacing:11.054400px;}
.ws93{word-spacing:11.172000px;}
.ws96{word-spacing:11.230800px;}
.ws41{word-spacing:11.407200px;}
.ws8a{word-spacing:11.524800px;}
.ws40{word-spacing:11.701200px;}
.wscc{word-spacing:11.760000px;}
.wsb7{word-spacing:11.936400px;}
.ws23{word-spacing:11.995200px;}
.wsc8{word-spacing:12.054000px;}
.wsae{word-spacing:12.112800px;}
.ws5e{word-spacing:12.171600px;}
.ws12{word-spacing:12.230400px;}
.ws9b{word-spacing:12.289200px;}
.ws8f{word-spacing:12.465600px;}
.ws8d{word-spacing:12.642000px;}
.ws76{word-spacing:12.759600px;}
.ws1e{word-spacing:12.877200px;}
.ws74{word-spacing:12.994800px;}
.wsa2{word-spacing:13.053600px;}
.wsab{word-spacing:13.112400px;}
.ws4d{word-spacing:13.230000px;}
.wsd4{word-spacing:13.465200px;}
.ws4c{word-spacing:13.759200px;}
.ws31{word-spacing:13.818000px;}
.ws18{word-spacing:13.876800px;}
.ws36{word-spacing:13.935600px;}
.ws3b{word-spacing:14.170800px;}
.ws27{word-spacing:14.229600px;}
.ws10{word-spacing:14.347200px;}
.wsb5{word-spacing:14.464800px;}
.ws86{word-spacing:14.523600px;}
.ws67{word-spacing:14.641200px;}
.wscb{word-spacing:14.935200px;}
.ws5d{word-spacing:15.052800px;}
.wsd0{word-spacing:15.111600px;}
.wsa5{word-spacing:15.229200px;}
.ws4a{word-spacing:15.288000px;}
.ws8b{word-spacing:15.346800px;}
.ws9c{word-spacing:15.464400px;}
.ws4b{word-spacing:15.582000px;}
.wsca{word-spacing:15.758400px;}
.wscd{word-spacing:15.876000px;}
.ws9a{word-spacing:16.111200px;}
.wsc9{word-spacing:16.228800px;}
.ws37{word-spacing:16.346400px;}
.wsba{word-spacing:16.464000px;}
.wsce{word-spacing:16.640400px;}
.wsa7{word-spacing:16.758000px;}
.wscf{word-spacing:16.816800px;}
.wsac{word-spacing:16.875600px;}
.ws70{word-spacing:17.052000px;}
.wsc2{word-spacing:17.287200px;}
.ws1f{word-spacing:17.346000px;}
.ws11{word-spacing:17.522400px;}
.wsc1{word-spacing:17.581200px;}
.ws84{word-spacing:17.816400px;}
.wsc6{word-spacing:17.992800px;}
.ws88{word-spacing:18.169200px;}
.ws98{word-spacing:18.228000px;}
.ws5c{word-spacing:18.286800px;}
.ws66{word-spacing:18.463200px;}
.ws9f{word-spacing:18.522000px;}
.ws6c{word-spacing:18.639600px;}
.ws91{word-spacing:18.757200px;}
.ws6b{word-spacing:19.051200px;}
.wsd6{word-spacing:19.698000px;}
.ws1d{word-spacing:19.992000px;}
.wsd{word-spacing:20.050800px;}
.wsc4{word-spacing:20.874000px;}
.ws92{word-spacing:21.285600px;}
.wsaa{word-spacing:21.991200px;}
.ws33{word-spacing:22.285200px;}
.wsa0{word-spacing:22.638000px;}
.ws9d{word-spacing:23.402400px;}
.ws90{word-spacing:24.225600px;}
.wsb9{word-spacing:24.931200px;}
.ws62{word-spacing:25.872000px;}
.ws13{word-spacing:27.812400px;}
.ws19{word-spacing:28.812000px;}
.ws1c{word-spacing:29.458800px;}
.ws2c{word-spacing:29.929200px;}
.ws3a{word-spacing:30.164400px;}
.wsb1{word-spacing:33.751200px;}
.wsa3{word-spacing:46.510800px;}
._10{margin-left:-7.965000px;}
._13{margin-left:-6.744050px;}
._2{margin-left:-5.623800px;}
._6{margin-left:-4.187275px;}
._1{margin-left:-2.340000px;}
._0{margin-left:-1.012800px;}
._5{width:1.681675px;}
._3{width:2.743200px;}
._8{width:4.511405px;}
._d{width:6.785525px;}
._a{width:8.573024px;}
._9{width:9.954845px;}
._f{width:14.868000px;}
._7{width:16.792788px;}
._c{width:18.369125px;}
._b{width:19.580400px;}
._12{width:22.727275px;}
._4{width:37.902635px;}
._11{width:44.687275px;}
._e{width:833.700146px;}
.fc5{color:transparent;}
.fc4{color:rgb(78,78,77);}
.fc3{color:rgb(85,85,84);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:14.074549px;}
.fsb{font-size:31.500000px;}
.fs10{font-size:36.000000px;}
.fs12{font-size:37.532410px;}
.fs11{font-size:39.900000px;}
.fs7{font-size:42.000000px;}
.fsd{font-size:43.318800px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:46.199999px;}
.fse{font-size:47.650800px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:51.982800px;}
.fsf{font-size:55.199999px;}
.fs8{font-size:58.800000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:61.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.fs9{font-size:97.248596px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:6.589142px;}
.y1f{bottom:79.008299px;}
.y1e{bottom:91.009799px;}
.y1b6{bottom:99.461998px;}
.y1d{bottom:103.011299px;}
.y16e{bottom:107.752353px;}
.y1c{bottom:115.012799px;}
.y1b4{bottom:115.974000px;}
.yd5{bottom:124.628095px;}
.yfe{bottom:124.649695px;}
.y16d{bottom:125.745153px;}
.y1b{bottom:127.014299px;}
.y1b2{bottom:133.764149px;}
.y1a{bottom:139.015799px;}
.y1b3{bottom:139.914000px;}
.y144{bottom:140.624405px;}
.yd4{bottom:142.620895px;}
.yfd{bottom:142.642495px;}
.y16c{bottom:143.737953px;}
.y19{bottom:151.017299px;}
.y1af{bottom:151.773148px;}
.yd3{bottom:160.628095px;}
.yfc{bottom:160.635295px;}
.y16b{bottom:161.759553px;}
.y18{bottom:163.018799px;}
.y1b1{bottom:167.479649px;}
.y1b0{bottom:168.058205px;}
.y1ad{bottom:168.927749px;}
.y75{bottom:178.620895px;}
.yfb{bottom:178.628095px;}
.y19e{bottom:179.737953px;}
.y16a{bottom:179.752353px;}
.y1b7{bottom:182.881943px;}
.y1ac{bottom:184.824749px;}
.y1ae{bottom:185.888248px;}
.y1aa{bottom:187.776139px;}
.y13e{bottom:189.470214px;}
.ya9{bottom:190.812595px;}
.y74{bottom:196.620895px;}
.yd2{bottom:196.628095px;}
.y169{bottom:197.745153px;}
.y42{bottom:200.893799px;}
.y13d{bottom:202.465854px;}
.y1a9{bottom:202.539139px;}
.y1ab{bottom:204.131400px;}
.y1a7{bottom:205.759204px;}
.y19d{bottom:206.737953px;}
.y143{bottom:208.435238px;}
.ya8{bottom:208.819807px;}
.y3a{bottom:209.543096px;}
.y13c{bottom:213.295554px;}
.y41{bottom:214.393799px;}
.yd1{bottom:214.620895px;}
.yfa{bottom:214.685695px;}
.y73{bottom:214.692895px;}
.y168{bottom:215.737953px;}
.y1a6{bottom:220.060204px;}
.y19c{bottom:220.237953px;}
.y142{bottom:220.347908px;}
.y1a8{bottom:221.440041px;}
.y1a4{bottom:223.765945px;}
.ya7{bottom:226.812607px;}
.y1f3{bottom:226.842750px;}
.y39{bottom:227.535896px;}
.y40{bottom:227.893799px;}
.y137{bottom:230.112900px;}
.yd0{bottom:232.664095px;}
.yf9{bottom:232.678495px;}
.y72{bottom:232.685695px;}
.y19b{bottom:233.737953px;}
.y167{bottom:233.745153px;}
.y1a3{bottom:237.636445px;}
.y1a5{bottom:238.801346px;}
.y1f2{bottom:240.342750px;}
.y1a0{bottom:241.768497px;}
.y1a2{bottom:241.773445px;}
.y141{bottom:244.191902px;}
.y136{bottom:244.193258px;}
.ya6{bottom:244.848607px;}
.y38{bottom:245.600719px;}
.y3f{bottom:245.893799px;}
.y19a{bottom:247.237953px;}
.ycf{bottom:250.656895px;}
.yf8{bottom:250.671295px;}
.y71{bottom:250.678495px;}
.y166{bottom:251.737953px;}
.y1f1{bottom:253.842750px;}
.y3e{bottom:254.893799px;}
.y19f{bottom:255.859497px;}
.y1a1{bottom:256.813042px;}
.y199{bottom:260.737953px;}
.ya5{bottom:262.841407px;}
.y37{bottom:263.593519px;}
.yce{bottom:268.649695px;}
.yf7{bottom:268.664095px;}
.y70{bottom:268.671295px;}
.y165{bottom:269.737953px;}
.y198{bottom:274.237953px;}
.ya4{bottom:280.834207px;}
.y36{bottom:281.586319px;}
.y1b5{bottom:282.343941px;}
.ycd{bottom:286.642495px;}
.yf6{bottom:286.656895px;}
.y6f{bottom:286.664095px;}
.y164{bottom:287.773953px;}
.y1f0{bottom:289.842773px;}
.y197{bottom:292.237953px;}
.y2a{bottom:298.795794px;}
.ya3{bottom:298.827007px;}
.y35{bottom:299.579119px;}
.y196{bottom:301.237930px;}
.y1ef{bottom:303.342773px;}
.ycc{bottom:304.635295px;}
.yf5{bottom:304.649695px;}
.y6e{bottom:304.656895px;}
.y163{bottom:305.766753px;}
.y29{bottom:316.788594px;}
.ya2{bottom:316.819807px;}
.y1ee{bottom:316.842773px;}
.y34{bottom:317.571919px;}
.ycb{bottom:322.628095px;}
.yf4{bottom:322.642495px;}
.y6d{bottom:322.649695px;}
.y162{bottom:323.759553px;}
.y195{bottom:328.237930px;}
.y13b{bottom:329.931423px;}
.y1ed{bottom:330.342773px;}
.y28{bottom:334.781394px;}
.ya1{bottom:334.812607px;}
.y33{bottom:335.564719px;}
.yca{bottom:340.620895px;}
.yf3{bottom:340.635295px;}
.y6c{bottom:340.642495px;}
.y13a{bottom:340.761123px;}
.y194{bottom:341.737930px;}
.y161{bottom:341.752353px;}
.y1ec{bottom:343.842773px;}
.y27{bottom:352.774194px;}
.ya0{bottom:352.812607px;}
.y32{bottom:353.557519px;}
.y139{bottom:353.756763px;}
.y140{bottom:355.316235px;}
.y1eb{bottom:357.342773px;}
.yc9{bottom:358.628095px;}
.y6b{bottom:358.635295px;}
.y160{bottom:359.745153px;}
.y138{bottom:366.752403px;}
.y13f{bottom:367.228905px;}
.y193{bottom:368.737930px;}
.y26{bottom:370.766994px;}
.y9f{bottom:370.841407px;}
.y1ea{bottom:370.842773px;}
.y31{bottom:371.550319px;}
.yc8{bottom:376.620895px;}
.y6a{bottom:376.628095px;}
.y15f{bottom:377.737953px;}
.y192{bottom:382.237930px;}
.y1e9{bottom:384.342773px;}
.y135{bottom:387.327896px;}
.y25{bottom:388.759794px;}
.y9e{bottom:388.834207px;}
.y30{bottom:389.543119px;}
.y69{bottom:394.620895px;}
.yc7{bottom:394.635295px;}
.yf2{bottom:394.649695px;}
.y15e{bottom:395.759530px;}
.y1e8{bottom:397.842773px;}
.y24{bottom:406.752594px;}
.y9d{bottom:406.827007px;}
.y2f{bottom:407.535919px;}
.y191{bottom:409.237930px;}
.y1e7{bottom:411.342773px;}
.y68{bottom:412.620895px;}
.yc6{bottom:412.628095px;}
.yf1{bottom:412.642495px;}
.y15d{bottom:413.752330px;}
.y190{bottom:422.737930px;}
.y23{bottom:424.759794px;}
.y9c{bottom:424.819807px;}
.y1e6{bottom:424.842773px;}
.y2e{bottom:425.597994px;}
.yc5{bottom:430.620895px;}
.y67{bottom:430.628095px;}
.yf0{bottom:430.635295px;}
.y15c{bottom:431.745130px;}
.y1e5{bottom:438.342773px;}
.y22{bottom:442.752594px;}
.y9b{bottom:442.812607px;}
.y2d{bottom:443.590794px;}
.y66{bottom:448.620895px;}
.yef{bottom:448.628095px;}
.y15b{bottom:449.737930px;}
.y1e4{bottom:451.842773px;}
.y21{bottom:460.752594px;}
.y9a{bottom:460.812607px;}
.y2c{bottom:461.583594px;}
.y134{bottom:462.358113px;}
.y1e3{bottom:465.342773px;}
.yee{bottom:466.620895px;}
.y65{bottom:466.635295px;}
.yc4{bottom:466.678495px;}
.y15a{bottom:467.745130px;}
.y133{bottom:473.187813px;}
.y20{bottom:478.752594px;}
.y99{bottom:478.812607px;}
.y1e2{bottom:478.842773px;}
.y2b{bottom:479.576394px;}
.yed{bottom:484.620895px;}
.y64{bottom:484.628095px;}
.yc3{bottom:484.671295px;}
.y159{bottom:485.737930px;}
.y18f{bottom:485.737976px;}
.y132{bottom:486.183453px;}
.y1e1{bottom:492.342773px;}
.y131{bottom:497.013153px;}
.y18e{bottom:499.237976px;}
.y63{bottom:502.620895px;}
.yec{bottom:502.656895px;}
.yc2{bottom:502.664095px;}
.y158{bottom:503.745130px;}
.y98{bottom:505.812607px;}
.y1e0{bottom:505.842773px;}
.y18d{bottom:512.737976px;}
.y130{bottom:513.314713px;}
.y1df{bottom:519.342773px;}
.y62{bottom:520.620895px;}
.yeb{bottom:520.649695px;}
.yc1{bottom:520.656895px;}
.y157{bottom:521.737930px;}
.y17{bottom:531.215057px;}
.y97{bottom:532.371744px;}
.y1de{bottom:532.842773px;}
.y61{bottom:538.642495px;}
.yc0{bottom:538.649695px;}
.y18c{bottom:539.737976px;}
.y156{bottom:539.752330px;}
.y96{bottom:545.871744px;}
.y1dd{bottom:546.342773px;}
.y18b{bottom:553.237976px;}
.y16{bottom:553.715057px;}
.y60{bottom:556.635295px;}
.ybf{bottom:556.642495px;}
.y155{bottom:557.745130px;}
.y95{bottom:559.371744px;}
.y1dc{bottom:559.842773px;}
.y18a{bottom:566.737976px;}
.y15{bottom:571.715057px;}
.y94{bottom:572.871744px;}
.y1db{bottom:573.342773px;}
.y5f{bottom:574.628095px;}
.ybe{bottom:574.635295px;}
.y154{bottom:575.737930px;}
.y189{bottom:580.237976px;}
.y93{bottom:586.371744px;}
.y1da{bottom:586.842773px;}
.y14{bottom:589.715057px;}
.y12f{bottom:592.252330px;}
.y5e{bottom:592.620895px;}
.ybd{bottom:592.628095px;}
.y188{bottom:593.737976px;}
.y118{bottom:593.745130px;}
.y153{bottom:593.773930px;}
.y92{bottom:599.871744px;}
.y1d9{bottom:600.342773px;}
.y187{bottom:607.237976px;}
.y13{bottom:607.715057px;}
.y12e{bottom:610.245130px;}
.y5d{bottom:610.620895px;}
.y117{bottom:611.737930px;}
.y152{bottom:611.766730px;}
.y1d8{bottom:613.842773px;}
.y91{bottom:618.099744px;}
.y186{bottom:620.737976px;}
.y12{bottom:625.715057px;}
.y1d7{bottom:627.342773px;}
.y12d{bottom:628.237930px;}
.ybc{bottom:628.620895px;}
.yea{bottom:628.628095px;}
.y5c{bottom:628.642495px;}
.y116{bottom:629.759530px;}
.y90{bottom:631.599744px;}
.y1d6{bottom:640.842773px;}
.y11{bottom:643.715057px;}
.y8f{bottom:645.099744px;}
.y12c{bottom:646.237930px;}
.ye9{bottom:646.620895px;}
.y5b{bottom:646.635295px;}
.y185{bottom:647.737976px;}
.y115{bottom:647.752330px;}
.y1d5{bottom:654.342773px;}
.y8e{bottom:658.599744px;}
.y184{bottom:661.237976px;}
.y10{bottom:661.715057px;}
.y5a{bottom:664.628095px;}
.ye8{bottom:664.642495px;}
.y114{bottom:665.745130px;}
.y1d4{bottom:667.842773px;}
.y8d{bottom:672.099744px;}
.y183{bottom:674.737976px;}
.yf{bottom:679.715057px;}
.y1d3{bottom:681.342773px;}
.y59{bottom:682.620895px;}
.ye7{bottom:682.635295px;}
.y113{bottom:683.737930px;}
.y8c{bottom:685.599744px;}
.y182{bottom:688.237976px;}
.y1d2{bottom:694.842773px;}
.ye{bottom:697.715057px;}
.y8b{bottom:699.099744px;}
.ye6{bottom:700.628095px;}
.ybb{bottom:700.642495px;}
.y58{bottom:700.692941px;}
.y12b{bottom:701.074376px;}
.y181{bottom:701.737976px;}
.y151{bottom:701.745130px;}
.y112{bottom:701.752330px;}
.y1d1{bottom:708.342773px;}
.yd{bottom:715.715057px;}
.y8a{bottom:717.243744px;}
.ye5{bottom:718.620895px;}
.yba{bottom:718.635295px;}
.y57{bottom:718.685741px;}
.y12a{bottom:719.067176px;}
.y150{bottom:719.737930px;}
.y111{bottom:719.745130px;}
.y1d0{bottom:721.842773px;}
.y180{bottom:728.737976px;}
.y89{bottom:730.743744px;}
.yc{bottom:733.715057px;}
.y1cf{bottom:735.342773px;}
.yb9{bottom:736.628095px;}
.ye4{bottom:736.649741px;}
.y56{bottom:736.678541px;}
.y129{bottom:737.059976px;}
.y110{bottom:737.737930px;}
.y14f{bottom:737.752376px;}
.y17f{bottom:742.237976px;}
.y88{bottom:744.243744px;}
.y1ce{bottom:748.842773px;}
.yb{bottom:751.715057px;}
.yb8{bottom:754.620895px;}
.ye3{bottom:754.642541px;}
.y55{bottom:754.671341px;}
.y128{bottom:755.052776px;}
.y17e{bottom:755.737976px;}
.y14e{bottom:755.745176px;}
.y10f{bottom:755.752376px;}
.y87{bottom:757.743744px;}
.y1cd{bottom:762.342773px;}
.y17d{bottom:769.237976px;}
.ya{bottom:769.715057px;}
.y86{bottom:771.243744px;}
.yb7{bottom:772.620941px;}
.ye2{bottom:772.635341px;}
.y54{bottom:772.664141px;}
.y127{bottom:773.045576px;}
.y14d{bottom:773.737976px;}
.y10e{bottom:773.745176px;}
.y1cc{bottom:775.842773px;}
.y9{bottom:787.715057px;}
.y1cb{bottom:789.342773px;}
.y85{bottom:789.399744px;}
.ye1{bottom:790.628141px;}
.yb6{bottom:790.642541px;}
.y53{bottom:790.656941px;}
.y126{bottom:791.038376px;}
.y10d{bottom:791.737976px;}
.y14c{bottom:791.752376px;}
.y17c{bottom:796.237976px;}
.y1ca{bottom:802.842773px;}
.y84{bottom:802.899744px;}
.ye0{bottom:808.620941px;}
.yb5{bottom:808.635341px;}
.y52{bottom:808.649741px;}
.y125{bottom:809.031176px;}
.y17b{bottom:809.737976px;}
.y10c{bottom:809.745176px;}
.y8{bottom:810.215057px;}
.y1c9{bottom:816.342773px;}
.y83{bottom:816.399744px;}
.y17a{bottom:823.237976px;}
.yb4{bottom:826.628141px;}
.y51{bottom:826.642541px;}
.ydf{bottom:826.678541px;}
.y124{bottom:827.023976px;}
.y10b{bottom:827.737976px;}
.y1c8{bottom:829.842773px;}
.y82{bottom:834.543744px;}
.y179{bottom:836.737976px;}
.y1c7{bottom:843.342773px;}
.yb3{bottom:844.620941px;}
.y50{bottom:844.635341px;}
.yde{bottom:844.671341px;}
.y123{bottom:845.016776px;}
.y14b{bottom:845.745176px;}
.y10a{bottom:845.766776px;}
.y81{bottom:848.043744px;}
.y178{bottom:850.237976px;}
.y1c6{bottom:856.842773px;}
.y80{bottom:861.543744px;}
.y4f{bottom:862.628141px;}
.yb2{bottom:862.642541px;}
.ydd{bottom:862.664141px;}
.y122{bottom:863.009576px;}
.y14a{bottom:863.737976px;}
.y109{bottom:863.759576px;}
.y1c5{bottom:870.342773px;}
.y7f{bottom:875.043744px;}
.y177{bottom:877.237976px;}
.y4e{bottom:880.620941px;}
.yb1{bottom:880.635341px;}
.ydc{bottom:880.656941px;}
.y121{bottom:881.002376px;}
.y108{bottom:881.752376px;}
.y149{bottom:881.759576px;}
.y7{bottom:882.548112px;}
.y1c4{bottom:883.842773px;}
.y7e{bottom:888.543744px;}
.y176{bottom:890.737976px;}
.y1c3{bottom:897.342773px;}
.y4d{bottom:898.628141px;}
.ydb{bottom:898.649741px;}
.y120{bottom:898.995176px;}
.y107{bottom:899.745176px;}
.y148{bottom:899.752376px;}
.y7d{bottom:902.043744px;}
.y6{bottom:903.552612px;}
.y1c2{bottom:910.842773px;}
.y7c{bottom:915.543744px;}
.y4c{bottom:916.620941px;}
.yda{bottom:916.642541px;}
.y11f{bottom:916.987976px;}
.y106{bottom:917.737976px;}
.y147{bottom:917.745176px;}
.y1c1{bottom:924.342773px;}
.y7b{bottom:933.687744px;}
.yb0{bottom:934.620941px;}
.yd9{bottom:934.635341px;}
.y4b{bottom:934.642541px;}
.y11e{bottom:934.995176px;}
.y146{bottom:935.737976px;}
.y105{bottom:935.745176px;}
.y175{bottom:935.788653px;}
.y1c0{bottom:937.842773px;}
.y5{bottom:939.565528px;}
.y7a{bottom:947.187744px;}
.y1bf{bottom:951.342773px;}
.yaf{bottom:952.628141px;}
.y4a{bottom:952.635341px;}
.y11d{bottom:952.987976px;}
.y104{bottom:953.737976px;}
.y145{bottom:953.773976px;}
.y174{bottom:953.781453px;}
.y79{bottom:960.687744px;}
.y1be{bottom:964.842773px;}
.yae{bottom:970.620941px;}
.y49{bottom:970.628141px;}
.y11c{bottom:970.995176px;}
.y103{bottom:971.766776px;}
.y173{bottom:971.774253px;}
.y78{bottom:974.187744px;}
.y1bd{bottom:978.342773px;}
.y4{bottom:978.553528px;}
.y77{bottom:987.687744px;}
.y48{bottom:988.620941px;}
.yad{bottom:988.642541px;}
.y11b{bottom:988.987976px;}
.y102{bottom:989.759576px;}
.y172{bottom:989.767053px;}
.y1bc{bottom:991.842773px;}
.y1bb{bottom:1005.342773px;}
.y47{bottom:1006.635341px;}
.yd8{bottom:1006.642815px;}
.y101{bottom:1007.752376px;}
.y171{bottom:1007.759853px;}
.y1ba{bottom:1018.842773px;}
.y46{bottom:1024.628141px;}
.yd7{bottom:1024.635615px;}
.y11a{bottom:1025.737976px;}
.y100{bottom:1025.745176px;}
.y170{bottom:1025.752653px;}
.y1b9{bottom:1032.342773px;}
.y3{bottom:1033.362579px;}
.y3b{bottom:1035.750183px;}
.y76{bottom:1041.837708px;}
.y45{bottom:1042.620941px;}
.yd6{bottom:1042.628415px;}
.yff{bottom:1043.737976px;}
.y119{bottom:1043.741523px;}
.y16f{bottom:1043.745453px;}
.y1b8{bottom:1045.842773px;}
.y3c{bottom:1109.827515px;}
.y2{bottom:1112.297079px;}
.yaa{bottom:1126.524628px;}
.y43{bottom:1126.524719px;}
.yac{bottom:1126.756989px;}
.y1{bottom:1126.925079px;}
.yab{bottom:1127.300079px;}
.y44{bottom:1127.304719px;}
.h26{height:10.640359px;}
.he{height:27.422999px;}
.h20{height:27.540000px;}
.h11{height:27.814500px;}
.h24{height:28.374502px;}
.h1e{height:29.988000px;}
.h22{height:30.324000px;}
.h23{height:30.523500px;}
.h17{height:31.536086px;}
.h1f{height:32.130000px;}
.h18{height:34.689782px;}
.h21{height:35.532000px;}
.hc{height:37.086000px;}
.h16{height:37.843478px;}
.h10{height:39.735000px;}
.hb{height:41.538000px;}
.h14{height:42.384000px;}
.h1d{height:42.840000px;}
.h1a{height:43.785000px;}
.h3{height:45.696000px;}
.h12{height:45.744000px;}
.h1c{height:45.814500px;}
.h13{height:46.704000px;}
.h2{height:47.232000px;}
.h19{height:47.472000px;}
.h9{height:52.980000px;}
.h1b{height:53.709599px;}
.h15{height:54.625200px;}
.hd{height:55.860000px;}
.ha{height:58.380000px;}
.h8{height:61.120200px;}
.h6{height:67.194379px;}
.h7{height:67.212379px;}
.hf{height:73.908933px;}
.h4{height:77.142000px;}
.h5{height:137.088000px;}
.h25{height:204.143990px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:248.188499px;}
.w3{width:344.762993px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:12.796051px;}
.x1{left:84.933002px;}
.x2{left:92.734348px;}
.x3{left:94.683150px;}
.xa{left:97.034552px;}
.x24{left:107.539352px;}
.x21{left:139.550400px;}
.x23{left:140.704651px;}
.x11{left:222.094940px;}
.x17{left:251.080490px;}
.x16{left:253.006050px;}
.x4{left:270.817497px;}
.x15{left:276.531767px;}
.xf{left:409.087646px;}
.x10{left:415.271405px;}
.xe{left:435.930130px;}
.x6{left:457.092894px;}
.x1e{left:463.109985px;}
.xb{left:466.086594px;}
.x5{left:469.088094px;}
.xc{left:472.086594px;}
.x1d{left:475.906036px;}
.x1c{left:476.938660px;}
.x18{left:483.529633px;}
.xd{left:487.074594px;}
.x19{left:490.386133px;}
.x1a{left:493.103989px;}
.x13{left:496.110168px;}
.x14{left:503.132413px;}
.x12{left:546.064745px;}
.x8{left:560.827515px;}
.x20{left:602.660385px;}
.x22{left:603.814636px;}
.x1b{left:660.952332px;}
.x7{left:694.929886px;}
.x9{left:753.380081px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v4{vertical-align:-13.954494pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.322667pt;}
.v6{vertical-align:3.024000pt;}
.v5{vertical-align:16.000000pt;}
.v2{vertical-align:23.466471pt;}
.ls7{letter-spacing:-4.149273pt;}
.lsf{letter-spacing:-1.045333pt;}
.ls6{letter-spacing:-0.933333pt;}
.lse{letter-spacing:-0.418133pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000001pt;}
.ls2{letter-spacing:0.000035pt;}
.ls11{letter-spacing:0.000063pt;}
.ls1{letter-spacing:0.000156pt;}
.ls13{letter-spacing:0.133449pt;}
.ls14{letter-spacing:0.200173pt;}
.ls10{letter-spacing:0.731733pt;}
.lsb{letter-spacing:0.946007pt;}
.ls15{letter-spacing:1.000864pt;}
.lsd{letter-spacing:1.003520pt;}
.ls9{letter-spacing:1.040065pt;}
.ls3{letter-spacing:1.045333pt;}
.lsa{letter-spacing:1.097600pt;}
.lsc{letter-spacing:1.102817pt;}
.ls8{letter-spacing:1.160270pt;}
.ls12{letter-spacing:1.668107pt;}
.ls0{letter-spacing:4.853333pt;}
.ws1{word-spacing:-18.858667pt;}
.wsa9{word-spacing:-13.014400pt;}
.wsa1{word-spacing:-12.387200pt;}
.ws58{word-spacing:-12.282667pt;}
.ws59{word-spacing:-11.237333pt;}
.ws3{word-spacing:-11.096533pt;}
.ws5{word-spacing:-11.040000pt;}
.wsdf{word-spacing:-10.942783pt;}
.wsde{word-spacing:-10.275540pt;}
.wsbc{word-spacing:-10.156800pt;}
.wsdd{word-spacing:-9.474848pt;}
.wsdc{word-spacing:-9.408124pt;}
.ws0{word-spacing:-9.045333pt;}
.ws2{word-spacing:-8.993600pt;}
.ws21{word-spacing:-8.832000pt;}
.wse1{word-spacing:-8.760000pt;}
.wsbb{word-spacing:-8.280000pt;}
.ws7{word-spacing:-7.242667pt;}
.wsda{word-spacing:-7.080000pt;}
.wsbd{word-spacing:-6.132000pt;}
.wse0{word-spacing:-1.668107pt;}
.wsdb{word-spacing:-1.400000pt;}
.ws2b{word-spacing:-1.045333pt;}
.wsa8{word-spacing:-0.731733pt;}
.ws7a{word-spacing:-0.365867pt;}
.ws3d{word-spacing:-0.261333pt;}
.wsb4{word-spacing:-0.209067pt;}
.ws7c{word-spacing:-0.156800pt;}
.wsd8{word-spacing:-0.120000pt;}
.ws4{word-spacing:-0.053333pt;}
.wsaf{word-spacing:-0.052267pt;}
.wsd9{word-spacing:-0.040000pt;}
.ws6{word-spacing:0.000000pt;}
.ws56{word-spacing:0.104533pt;}
.ws17{word-spacing:0.261333pt;}
.ws7e{word-spacing:0.365867pt;}
.ws43{word-spacing:0.522667pt;}
.ws8e{word-spacing:0.574933pt;}
.wse{word-spacing:0.784000pt;}
.ws5b{word-spacing:0.888533pt;}
.ws7f{word-spacing:0.993067pt;}
.ws51{word-spacing:1.306667pt;}
.ws38{word-spacing:1.463467pt;}
.ws32{word-spacing:1.620267pt;}
.ws6a{word-spacing:1.829333pt;}
.wsd3{word-spacing:1.881600pt;}
.ws52{word-spacing:1.933867pt;}
.ws25{word-spacing:1.986133pt;}
.ws5a{word-spacing:2.038400pt;}
.wsc{word-spacing:2.090667pt;}
.ws64{word-spacing:2.142933pt;}
.ws4f{word-spacing:2.195200pt;}
.ws50{word-spacing:2.247467pt;}
.ws9{word-spacing:2.299733pt;}
.wsc5{word-spacing:2.352000pt;}
.ws2a{word-spacing:2.456533pt;}
.ws69{word-spacing:2.561067pt;}
.ws53{word-spacing:2.665600pt;}
.ws81{word-spacing:2.717867pt;}
.ws61{word-spacing:2.874667pt;}
.ws16{word-spacing:3.031467pt;}
.ws4e{word-spacing:3.136000pt;}
.ws57{word-spacing:3.188267pt;}
.wsc3{word-spacing:3.240533pt;}
.ws15{word-spacing:3.292800pt;}
.ws6f{word-spacing:3.345067pt;}
.ws3c{word-spacing:3.397333pt;}
.ws3f{word-spacing:3.449600pt;}
.ws2e{word-spacing:3.501867pt;}
.ws47{word-spacing:3.606400pt;}
.ws83{word-spacing:3.763200pt;}
.wsa4{word-spacing:3.867733pt;}
.ws30{word-spacing:3.972267pt;}
.ws63{word-spacing:4.024533pt;}
.ws5f{word-spacing:4.129067pt;}
.wsa{word-spacing:4.181333pt;}
.ws9e{word-spacing:4.233600pt;}
.wsd1{word-spacing:4.390400pt;}
.ws85{word-spacing:4.442667pt;}
.wsb0{word-spacing:4.494933pt;}
.ws79{word-spacing:4.547200pt;}
.wsa6{word-spacing:4.599467pt;}
.ws78{word-spacing:4.704000pt;}
.ws29{word-spacing:4.808533pt;}
.ws55{word-spacing:4.913067pt;}
.wsbf{word-spacing:4.965333pt;}
.ws8{word-spacing:5.122133pt;}
.wsbe{word-spacing:5.174400pt;}
.ws3e{word-spacing:5.226667pt;}
.ws89{word-spacing:5.278933pt;}
.ws1b{word-spacing:5.383467pt;}
.ws60{word-spacing:5.435733pt;}
.wsc0{word-spacing:5.592533pt;}
.ws7b{word-spacing:5.644800pt;}
.ws68{word-spacing:5.801600pt;}
.ws42{word-spacing:5.853867pt;}
.ws6e{word-spacing:5.906133pt;}
.ws24{word-spacing:5.958400pt;}
.ws54{word-spacing:6.062933pt;}
.ws75{word-spacing:6.115200pt;}
.ws26{word-spacing:6.167467pt;}
.ws65{word-spacing:6.219733pt;}
.ws22{word-spacing:6.376533pt;}
.ws6d{word-spacing:6.428800pt;}
.wsb2{word-spacing:6.481067pt;}
.ws87{word-spacing:6.533333pt;}
.ws28{word-spacing:6.585600pt;}
.wsb{word-spacing:6.637867pt;}
.ws82{word-spacing:6.846933pt;}
.ws48{word-spacing:7.108267pt;}
.ws8c{word-spacing:7.160533pt;}
.wsc7{word-spacing:7.265067pt;}
.ws34{word-spacing:7.317333pt;}
.wsd2{word-spacing:7.474133pt;}
.wsad{word-spacing:7.526400pt;}
.ws35{word-spacing:7.578667pt;}
.ws97{word-spacing:7.630933pt;}
.wsb8{word-spacing:7.683200pt;}
.ws1a{word-spacing:7.735467pt;}
.ws2d{word-spacing:7.840000pt;}
.wsb3{word-spacing:7.944533pt;}
.ws14{word-spacing:7.996800pt;}
.ws80{word-spacing:8.049067pt;}
.ws44{word-spacing:8.205867pt;}
.ws94{word-spacing:8.310400pt;}
.ws99{word-spacing:8.362667pt;}
.wsd5{word-spacing:8.467200pt;}
.ws46{word-spacing:8.519467pt;}
.wsf{word-spacing:8.571733pt;}
.ws20{word-spacing:8.728533pt;}
.ws73{word-spacing:8.989867pt;}
.ws39{word-spacing:9.042133pt;}
.wsd7{word-spacing:9.094400pt;}
.ws7d{word-spacing:9.146667pt;}
.ws71{word-spacing:9.198933pt;}
.ws49{word-spacing:9.303467pt;}
.ws2f{word-spacing:9.355733pt;}
.ws77{word-spacing:9.460267pt;}
.ws95{word-spacing:9.564800pt;}
.wsb6{word-spacing:9.669333pt;}
.ws72{word-spacing:9.721600pt;}
.ws45{word-spacing:9.826133pt;}
.ws93{word-spacing:9.930667pt;}
.ws96{word-spacing:9.982933pt;}
.ws41{word-spacing:10.139733pt;}
.ws8a{word-spacing:10.244267pt;}
.ws40{word-spacing:10.401067pt;}
.wscc{word-spacing:10.453333pt;}
.wsb7{word-spacing:10.610133pt;}
.ws23{word-spacing:10.662400pt;}
.wsc8{word-spacing:10.714667pt;}
.wsae{word-spacing:10.766933pt;}
.ws5e{word-spacing:10.819200pt;}
.ws12{word-spacing:10.871467pt;}
.ws9b{word-spacing:10.923733pt;}
.ws8f{word-spacing:11.080533pt;}
.ws8d{word-spacing:11.237333pt;}
.ws76{word-spacing:11.341867pt;}
.ws1e{word-spacing:11.446400pt;}
.ws74{word-spacing:11.550933pt;}
.wsa2{word-spacing:11.603200pt;}
.wsab{word-spacing:11.655467pt;}
.ws4d{word-spacing:11.760000pt;}
.wsd4{word-spacing:11.969067pt;}
.ws4c{word-spacing:12.230400pt;}
.ws31{word-spacing:12.282667pt;}
.ws18{word-spacing:12.334933pt;}
.ws36{word-spacing:12.387200pt;}
.ws3b{word-spacing:12.596267pt;}
.ws27{word-spacing:12.648533pt;}
.ws10{word-spacing:12.753067pt;}
.wsb5{word-spacing:12.857600pt;}
.ws86{word-spacing:12.909867pt;}
.ws67{word-spacing:13.014400pt;}
.wscb{word-spacing:13.275733pt;}
.ws5d{word-spacing:13.380267pt;}
.wsd0{word-spacing:13.432533pt;}
.wsa5{word-spacing:13.537067pt;}
.ws4a{word-spacing:13.589333pt;}
.ws8b{word-spacing:13.641600pt;}
.ws9c{word-spacing:13.746133pt;}
.ws4b{word-spacing:13.850667pt;}
.wsca{word-spacing:14.007467pt;}
.wscd{word-spacing:14.112000pt;}
.ws9a{word-spacing:14.321067pt;}
.wsc9{word-spacing:14.425600pt;}
.ws37{word-spacing:14.530133pt;}
.wsba{word-spacing:14.634667pt;}
.wsce{word-spacing:14.791467pt;}
.wsa7{word-spacing:14.896000pt;}
.wscf{word-spacing:14.948267pt;}
.wsac{word-spacing:15.000533pt;}
.ws70{word-spacing:15.157333pt;}
.wsc2{word-spacing:15.366400pt;}
.ws1f{word-spacing:15.418667pt;}
.ws11{word-spacing:15.575467pt;}
.wsc1{word-spacing:15.627733pt;}
.ws84{word-spacing:15.836800pt;}
.wsc6{word-spacing:15.993600pt;}
.ws88{word-spacing:16.150400pt;}
.ws98{word-spacing:16.202667pt;}
.ws5c{word-spacing:16.254933pt;}
.ws66{word-spacing:16.411733pt;}
.ws9f{word-spacing:16.464000pt;}
.ws6c{word-spacing:16.568533pt;}
.ws91{word-spacing:16.673067pt;}
.ws6b{word-spacing:16.934400pt;}
.wsd6{word-spacing:17.509333pt;}
.ws1d{word-spacing:17.770667pt;}
.wsd{word-spacing:17.822933pt;}
.wsc4{word-spacing:18.554667pt;}
.ws92{word-spacing:18.920533pt;}
.wsaa{word-spacing:19.547733pt;}
.ws33{word-spacing:19.809067pt;}
.wsa0{word-spacing:20.122667pt;}
.ws9d{word-spacing:20.802133pt;}
.ws90{word-spacing:21.533867pt;}
.wsb9{word-spacing:22.161067pt;}
.ws62{word-spacing:22.997333pt;}
.ws13{word-spacing:24.722133pt;}
.ws19{word-spacing:25.610667pt;}
.ws1c{word-spacing:26.185600pt;}
.ws2c{word-spacing:26.603733pt;}
.ws3a{word-spacing:26.812800pt;}
.wsb1{word-spacing:30.001067pt;}
.wsa3{word-spacing:41.342933pt;}
._10{margin-left:-7.080000pt;}
._13{margin-left:-5.994711pt;}
._2{margin-left:-4.998933pt;}
._6{margin-left:-3.722022pt;}
._1{margin-left:-2.080000pt;}
._0{margin-left:-0.900267pt;}
._5{width:1.494822pt;}
._3{width:2.438400pt;}
._8{width:4.010138pt;}
._d{width:6.031578pt;}
._a{width:7.620466pt;}
._9{width:8.848751pt;}
._f{width:13.216000pt;}
._7{width:14.926923pt;}
._c{width:16.328111pt;}
._b{width:17.404800pt;}
._12{width:20.202022pt;}
._4{width:33.691231pt;}
._11{width:39.722022pt;}
._e{width:741.066797pt;}
.fs13{font-size:12.510710pt;}
.fsb{font-size:28.000000pt;}
.fs10{font-size:32.000000pt;}
.fs12{font-size:33.362142pt;}
.fs11{font-size:35.466667pt;}
.fs7{font-size:37.333333pt;}
.fsd{font-size:38.505600pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:41.066666pt;}
.fse{font-size:42.356267pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:46.206933pt;}
.fsf{font-size:49.066666pt;}
.fs8{font-size:52.266667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:54.933333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.fs9{font-size:86.443197pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:5.857015pt;}
.y1f{bottom:70.229599pt;}
.y1e{bottom:80.897599pt;}
.y1b6{bottom:88.410665pt;}
.y1d{bottom:91.565599pt;}
.y16e{bottom:95.779869pt;}
.y1c{bottom:102.233599pt;}
.y1b4{bottom:103.088000pt;}
.yd5{bottom:110.780529pt;}
.yfe{bottom:110.799729pt;}
.y16d{bottom:111.773469pt;}
.y1b{bottom:112.901599pt;}
.y1b2{bottom:118.901465pt;}
.y1a{bottom:123.569599pt;}
.y1b3{bottom:124.368000pt;}
.y144{bottom:124.999471pt;}
.yd4{bottom:126.774129pt;}
.yfd{bottom:126.793329pt;}
.y16c{bottom:127.767069pt;}
.y19{bottom:134.237599pt;}
.y1af{bottom:134.909465pt;}
.yd3{bottom:142.780529pt;}
.yfc{bottom:142.786929pt;}
.y16b{bottom:143.786269pt;}
.y18{bottom:144.905599pt;}
.y1b1{bottom:148.870799pt;}
.y1b0{bottom:149.385071pt;}
.y1ad{bottom:150.157999pt;}
.y75{bottom:158.774129pt;}
.yfb{bottom:158.780529pt;}
.y19e{bottom:159.767069pt;}
.y16a{bottom:159.779869pt;}
.y1b7{bottom:162.561727pt;}
.y1ac{bottom:164.288666pt;}
.y1ae{bottom:165.233999pt;}
.y1aa{bottom:166.912123pt;}
.y13e{bottom:168.417968pt;}
.ya9{bottom:169.611196pt;}
.y74{bottom:174.774129pt;}
.yd2{bottom:174.780529pt;}
.y169{bottom:175.773469pt;}
.y42{bottom:178.572266pt;}
.y13d{bottom:179.969648pt;}
.y1a9{bottom:180.034790pt;}
.y1ab{bottom:181.450133pt;}
.y1a7{bottom:182.897070pt;}
.y19d{bottom:183.767069pt;}
.y143{bottom:185.275767pt;}
.ya8{bottom:185.617606pt;}
.y3a{bottom:186.260530pt;}
.y13c{bottom:189.596048pt;}
.y41{bottom:190.572266pt;}
.yd1{bottom:190.774129pt;}
.yfa{bottom:190.831729pt;}
.y73{bottom:190.838129pt;}
.y168{bottom:191.767069pt;}
.y1a6{bottom:195.609070pt;}
.y19c{bottom:195.767069pt;}
.y142{bottom:195.864807pt;}
.y1a8{bottom:196.835592pt;}
.y1a4{bottom:198.903062pt;}
.ya7{bottom:201.611206pt;}
.y1f3{bottom:201.638000pt;}
.y39{bottom:202.254130pt;}
.y40{bottom:202.572266pt;}
.y137{bottom:204.544800pt;}
.yd0{bottom:206.812529pt;}
.yf9{bottom:206.825329pt;}
.y72{bottom:206.831729pt;}
.y19b{bottom:207.767069pt;}
.y167{bottom:207.773469pt;}
.y1a3{bottom:211.232396pt;}
.y1a5{bottom:212.267863pt;}
.y1f2{bottom:213.638000pt;}
.y1a0{bottom:214.905331pt;}
.y1a2{bottom:214.909729pt;}
.y141{bottom:217.059469pt;}
.y136{bottom:217.060674pt;}
.ya6{bottom:217.643206pt;}
.y38{bottom:218.311750pt;}
.y3f{bottom:218.572266pt;}
.y19a{bottom:219.767069pt;}
.ycf{bottom:222.806129pt;}
.yf8{bottom:222.818929pt;}
.y71{bottom:222.825329pt;}
.y166{bottom:223.767069pt;}
.y1f1{bottom:225.638000pt;}
.y3e{bottom:226.572266pt;}
.y19f{bottom:227.430664pt;}
.y1a1{bottom:228.278259pt;}
.y199{bottom:231.767069pt;}
.ya5{bottom:233.636806pt;}
.y37{bottom:234.305350pt;}
.yce{bottom:238.799729pt;}
.yf7{bottom:238.812529pt;}
.y70{bottom:238.818929pt;}
.y165{bottom:239.767069pt;}
.y198{bottom:243.767069pt;}
.ya4{bottom:249.630406pt;}
.y36{bottom:250.298950pt;}
.y1b5{bottom:250.972392pt;}
.ycd{bottom:254.793329pt;}
.yf6{bottom:254.806129pt;}
.y6f{bottom:254.812529pt;}
.y164{bottom:255.799069pt;}
.y1f0{bottom:257.638021pt;}
.y197{bottom:259.767069pt;}
.y2a{bottom:265.596261pt;}
.ya3{bottom:265.624006pt;}
.y35{bottom:266.292550pt;}
.y196{bottom:267.767049pt;}
.y1ef{bottom:269.638021pt;}
.ycc{bottom:270.786929pt;}
.yf5{bottom:270.799729pt;}
.y6e{bottom:270.806129pt;}
.y163{bottom:271.792669pt;}
.y29{bottom:281.589861pt;}
.ya2{bottom:281.617606pt;}
.y1ee{bottom:281.638021pt;}
.y34{bottom:282.286150pt;}
.ycb{bottom:286.780529pt;}
.yf4{bottom:286.793329pt;}
.y6d{bottom:286.799729pt;}
.y162{bottom:287.786269pt;}
.y195{bottom:291.767049pt;}
.y13b{bottom:293.272376pt;}
.y1ed{bottom:293.638021pt;}
.y28{bottom:297.583461pt;}
.ya1{bottom:297.611206pt;}
.y33{bottom:298.279750pt;}
.yca{bottom:302.774129pt;}
.yf3{bottom:302.786929pt;}
.y6c{bottom:302.793329pt;}
.y13a{bottom:302.898776pt;}
.y194{bottom:303.767049pt;}
.y161{bottom:303.779869pt;}
.y1ec{bottom:305.638021pt;}
.y27{bottom:313.577061pt;}
.ya0{bottom:313.611206pt;}
.y32{bottom:314.273350pt;}
.y139{bottom:314.450456pt;}
.y140{bottom:315.836654pt;}
.y1eb{bottom:317.638021pt;}
.yc9{bottom:318.780529pt;}
.y6b{bottom:318.786929pt;}
.y160{bottom:319.773469pt;}
.y138{bottom:326.002136pt;}
.y13f{bottom:326.425694pt;}
.y193{bottom:327.767049pt;}
.y26{bottom:329.570661pt;}
.y9f{bottom:329.636806pt;}
.y1ea{bottom:329.638021pt;}
.y31{bottom:330.266950pt;}
.yc8{bottom:334.774129pt;}
.y6a{bottom:334.780529pt;}
.y15f{bottom:335.767069pt;}
.y192{bottom:339.767049pt;}
.y1e9{bottom:341.638021pt;}
.y135{bottom:344.291463pt;}
.y25{bottom:345.564261pt;}
.y9e{bottom:345.630406pt;}
.y30{bottom:346.260550pt;}
.y69{bottom:350.774129pt;}
.yc7{bottom:350.786929pt;}
.yf2{bottom:350.799729pt;}
.y15e{bottom:351.786249pt;}
.y1e8{bottom:353.638021pt;}
.y24{bottom:361.557861pt;}
.y9d{bottom:361.624006pt;}
.y2f{bottom:362.254150pt;}
.y191{bottom:363.767049pt;}
.y1e7{bottom:365.638021pt;}
.y68{bottom:366.774129pt;}
.yc6{bottom:366.780529pt;}
.yf1{bottom:366.793329pt;}
.y15d{bottom:367.779849pt;}
.y190{bottom:375.767049pt;}
.y23{bottom:377.564261pt;}
.y9c{bottom:377.617606pt;}
.y1e6{bottom:377.638021pt;}
.y2e{bottom:378.309328pt;}
.yc5{bottom:382.774129pt;}
.y67{bottom:382.780529pt;}
.yf0{bottom:382.786929pt;}
.y15c{bottom:383.773449pt;}
.y1e5{bottom:389.638021pt;}
.y22{bottom:393.557861pt;}
.y9b{bottom:393.611206pt;}
.y2d{bottom:394.302928pt;}
.y66{bottom:398.774129pt;}
.yef{bottom:398.780529pt;}
.y15b{bottom:399.767049pt;}
.y1e4{bottom:401.638021pt;}
.y21{bottom:409.557861pt;}
.y9a{bottom:409.611206pt;}
.y2c{bottom:410.296528pt;}
.y134{bottom:410.984989pt;}
.y1e3{bottom:413.638021pt;}
.yee{bottom:414.774129pt;}
.y65{bottom:414.786929pt;}
.yc4{bottom:414.825329pt;}
.y15a{bottom:415.773449pt;}
.y133{bottom:420.611389pt;}
.y20{bottom:425.557861pt;}
.y99{bottom:425.611206pt;}
.y1e2{bottom:425.638021pt;}
.y2b{bottom:426.290128pt;}
.yed{bottom:430.774129pt;}
.y64{bottom:430.780529pt;}
.yc3{bottom:430.818929pt;}
.y159{bottom:431.767049pt;}
.y18f{bottom:431.767090pt;}
.y132{bottom:432.163069pt;}
.y1e1{bottom:437.638021pt;}
.y131{bottom:441.789469pt;}
.y18e{bottom:443.767090pt;}
.y63{bottom:446.774129pt;}
.yec{bottom:446.806129pt;}
.yc2{bottom:446.812529pt;}
.y158{bottom:447.773449pt;}
.y98{bottom:449.611206pt;}
.y1e0{bottom:449.638021pt;}
.y18d{bottom:455.767090pt;}
.y130{bottom:456.279744pt;}
.y1df{bottom:461.638021pt;}
.y62{bottom:462.774129pt;}
.yeb{bottom:462.799729pt;}
.yc1{bottom:462.806129pt;}
.y157{bottom:463.767049pt;}
.y17{bottom:472.191162pt;}
.y97{bottom:473.219328pt;}
.y1de{bottom:473.638021pt;}
.y61{bottom:478.793329pt;}
.yc0{bottom:478.799729pt;}
.y18c{bottom:479.767090pt;}
.y156{bottom:479.779849pt;}
.y96{bottom:485.219328pt;}
.y1dd{bottom:485.638021pt;}
.y18b{bottom:491.767090pt;}
.y16{bottom:492.191162pt;}
.y60{bottom:494.786929pt;}
.ybf{bottom:494.793329pt;}
.y155{bottom:495.773449pt;}
.y95{bottom:497.219328pt;}
.y1dc{bottom:497.638021pt;}
.y18a{bottom:503.767090pt;}
.y15{bottom:508.191162pt;}
.y94{bottom:509.219328pt;}
.y1db{bottom:509.638021pt;}
.y5f{bottom:510.780529pt;}
.ybe{bottom:510.786929pt;}
.y154{bottom:511.767049pt;}
.y189{bottom:515.767090pt;}
.y93{bottom:521.219328pt;}
.y1da{bottom:521.638021pt;}
.y14{bottom:524.191162pt;}
.y12f{bottom:526.446516pt;}
.y5e{bottom:526.774129pt;}
.ybd{bottom:526.780529pt;}
.y188{bottom:527.767090pt;}
.y118{bottom:527.773449pt;}
.y153{bottom:527.799049pt;}
.y92{bottom:533.219328pt;}
.y1d9{bottom:533.638021pt;}
.y187{bottom:539.767090pt;}
.y13{bottom:540.191162pt;}
.y12e{bottom:542.440116pt;}
.y5d{bottom:542.774129pt;}
.y117{bottom:543.767049pt;}
.y152{bottom:543.792649pt;}
.y1d8{bottom:545.638021pt;}
.y91{bottom:549.421995pt;}
.y186{bottom:551.767090pt;}
.y12{bottom:556.191162pt;}
.y1d7{bottom:557.638021pt;}
.y12d{bottom:558.433716pt;}
.ybc{bottom:558.774129pt;}
.yea{bottom:558.780529pt;}
.y5c{bottom:558.793329pt;}
.y116{bottom:559.786249pt;}
.y90{bottom:561.421995pt;}
.y1d6{bottom:569.638021pt;}
.y11{bottom:572.191162pt;}
.y8f{bottom:573.421995pt;}
.y12c{bottom:574.433716pt;}
.ye9{bottom:574.774129pt;}
.y5b{bottom:574.786929pt;}
.y185{bottom:575.767090pt;}
.y115{bottom:575.779849pt;}
.y1d5{bottom:581.638021pt;}
.y8e{bottom:585.421995pt;}
.y184{bottom:587.767090pt;}
.y10{bottom:588.191162pt;}
.y5a{bottom:590.780529pt;}
.ye8{bottom:590.793329pt;}
.y114{bottom:591.773449pt;}
.y1d4{bottom:593.638021pt;}
.y8d{bottom:597.421995pt;}
.y183{bottom:599.767090pt;}
.yf{bottom:604.191162pt;}
.y1d3{bottom:605.638021pt;}
.y59{bottom:606.774129pt;}
.ye7{bottom:606.786929pt;}
.y113{bottom:607.767049pt;}
.y8c{bottom:609.421995pt;}
.y182{bottom:611.767090pt;}
.y1d2{bottom:617.638021pt;}
.ye{bottom:620.191162pt;}
.y8b{bottom:621.421995pt;}
.ye6{bottom:622.780529pt;}
.ybb{bottom:622.793329pt;}
.y58{bottom:622.838170pt;}
.y12b{bottom:623.177223pt;}
.y181{bottom:623.767090pt;}
.y151{bottom:623.773449pt;}
.y112{bottom:623.779849pt;}
.y1d1{bottom:629.638021pt;}
.yd{bottom:636.191162pt;}
.y8a{bottom:637.549995pt;}
.ye5{bottom:638.774129pt;}
.yba{bottom:638.786929pt;}
.y57{bottom:638.831770pt;}
.y12a{bottom:639.170823pt;}
.y150{bottom:639.767049pt;}
.y111{bottom:639.773449pt;}
.y1d0{bottom:641.638021pt;}
.y180{bottom:647.767090pt;}
.y89{bottom:649.549995pt;}
.yc{bottom:652.191162pt;}
.y1cf{bottom:653.638021pt;}
.yb9{bottom:654.780529pt;}
.ye4{bottom:654.799770pt;}
.y56{bottom:654.825370pt;}
.y129{bottom:655.164423pt;}
.y110{bottom:655.767049pt;}
.y14f{bottom:655.779890pt;}
.y17f{bottom:659.767090pt;}
.y88{bottom:661.549995pt;}
.y1ce{bottom:665.638021pt;}
.yb{bottom:668.191162pt;}
.yb8{bottom:670.774129pt;}
.ye3{bottom:670.793370pt;}
.y55{bottom:670.818970pt;}
.y128{bottom:671.158023pt;}
.y17e{bottom:671.767090pt;}
.y14e{bottom:671.773490pt;}
.y10f{bottom:671.779890pt;}
.y87{bottom:673.549995pt;}
.y1cd{bottom:677.638021pt;}
.y17d{bottom:683.767090pt;}
.ya{bottom:684.191162pt;}
.y86{bottom:685.549995pt;}
.yb7{bottom:686.774170pt;}
.ye2{bottom:686.786970pt;}
.y54{bottom:686.812570pt;}
.y127{bottom:687.151623pt;}
.y14d{bottom:687.767090pt;}
.y10e{bottom:687.773490pt;}
.y1cc{bottom:689.638021pt;}
.y9{bottom:700.191162pt;}
.y1cb{bottom:701.638021pt;}
.y85{bottom:701.688661pt;}
.ye1{bottom:702.780570pt;}
.yb6{bottom:702.793370pt;}
.y53{bottom:702.806170pt;}
.y126{bottom:703.145223pt;}
.y10d{bottom:703.767090pt;}
.y14c{bottom:703.779890pt;}
.y17c{bottom:707.767090pt;}
.y1ca{bottom:713.638021pt;}
.y84{bottom:713.688661pt;}
.ye0{bottom:718.774170pt;}
.yb5{bottom:718.786970pt;}
.y52{bottom:718.799770pt;}
.y125{bottom:719.138823pt;}
.y17b{bottom:719.767090pt;}
.y10c{bottom:719.773490pt;}
.y8{bottom:720.191162pt;}
.y1c9{bottom:725.638021pt;}
.y83{bottom:725.688661pt;}
.y17a{bottom:731.767090pt;}
.yb4{bottom:734.780570pt;}
.y51{bottom:734.793370pt;}
.ydf{bottom:734.825370pt;}
.y124{bottom:735.132423pt;}
.y10b{bottom:735.767090pt;}
.y1c8{bottom:737.638021pt;}
.y82{bottom:741.816661pt;}
.y179{bottom:743.767090pt;}
.y1c7{bottom:749.638021pt;}
.yb3{bottom:750.774170pt;}
.y50{bottom:750.786970pt;}
.yde{bottom:750.818970pt;}
.y123{bottom:751.126023pt;}
.y14b{bottom:751.773490pt;}
.y10a{bottom:751.792690pt;}
.y81{bottom:753.816661pt;}
.y178{bottom:755.767090pt;}
.y1c6{bottom:761.638021pt;}
.y80{bottom:765.816661pt;}
.y4f{bottom:766.780570pt;}
.yb2{bottom:766.793370pt;}
.ydd{bottom:766.812570pt;}
.y122{bottom:767.119623pt;}
.y14a{bottom:767.767090pt;}
.y109{bottom:767.786290pt;}
.y1c5{bottom:773.638021pt;}
.y7f{bottom:777.816661pt;}
.y177{bottom:779.767090pt;}
.y4e{bottom:782.774170pt;}
.yb1{bottom:782.786970pt;}
.ydc{bottom:782.806170pt;}
.y121{bottom:783.113223pt;}
.y108{bottom:783.779890pt;}
.y149{bottom:783.786290pt;}
.y7{bottom:784.487211pt;}
.y1c4{bottom:785.638021pt;}
.y7e{bottom:789.816661pt;}
.y176{bottom:791.767090pt;}
.y1c3{bottom:797.638021pt;}
.y4d{bottom:798.780570pt;}
.ydb{bottom:798.799770pt;}
.y120{bottom:799.106823pt;}
.y107{bottom:799.773490pt;}
.y148{bottom:799.779890pt;}
.y7d{bottom:801.816661pt;}
.y6{bottom:803.157878pt;}
.y1c2{bottom:809.638021pt;}
.y7c{bottom:813.816661pt;}
.y4c{bottom:814.774170pt;}
.yda{bottom:814.793370pt;}
.y11f{bottom:815.100423pt;}
.y106{bottom:815.767090pt;}
.y147{bottom:815.773490pt;}
.y1c1{bottom:821.638021pt;}
.y7b{bottom:829.944661pt;}
.yb0{bottom:830.774170pt;}
.yd9{bottom:830.786970pt;}
.y4b{bottom:830.793370pt;}
.y11e{bottom:831.106823pt;}
.y146{bottom:831.767090pt;}
.y105{bottom:831.773490pt;}
.y175{bottom:831.812136pt;}
.y1c0{bottom:833.638021pt;}
.y5{bottom:835.169358pt;}
.y7a{bottom:841.944661pt;}
.y1bf{bottom:845.638021pt;}
.yaf{bottom:846.780570pt;}
.y4a{bottom:846.786970pt;}
.y11d{bottom:847.100423pt;}
.y104{bottom:847.767090pt;}
.y145{bottom:847.799090pt;}
.y174{bottom:847.805736pt;}
.y79{bottom:853.944661pt;}
.y1be{bottom:857.638021pt;}
.yae{bottom:862.774170pt;}
.y49{bottom:862.780570pt;}
.y11c{bottom:863.106823pt;}
.y103{bottom:863.792690pt;}
.y173{bottom:863.799336pt;}
.y78{bottom:865.944661pt;}
.y1bd{bottom:869.638021pt;}
.y4{bottom:869.825358pt;}
.y77{bottom:877.944661pt;}
.y48{bottom:878.774170pt;}
.yad{bottom:878.793370pt;}
.y11b{bottom:879.100423pt;}
.y102{bottom:879.786290pt;}
.y172{bottom:879.792936pt;}
.y1bc{bottom:881.638021pt;}
.y1bb{bottom:893.638021pt;}
.y47{bottom:894.786970pt;}
.yd8{bottom:894.793613pt;}
.y101{bottom:895.779890pt;}
.y171{bottom:895.786536pt;}
.y1ba{bottom:905.638021pt;}
.y46{bottom:910.780570pt;}
.yd7{bottom:910.787213pt;}
.y11a{bottom:911.767090pt;}
.y100{bottom:911.773490pt;}
.y170{bottom:911.780136pt;}
.y1b9{bottom:917.638021pt;}
.y3{bottom:918.544515pt;}
.y3b{bottom:920.666829pt;}
.y76{bottom:926.077962pt;}
.y45{bottom:926.774170pt;}
.yd6{bottom:926.780813pt;}
.yff{bottom:927.767090pt;}
.y119{bottom:927.770243pt;}
.y16f{bottom:927.773736pt;}
.y1b8{bottom:929.638021pt;}
.y3c{bottom:986.513346pt;}
.y2{bottom:988.708515pt;}
.yaa{bottom:1001.355225pt;}
.y43{bottom:1001.355306pt;}
.yac{bottom:1001.561768pt;}
.y1{bottom:1001.711182pt;}
.yab{bottom:1002.044515pt;}
.y44{bottom:1002.048639pt;}
.h26{height:9.458097pt;}
.he{height:24.375999pt;}
.h20{height:24.480000pt;}
.h11{height:24.724000pt;}
.h24{height:25.221780pt;}
.h1e{height:26.656000pt;}
.h22{height:26.954667pt;}
.h23{height:27.132000pt;}
.h17{height:28.032077pt;}
.h1f{height:28.560000pt;}
.h18{height:30.835362pt;}
.h21{height:31.584000pt;}
.hc{height:32.965333pt;}
.h16{height:33.638647pt;}
.h10{height:35.320000pt;}
.hb{height:36.922667pt;}
.h14{height:37.674667pt;}
.h1d{height:38.080000pt;}
.h1a{height:38.920000pt;}
.h3{height:40.618667pt;}
.h12{height:40.661333pt;}
.h1c{height:40.724000pt;}
.h13{height:41.514667pt;}
.h2{height:41.984000pt;}
.h19{height:42.197333pt;}
.h9{height:47.093333pt;}
.h1b{height:47.741866pt;}
.h15{height:48.555733pt;}
.hd{height:49.653333pt;}
.ha{height:51.893333pt;}
.h8{height:54.329067pt;}
.h6{height:59.728337pt;}
.h7{height:59.744337pt;}
.hf{height:65.696829pt;}
.h4{height:68.570667pt;}
.h5{height:121.856000pt;}
.h25{height:181.461324pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:220.612000pt;}
.w3{width:306.455994pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:11.374268pt;}
.x1{left:75.496002pt;}
.x2{left:82.430532pt;}
.x3{left:84.162800pt;}
.xa{left:86.252935pt;}
.x24{left:95.590535pt;}
.x21{left:124.044800pt;}
.x23{left:125.070801pt;}
.x11{left:197.417725pt;}
.x17{left:223.182658pt;}
.x16{left:224.894267pt;}
.x4{left:240.726664pt;}
.x15{left:245.806015pt;}
.xf{left:363.633464pt;}
.x10{left:369.130138pt;}
.xe{left:387.493449pt;}
.x6{left:406.304795pt;}
.x1e{left:411.653320pt;}
.xb{left:414.299194pt;}
.x5{left:416.967195pt;}
.xc{left:419.632528pt;}
.x1d{left:423.027588pt;}
.x1c{left:423.945475pt;}
.x18{left:429.804118pt;}
.xd{left:432.955194pt;}
.x19{left:435.898785pt;}
.x1a{left:438.314657pt;}
.x13{left:440.986816pt;}
.x14{left:447.228811pt;}
.x12{left:485.390885pt;}
.x8{left:498.513346pt;}
.x20{left:535.698120pt;}
.x22{left:536.724121pt;}
.x1b{left:587.513184pt;}
.x7{left:617.715454pt;}
.x9{left:669.671183pt;}
}




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