
    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_5ea757567770ce941369c24b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_78c78fa4d6527d636785c611.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_e880c39c92106dc2c455bb77.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912109;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_480063dac7ed74233bd1c7ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_1019e733f0e13e43532f6500.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_2d7436de2fa4c3f4b9112685.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls30{letter-spacing:-1.374480px;}
.ls3c{letter-spacing:-1.192320px;}
.ls2f{letter-spacing:-1.135440px;}
.ls29{letter-spacing:-1.126080px;}
.ls21{letter-spacing:-0.728640px;}
.ls2e{letter-spacing:-0.657360px;}
.ls1f{letter-spacing:-0.596160px;}
.ls18{letter-spacing:-0.478080px;}
.ls43{letter-spacing:-0.463680px;}
.ls1e{letter-spacing:-0.397440px;}
.lsf{letter-spacing:-0.358560px;}
.ls15{letter-spacing:-0.336960px;}
.ls24{letter-spacing:-0.331200px;}
.ls11{letter-spacing:-0.324000px;}
.ls25{letter-spacing:-0.288000px;}
.ls53{letter-spacing:-0.264960px;}
.ls10{letter-spacing:-0.239040px;}
.ls28{letter-spacing:-0.168480px;}
.ls20{letter-spacing:-0.132480px;}
.lse{letter-spacing:-0.119520px;}
.ls1c{letter-spacing:-0.084240px;}
.ls17{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.046368px;}
.ls4d{letter-spacing:0.079488px;}
.ls14{letter-spacing:0.084240px;}
.ls4b{letter-spacing:0.086112px;}
.ls47{letter-spacing:0.092736px;}
.ls40{letter-spacing:0.099360px;}
.ls3f{letter-spacing:0.105984px;}
.ls16{letter-spacing:0.119520px;}
.ls1b{letter-spacing:0.132480px;}
.ls51{letter-spacing:0.152352px;}
.ls49{letter-spacing:0.158976px;}
.ls13{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.179280px;}
.ls4{letter-spacing:0.181440px;}
.ls52{letter-spacing:0.185472px;}
.ls4f{letter-spacing:0.192096px;}
.ls45{letter-spacing:0.211968px;}
.ls41{letter-spacing:0.225216px;}
.ls32{letter-spacing:0.239040px;}
.ls1a{letter-spacing:0.264960px;}
.ls23{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.331200px;}
.ls12{letter-spacing:0.336960px;}
.lsd{letter-spacing:0.358560px;}
.ls3{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.364536px;}
.ls2{letter-spacing:0.378000px;}
.ls2c{letter-spacing:0.478080px;}
.ls3e{letter-spacing:0.728640px;}
.ls6{letter-spacing:1.440000px;}
.ls7{letter-spacing:1.613520px;}
.ls2a{letter-spacing:2.848320px;}
.lsa{letter-spacing:3.047760px;}
.ls35{letter-spacing:3.576960px;}
.ls36{letter-spacing:3.656448px;}
.ls3a{letter-spacing:4.305600px;}
.ls19{letter-spacing:5.199120px;}
.ls3b{letter-spacing:5.762880px;}
.lsb{letter-spacing:5.916240px;}
.ls22{letter-spacing:7.220160px;}
.ls44{letter-spacing:7.809696px;}
.ls37{letter-spacing:7.909056px;}
.ls4a{letter-spacing:8.611200px;}
.ls34{letter-spacing:9.008640px;}
.ls3d{letter-spacing:9.339840px;}
.ls39{letter-spacing:11.525760px;}
.ls5{letter-spacing:12.240000px;}
.ls26{letter-spacing:12.254400px;}
.ls50{letter-spacing:12.983040px;}
.ls4e{letter-spacing:14.374080px;}
.ls31{letter-spacing:14.453568px;}
.ls8{letter-spacing:14.581440px;}
.ls38{letter-spacing:15.102720px;}
.ls2d{letter-spacing:15.831360px;}
.ls27{letter-spacing:16.560000px;}
.ls48{letter-spacing:17.262144px;}
.ls9{letter-spacing:17.449920px;}
.ls33{letter-spacing:19.408320px;}
.ls46{letter-spacing:20.865600px;}
.ls42{letter-spacing:25.171200px;}
.ls2b{letter-spacing:779.927760px;}
.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;}
}
.ws29{word-spacing:-21.060000px;}
.ws28{word-spacing:-20.723040px;}
.ws68{word-spacing:-16.891200px;}
.ws9d{word-spacing:-16.824960px;}
.ws2a{word-spacing:-16.692480px;}
.ws2b{word-spacing:-16.560000px;}
.wsbe{word-spacing:-16.427520px;}
.wsdf{word-spacing:-16.295040px;}
.ws69{word-spacing:-16.228800px;}
.ws9a{word-spacing:-15.963840px;}
.ws54{word-spacing:-15.831360px;}
.wsa5{word-spacing:-15.418080px;}
.ws3{word-spacing:-15.298560px;}
.wsa9{word-spacing:-15.059520px;}
.ws2{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.880240px;}
.wsa4{word-spacing:-14.820480px;}
.ws5{word-spacing:-14.700960px;}
.ws1{word-spacing:-14.581440px;}
.wsa8{word-spacing:-14.461920px;}
.wsaa{word-spacing:-14.282640px;}
.wsab{word-spacing:-13.804560px;}
.ws4{word-spacing:-13.662000px;}
.wsac{word-spacing:-13.565520px;}
.ws7{word-spacing:-9.720000px;}
.wsd0{word-spacing:-5.034240px;}
.wsbc{word-spacing:-4.636800px;}
.ws8b{word-spacing:-4.438080px;}
.ws47{word-spacing:-4.305600px;}
.ws46{word-spacing:-3.908160px;}
.ws45{word-spacing:-3.709440px;}
.ws59{word-spacing:-3.576960px;}
.wsa7{word-spacing:-3.179520px;}
.ws31{word-spacing:-3.047760px;}
.ws55{word-spacing:-2.980800px;}
.ws3d{word-spacing:-2.848320px;}
.ws7a{word-spacing:-2.715840px;}
.ws82{word-spacing:-2.517120px;}
.ws32{word-spacing:-2.330640px;}
.ws56{word-spacing:-2.318400px;}
.ws52{word-spacing:-2.185920px;}
.ws7b{word-spacing:-2.119680px;}
.wsc2{word-spacing:-1.854720px;}
.ws42{word-spacing:-1.788480px;}
.ws97{word-spacing:-1.722240px;}
.ws4f{word-spacing:-1.589760px;}
.ws43{word-spacing:-1.457280px;}
.ws10{word-spacing:-1.263600px;}
.ws2e{word-spacing:-1.195200px;}
.ws8d{word-spacing:-1.059840px;}
.ws7d{word-spacing:-0.861120px;}
.ws5b{word-spacing:-0.728640px;}
.wse{word-spacing:-0.505440px;}
.wsb3{word-spacing:-0.478080px;}
.wsa{word-spacing:-0.358560px;}
.ws36{word-spacing:-0.331200px;}
.ws76{word-spacing:-0.288000px;}
.ws9c{word-spacing:-0.264960px;}
.wsf{word-spacing:-0.252720px;}
.ws8{word-spacing:-0.179280px;}
.ws35{word-spacing:-0.132480px;}
.ws33{word-spacing:-0.084240px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:0.059760px;}
.wsae{word-spacing:0.119520px;}
.ws4a{word-spacing:0.132480px;}
.ws8e{word-spacing:0.168480px;}
.wsb{word-spacing:0.239040px;}
.ws84{word-spacing:0.288000px;}
.ws9{word-spacing:0.298800px;}
.wsd{word-spacing:0.324000px;}
.ws13{word-spacing:0.336960px;}
.ws6a{word-spacing:0.397440px;}
.wsc7{word-spacing:0.463680px;}
.ws1a{word-spacing:0.537840px;}
.ws41{word-spacing:0.596160px;}
.wsc{word-spacing:0.648000px;}
.wsaf{word-spacing:0.657360px;}
.ws70{word-spacing:0.728640px;}
.wsb2{word-spacing:0.956160px;}
.ws5d{word-spacing:1.126080px;}
.ws27{word-spacing:1.254960px;}
.ws98{word-spacing:1.324800px;}
.ws12{word-spacing:1.440000px;}
.ws40{word-spacing:1.457280px;}
.ws3f{word-spacing:1.854720px;}
.ws15{word-spacing:1.972080px;}
.ws64{word-spacing:2.053440px;}
.ws3e{word-spacing:2.185920px;}
.ws14{word-spacing:2.569680px;}
.ws22{word-spacing:2.689200px;}
.ws71{word-spacing:2.782080px;}
.ws34{word-spacing:2.914560px;}
.ws21{word-spacing:3.107520px;}
.ws6c{word-spacing:3.245760px;}
.ws75{word-spacing:3.312000px;}
.ws61{word-spacing:3.444480px;}
.ws4e{word-spacing:3.576960px;}
.wsa0{word-spacing:3.643200px;}
.ws8a{word-spacing:3.974400px;}
.ws66{word-spacing:4.173120px;}
.ws5a{word-spacing:4.305600px;}
.ws4b{word-spacing:4.703040px;}
.ws7f{word-spacing:4.901760px;}
.ws4c{word-spacing:5.034240px;}
.ws2c{word-spacing:5.079600px;}
.wse2{word-spacing:5.365440px;}
.wsb0{word-spacing:5.557680px;}
.ws95{word-spacing:5.630400px;}
.ws67{word-spacing:5.762880px;}
.wsc8{word-spacing:5.895360px;}
.ws23{word-spacing:5.976000px;}
.wsbd{word-spacing:6.226560px;}
.ws62{word-spacing:6.359040px;}
.ws24{word-spacing:6.394320px;}
.ws65{word-spacing:6.491520px;}
.ws58{word-spacing:6.888960px;}
.ws57{word-spacing:7.087680px;}
.ws49{word-spacing:7.220160px;}
.wscf{word-spacing:7.816320px;}
.ws5c{word-spacing:7.948800px;}
.ws18{word-spacing:8.007840px;}
.ws17{word-spacing:8.187120px;}
.wse0{word-spacing:8.280000px;}
.ws51{word-spacing:8.478720px;}
.ws50{word-spacing:8.611200px;}
.wse1{word-spacing:8.743680px;}
.wsc0{word-spacing:9.008640px;}
.ws37{word-spacing:9.207360px;}
.ws92{word-spacing:9.339840px;}
.ws2d{word-spacing:9.920160px;}
.ws74{word-spacing:9.936000px;}
.ws89{word-spacing:10.068480px;}
.wsde{word-spacing:10.465920px;}
.ws6d{word-spacing:10.664640px;}
.ws6b{word-spacing:10.797120px;}
.ws6f{word-spacing:11.393280px;}
.ws96{word-spacing:11.525760px;}
.ws26{word-spacing:11.593440px;}
.ws19{word-spacing:12.071520px;}
.wsa3{word-spacing:12.121920px;}
.ws6e{word-spacing:12.254400px;}
.ws88{word-spacing:12.651840px;}
.wsb7{word-spacing:12.850560px;}
.ws11{word-spacing:12.960000px;}
.ws90{word-spacing:12.983040px;}
.ws9b{word-spacing:13.380480px;}
.ws73{word-spacing:13.579200px;}
.ws77{word-spacing:13.711680px;}
.ws25{word-spacing:13.744800px;}
.ws99{word-spacing:14.042880px;}
.ws38{word-spacing:14.241600px;}
.ws3a{word-spacing:14.374080px;}
.ws39{word-spacing:14.771520px;}
.ws1c{word-spacing:14.940000px;}
.ws9e{word-spacing:14.970240px;}
.ws48{word-spacing:15.102720px;}
.wsad{word-spacing:15.500160px;}
.ws1b{word-spacing:15.657120px;}
.ws9f{word-spacing:15.698880px;}
.ws4d{word-spacing:15.831360px;}
.ws1f{word-spacing:15.896160px;}
.ws20{word-spacing:16.075440px;}
.ws8c{word-spacing:16.427520px;}
.ws63{word-spacing:16.560000px;}
.ws60{word-spacing:17.156160px;}
.ws5f{word-spacing:17.288640px;}
.wsc1{word-spacing:17.884800px;}
.ws91{word-spacing:18.017280px;}
.ws1e{word-spacing:18.047520px;}
.ws86{word-spacing:18.414720px;}
.ws53{word-spacing:18.613440px;}
.ws5e{word-spacing:18.745920px;}
.wsbf{word-spacing:19.143360px;}
.ws3c{word-spacing:19.342080px;}
.ws3b{word-spacing:19.474560px;}
.wsb4{word-spacing:20.004480px;}
.ws8f{word-spacing:20.136960px;}
.wsc4{word-spacing:20.534400px;}
.ws72{word-spacing:20.733120px;}
.ws78{word-spacing:20.865600px;}
.ws93{word-spacing:21.461760px;}
.ws94{word-spacing:21.594240px;}
.wsd4{word-spacing:22.322880px;}
.ws83{word-spacing:22.919040px;}
.wsb8{word-spacing:23.051520px;}
.ws87{word-spacing:23.448960px;}
.wsb9{word-spacing:23.647680px;}
.wsa2{word-spacing:23.780160px;}
.wsa6{word-spacing:24.376320px;}
.wsdd{word-spacing:24.508800px;}
.ws7e{word-spacing:25.038720px;}
.ws44{word-spacing:25.171200px;}
.wsa1{word-spacing:25.237440px;}
.wsd7{word-spacing:26.496000px;}
.ws7c{word-spacing:26.628480px;}
.wsb6{word-spacing:27.224640px;}
.wsb5{word-spacing:27.357120px;}
.ws30{word-spacing:27.429840px;}
.ws2f{word-spacing:27.907920px;}
.wsbb{word-spacing:28.085760px;}
.ws16{word-spacing:28.864080px;}
.wsc5{word-spacing:29.543040px;}
.wsba{word-spacing:30.139200px;}
.ws81{word-spacing:30.271680px;}
.ws80{word-spacing:30.934080px;}
.wse3{word-spacing:31.662720px;}
.wsd2{word-spacing:32.060160px;}
.wsd1{word-spacing:32.391360px;}
.wsdb{word-spacing:33.848640px;}
.wsda{word-spacing:34.577280px;}
.wsc3{word-spacing:35.305920px;}
.wscd{word-spacing:35.902080px;}
.wsd5{word-spacing:36.564480px;}
.wsd6{word-spacing:36.696960px;}
.wsce{word-spacing:36.763200px;}
.wsb1{word-spacing:39.142800px;}
.wsdc{word-spacing:41.731200px;}
.wsd3{word-spacing:42.459840px;}
.ws79{word-spacing:45.970560px;}
.wsc9{word-spacing:46.831680px;}
.ws85{word-spacing:53.985600px;}
.wsd8{word-spacing:59.616000px;}
.wsd9{word-spacing:59.748480px;}
.wsca{word-spacing:61.205760px;}
.wscc{word-spacing:61.603200px;}
.wscb{word-spacing:62.663040px;}
.wsc6{word-spacing:72.599040px;}
._14{margin-left:-15.603984px;}
._2{margin-left:-13.711680px;}
._15{margin-left:-4.968000px;}
._5{margin-left:-3.206664px;}
._0{margin-left:-1.272888px;}
._1{width:1.607544px;}
._c{width:3.185208px;}
._7{width:5.329872px;}
._12{width:9.279000px;}
._f{width:11.658240px;}
._10{width:12.802536px;}
._6{width:13.846104px;}
._13{width:15.077952px;}
._b{width:20.160000px;}
._d{width:31.809528px;}
._11{width:34.989048px;}
._e{width:42.716952px;}
._a{width:45.506880px;}
._9{width:499.115520px;}
._4{width:752.557680px;}
._3{width:995.500008px;}
._8{width:1233.028080px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fsc{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y15f{bottom:3.240000px;}
.y13e{bottom:3.779850px;}
.y12a{bottom:3.780000px;}
.y128{bottom:3.960000px;}
.y162{bottom:20.520000px;}
.y164{bottom:32.400000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y22{bottom:139.264499px;}
.y19{bottom:196.933500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y4d{bottom:278.460000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y49{bottom:322.194420px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y1ee{bottom:323.264160px;}
.y12d{bottom:327.240000px;}
.yf3{bottom:330.678000px;}
.y1a9{bottom:331.392960px;}
.ya4{bottom:333.012960px;}
.y219{bottom:334.249920px;}
.y11d{bottom:336.461760px;}
.y18f{bottom:338.227920px;}
.yf8{bottom:338.400000px;}
.y78{bottom:339.420240px;}
.ycf{bottom:340.969680px;}
.y1ed{bottom:342.341280px;}
.y171{bottom:342.761760px;}
.y19c{bottom:342.894960px;}
.y48{bottom:344.700000px;}
.y12c{bottom:345.060000px;}
.y10{bottom:348.133500px;}
.yf2{bottom:349.572960px;}
.y1a8{bottom:350.287920px;}
.y1cd{bottom:351.380880px;}
.ya3{bottom:352.090080px;}
.y218{bottom:353.144880px;}
.y11c{bottom:355.538880px;}
.ydc{bottom:355.546800px;}
.y47{bottom:357.120000px;}
.y18e{bottom:357.122880px;}
.yf7{bottom:357.294960px;}
.y77{bottom:358.315200px;}
.yce{bottom:360.046800px;}
.y111{bottom:360.096480px;}
.y1ec{bottom:361.236240px;}
.y19b{bottom:361.789920px;}
.y170{bottom:361.838880px;}
.y12b{bottom:362.880000px;}
.yf1{bottom:368.650080px;}
.y1a7{bottom:369.182880px;}
.y1cc{bottom:370.275840px;}
.ya2{bottom:370.985040px;}
.y217{bottom:372.222000px;}
.y11b{bottom:374.433840px;}
.ydb{bottom:374.441760px;}
.y18d{bottom:376.200000px;}
.yf6{bottom:376.372080px;}
.y76{bottom:377.392320px;}
.ycd{bottom:378.941760px;}
.y110{bottom:378.991440px;}
.y1eb{bottom:380.131200px;}
.y129{bottom:380.700000px;}
.y16f{bottom:380.733840px;}
.y19a{bottom:380.867040px;}
.yf{bottom:386.785499px;}
.yf0{bottom:387.545040px;}
.y1a6{bottom:388.260000px;}
.y1cb{bottom:389.352960px;}
.ya1{bottom:389.880000px;}
.y216{bottom:391.116960px;}
.y11a{bottom:393.510960px;}
.yda{bottom:393.518880px;}
.y18c{bottom:394.020000px;}
.yf5{bottom:395.267040px;}
.y75{bottom:396.287280px;}
.ycc{bottom:398.018880px;}
.y10f{bottom:398.068560px;}
.y127{bottom:398.520000px;}
.y1ea{bottom:399.208320px;}
.y16e{bottom:399.628800px;}
.y199{bottom:399.762000px;}
.y46{bottom:405.828000px;}
.yef{bottom:406.440000px;}
.y1a5{bottom:407.520000px;}
.ye{bottom:408.044999px;}
.y1ca{bottom:408.247920px;}
.y18b{bottom:408.972960px;}
.ya0{bottom:409.860000px;}
.y215{bottom:410.194080px;}
.y119{bottom:412.405920px;}
.yd9{bottom:412.413840px;}
.yf4{bottom:414.344160px;}
.y74{bottom:415.182240px;}
.ycb{bottom:416.913840px;}
.y10e{bottom:416.963520px;}
.y1e9{bottom:418.103280px;}
.y16d{bottom:418.705920px;}
.y198{bottom:418.839120px;}
.y45{bottom:423.113580px;}
.yee{bottom:425.700000px;}
.y1c9{bottom:427.142880px;}
.y18a{bottom:427.867920px;}
.y1a4{bottom:427.883760px;}
.y214{bottom:429.089040px;}
.y126{bottom:429.661260px;}
.y118{bottom:431.300880px;}
.yd8{bottom:431.308800px;}
.y9f{bottom:433.239120px;}
.y73{bottom:434.259360px;}
.yca{bottom:435.808800px;}
.y10d{bottom:435.858480px;}
.y1e8{bottom:437.180400px;}
.y16c{bottom:437.600880px;}
.y197{bottom:437.734080px;}
.y44{bottom:440.219880px;}
.yed{bottom:446.220000px;}
.y189{bottom:446.945040px;}
.y1a3{bottom:446.960880px;}
.y213{bottom:447.984000px;}
.y117{bottom:450.378000px;}
.yd7{bottom:450.385920px;}
.y9e{bottom:452.134080px;}
.y72{bottom:453.154320px;}
.yc9{bottom:454.885920px;}
.y10c{bottom:454.935600px;}
.y1e7{bottom:456.075360px;}
.y125{bottom:456.120000px;}
.y196{bottom:456.629040px;}
.y16b{bottom:456.678000px;}
.y43{bottom:457.505460px;}
.y153{bottom:457.805520px;}
.y188{bottom:465.840000px;}
.y1a2{bottom:465.855840px;}
.yec{bottom:466.020000px;}
.y212{bottom:467.061120px;}
.y116{bottom:469.272960px;}
.yd6{bottom:469.280880px;}
.y9d{bottom:471.211200px;}
.y71{bottom:472.231440px;}
.y124{bottom:473.775840px;}
.yc8{bottom:473.780880px;}
.y10b{bottom:473.830560px;}
.y1e6{bottom:474.970320px;}
.y16a{bottom:475.572960px;}
.y195{bottom:475.706160px;}
.y152{bottom:476.882640px;}
.y187{bottom:483.660000px;}
.y42{bottom:483.784920px;}
.y1a1{bottom:484.750800px;}
.yd{bottom:484.864502px;}
.y211{bottom:485.956080px;}
.y115{bottom:488.350080px;}
.yd5{bottom:488.358000px;}
.y1c8{bottom:489.289680px;}
.yeb{bottom:489.292560px;}
.y9c{bottom:490.106160px;}
.y70{bottom:491.126400px;}
.y123{bottom:492.852960px;}
.yc7{bottom:492.858000px;}
.y10a{bottom:492.907680px;}
.y1e5{bottom:494.047440px;}
.y169{bottom:494.467920px;}
.y194{bottom:494.601120px;}
.y151{bottom:495.777600px;}
.y186{bottom:498.633840px;}
.y41{bottom:501.070500px;}
.yc{bottom:502.864502px;}
.y1a0{bottom:503.827920px;}
.y210{bottom:505.033200px;}
.y114{bottom:507.245040px;}
.yd4{bottom:507.252960px;}
.y1c7{bottom:508.366800px;}
.yea{bottom:508.369680px;}
.y9b{bottom:509.183280px;}
.y6f{bottom:510.021360px;}
.y122{bottom:511.747920px;}
.yc6{bottom:511.752960px;}
.y109{bottom:511.802640px;}
.y1e4{bottom:512.942400px;}
.y168{bottom:513.545040px;}
.y193{bottom:513.678240px;}
.y150{bottom:514.672560px;}
.y185{bottom:517.528800px;}
.y40{bottom:518.356080px;}
.yb{bottom:520.864502px;}
.y19f{bottom:522.722880px;}
.y20f{bottom:523.928160px;}
.y113{bottom:526.140000px;}
.yd3{bottom:526.147920px;}
.y1c6{bottom:527.261760px;}
.ye9{bottom:527.264640px;}
.y9a{bottom:528.078240px;}
.y6e{bottom:529.098480px;}
.y121{bottom:530.642880px;}
.yc5{bottom:530.647920px;}
.y108{bottom:530.697600px;}
.y167{bottom:532.440000px;}
.y192{bottom:532.573200px;}
.y14f{bottom:533.749680px;}
.y3f{bottom:535.641660px;}
.y184{bottom:536.605920px;}
.ya{bottom:538.864499px;}
.y19e{bottom:541.800000px;}
.y20e{bottom:542.823120px;}
.yd2{bottom:545.225040px;}
.y112{bottom:545.400000px;}
.y1c5{bottom:546.338880px;}
.ye8{bottom:546.341760px;}
.y99{bottom:546.973200px;}
.y6d{bottom:547.993440px;}
.y166{bottom:548.460000px;}
.y120{bottom:549.720000px;}
.yc4{bottom:549.725040px;}
.y107{bottom:549.774720px;}
.y1e3{bottom:549.838080px;}
.y191{bottom:551.468160px;}
.y14e{bottom:552.644640px;}
.y183{bottom:555.500880px;}
.y9{bottom:556.864499px;}
.y19d{bottom:561.600000px;}
.y3e{bottom:561.741840px;}
.y20d{bottom:561.900240px;}
.yd1{bottom:564.120000px;}
.y1c4{bottom:565.233840px;}
.ye7{bottom:565.236720px;}
.y163{bottom:565.740000px;}
.y98{bottom:566.050320px;}
.y6c{bottom:567.070560px;}
.yc3{bottom:568.620000px;}
.y106{bottom:568.669680px;}
.y1e2{bottom:568.915200px;}
.y11f{bottom:568.980000px;}
.y190{bottom:570.545280px;}
.y14d{bottom:571.721760px;}
.y182{bottom:574.578000px;}
.y3d{bottom:579.027420px;}
.y20c{bottom:580.795200px;}
.y165{bottom:580.860000px;}
.yd0{bottom:583.380000px;}
.y1c3{bottom:584.128800px;}
.ye6{bottom:584.131680px;}
.y97{bottom:584.945280px;}
.y6b{bottom:585.965520px;}
.y105{bottom:587.746800px;}
.y1e1{bottom:587.810160px;}
.yc2{bottom:587.880000px;}
.y11e{bottom:589.440240px;}
.y14c{bottom:590.616720px;}
.y181{bottom:593.472960px;}
.y3c{bottom:596.313000px;}
.y20b{bottom:599.872320px;}
.y1c2{bottom:603.205920px;}
.ye5{bottom:603.208800px;}
.y96{bottom:604.022400px;}
.y6a{bottom:604.860480px;}
.y104{bottom:606.641760px;}
.yc1{bottom:608.517360px;}
.y14b{bottom:609.693840px;}
.y161{bottom:612.180000px;}
.y180{bottom:612.550080px;}
.y20a{bottom:618.767280px;}
.y1c1{bottom:622.100880px;}
.ye4{bottom:622.103760px;}
.y3b{bottom:622.592460px;}
.y95{bottom:622.917360px;}
.y69{bottom:623.937600px;}
.y1e0{bottom:624.705840px;}
.y103{bottom:625.536720px;}
.yc0{bottom:627.412320px;}
.y14a{bottom:628.588800px;}
.y17f{bottom:631.445040px;}
.y209{bottom:637.844400px;}
.y3a{bottom:639.878040px;}
.y1c0{bottom:641.178000px;}
.ye3{bottom:641.180880px;}
.y94{bottom:641.812320px;}
.y68{bottom:642.832560px;}
.y1df{bottom:643.782960px;}
.y102{bottom:644.613840px;}
.y8{bottom:645.510000px;}
.ybf{bottom:646.307280px;}
.y160{bottom:646.740000px;}
.y149{bottom:647.483760px;}
.y17e{bottom:650.340000px;}
.y208{bottom:656.739360px;}
.y1bf{bottom:660.072960px;}
.ye2{bottom:660.075840px;}
.y93{bottom:660.889440px;}
.y67{bottom:661.909680px;}
.y1de{bottom:662.860080px;}
.y101{bottom:663.508800px;}
.ybe{bottom:665.384400px;}
.y15e{bottom:665.460000px;}
.y39{bottom:665.978220px;}
.y148{bottom:666.560880px;}
.y7{bottom:666.771000px;}
.y17d{bottom:668.160000px;}
.y207{bottom:675.634320px;}
.y1be{bottom:678.967920px;}
.ye1{bottom:678.970800px;}
.y92{bottom:679.784400px;}
.y66{bottom:680.804640px;}
.y1dd{bottom:681.755040px;}
.y100{bottom:682.585920px;}
.y17c{bottom:683.136720px;}
.y38{bottom:683.263800px;}
.ybd{bottom:684.279360px;}
.y147{bottom:685.455840px;}
.y15d{bottom:686.700000px;}
.y206{bottom:694.711440px;}
.y1bd{bottom:698.045040px;}
.ye0{bottom:698.047920px;}
.y91{bottom:698.861520px;}
.y65{bottom:699.699600px;}
.y37{bottom:700.549380px;}
.y1dc{bottom:700.650000px;}
.yff{bottom:701.480880px;}
.y17b{bottom:702.213840px;}
.ybc{bottom:703.356480px;}
.y15c{bottom:704.367210px;}
.y146{bottom:704.532960px;}
.y205{bottom:713.606400px;}
.y1bc{bottom:716.940000px;}
.ydf{bottom:716.942880px;}
.y90{bottom:717.756480px;}
.y64{bottom:718.776720px;}
.y1db{bottom:719.727120px;}
.yfe{bottom:720.375840px;}
.y17a{bottom:721.108800px;}
.ybb{bottom:722.251440px;}
.y145{bottom:723.427920px;}
.y15b{bottom:723.444330px;}
.y6{bottom:726.298500px;}
.y36{bottom:726.828840px;}
.y204{bottom:732.683520px;}
.yde{bottom:736.020000px;}
.y1bb{bottom:736.200000px;}
.y8f{bottom:736.651440px;}
.y63{bottom:737.671680px;}
.y1da{bottom:738.622080px;}
.yfd{bottom:739.452960px;}
.y179{bottom:740.185920px;}
.yba{bottom:741.146400px;}
.y144{bottom:742.322880px;}
.y15a{bottom:742.339290px;}
.y35{bottom:744.114420px;}
.y203{bottom:751.578480px;}
.y3{bottom:752.599495px;}
.y8e{bottom:755.728560px;}
.ydd{bottom:755.820000px;}
.y1ba{bottom:756.745770px;}
.y62{bottom:756.748800px;}
.y1d9{bottom:757.699200px;}
.yfc{bottom:758.347920px;}
.y178{bottom:759.080880px;}
.yb9{bottom:760.223520px;}
.y159{bottom:761.234250px;}
.y34{bottom:761.400000px;}
.y202{bottom:770.473440px;}
.y8d{bottom:774.623520px;}
.y1b9{bottom:775.640730px;}
.y61{bottom:775.643760px;}
.y1d8{bottom:776.594160px;}
.y143{bottom:777.420000px;}
.yfb{bottom:777.425040px;}
.y177{bottom:777.975840px;}
.yb8{bottom:779.118480px;}
.y158{bottom:780.311370px;}
.y33{bottom:788.940000px;}
.y201{bottom:789.550560px;}
.y8c{bottom:793.700640px;}
.y1b8{bottom:794.717850px;}
.y60{bottom:794.720880px;}
.y142{bottom:795.240000px;}
.y1d7{bottom:795.489120px;}
.yfa{bottom:796.320000px;}
.y176{bottom:797.052960px;}
.yb7{bottom:798.195600px;}
.y157{bottom:799.206330px;}
.y200{bottom:808.445520px;}
.y8b{bottom:812.595600px;}
.y141{bottom:813.060000px;}
.y1b7{bottom:813.612810px;}
.y5f{bottom:813.615840px;}
.y1d6{bottom:814.566240px;}
.yf9{bottom:815.580000px;}
.y175{bottom:815.947920px;}
.yb6{bottom:817.090560px;}
.y156{bottom:818.283450px;}
.y32{bottom:821.160000px;}
.y1ff{bottom:827.522640px;}
.y140{bottom:830.880000px;}
.y8a{bottom:831.490560px;}
.y1b6{bottom:832.507770px;}
.y5e{bottom:832.510800px;}
.y1d5{bottom:833.461200px;}
.y174{bottom:835.025040px;}
.yb5{bottom:836.167680px;}
.y155{bottom:837.178410px;}
.y31{bottom:840.420000px;}
.y1fe{bottom:846.417600px;}
.y13f{bottom:848.880000px;}
.y89{bottom:850.567680px;}
.y1b5{bottom:851.584890px;}
.y5d{bottom:851.587920px;}
.y154{bottom:852.479850px;}
.y173{bottom:853.920000px;}
.yb4{bottom:855.062640px;}
.y30{bottom:861.120000px;}
.y1fd{bottom:865.312560px;}
.y13d{bottom:866.700000px;}
.y88{bottom:869.462640px;}
.y1b4{bottom:870.479850px;}
.y5c{bottom:870.482880px;}
.y1d4{bottom:870.539040px;}
.y172{bottom:872.100000px;}
.yb3{bottom:873.957600px;}
.y2{bottom:879.369000px;}
.y1fc{bottom:884.389680px;}
.y13c{bottom:884.520000px;}
.y87{bottom:888.539760px;}
.y2f{bottom:888.660000px;}
.y1d3{bottom:889.434000px;}
.y5b{bottom:889.560000px;}
.y1b3{bottom:889.740000px;}
.yb2{bottom:893.034720px;}
.y13b{bottom:902.340000px;}
.y2e{bottom:902.520000px;}
.y1fb{bottom:903.284640px;}
.y86{bottom:907.434720px;}
.y1d2{bottom:908.511120px;}
.y5a{bottom:909.360000px;}
.y1b2{bottom:910.290960px;}
.yb1{bottom:911.929680px;}
.y13a{bottom:920.160000px;}
.y1fa{bottom:922.361760px;}
.y85{bottom:926.511840px;}
.y1d1{bottom:927.406080px;}
.y1b1{bottom:929.185920px;}
.y2d{bottom:930.060000px;}
.yb0{bottom:931.006800px;}
.y59{bottom:932.582880px;}
.y139{bottom:937.980000px;}
.y1f9{bottom:941.256720px;}
.y84{bottom:945.406800px;}
.y1d0{bottom:946.301040px;}
.y1b0{bottom:948.080880px;}
.yaf{bottom:949.901760px;}
.y58{bottom:951.660000px;}
.y2c{bottom:952.015500px;}
.y138{bottom:955.980000px;}
.y1f8{bottom:960.151680px;}
.y83{bottom:964.301760px;}
.y1cf{bottom:965.378160px;}
.y1{bottom:966.726000px;}
.y1af{bottom:967.158000px;}
.y2b{bottom:968.580000px;}
.yae{bottom:968.796720px;}
.y57{bottom:971.460000px;}
.y137{bottom:973.800000px;}
.y1f7{bottom:979.228800px;}
.y82{bottom:983.378880px;}
.y1ae{bottom:986.052960px;}
.yad{bottom:987.873840px;}
.y136{bottom:991.620000px;}
.y2a{bottom:991.980000px;}
.y56{bottom:994.680000px;}
.y1f6{bottom:998.123760px;}
.y1ce{bottom:1002.091680px;}
.y81{bottom:1002.273840px;}
.y1ad{bottom:1005.130080px;}
.yac{bottom:1006.768800px;}
.y135{bottom:1009.440000px;}
.y29{bottom:1013.049000px;}
.y55{bottom:1014.480000px;}
.y1f5{bottom:1017.200880px;}
.y80{bottom:1021.350960px;}
.y1ac{bottom:1024.025040px;}
.yab{bottom:1025.845920px;}
.y134{bottom:1027.260000px;}
.y1f4{bottom:1036.095840px;}
.y54{bottom:1037.305800px;}
.y7f{bottom:1040.245920px;}
.y1ab{bottom:1042.920000px;}
.y28{bottom:1044.180000px;}
.yaa{bottom:1044.740880px;}
.y133{bottom:1045.080000px;}
.y53{bottom:1054.591380px;}
.y1f3{bottom:1054.990800px;}
.y7e{bottom:1059.140880px;}
.y1aa{bottom:1062.180000px;}
.y132{bottom:1063.080000px;}
.ya9{bottom:1063.635840px;}
.y52{bottom:1071.876960px;}
.y27{bottom:1073.886300px;}
.y1f2{bottom:1074.067920px;}
.y7d{bottom:1078.218000px;}
.y131{bottom:1080.900000px;}
.ya8{bottom:1082.712960px;}
.y51{bottom:1089.162540px;}
.y1f1{bottom:1092.962880px;}
.y7c{bottom:1097.112960px;}
.y26{bottom:1098.000000px;}
.y130{bottom:1098.720000px;}
.ya7{bottom:1101.607920px;}
.y50{bottom:1106.448120px;}
.y1f0{bottom:1112.040000px;}
.y7b{bottom:1116.190080px;}
.y12f{bottom:1116.540000px;}
.ya6{bottom:1120.685040px;}
.y25{bottom:1120.860000px;}
.y4f{bottom:1123.554420px;}
.y1ef{bottom:1132.560000px;}
.y7a{bottom:1135.085040px;}
.y24{bottom:1138.134420px;}
.ya5{bottom:1139.580000px;}
.y4e{bottom:1140.840000px;}
.y12e{bottom:1146.060000px;}
.y79{bottom:1153.980000px;}
.y23{bottom:1155.420000px;}
.y4c{bottom:1158.120000px;}
.y4b{bottom:1177.554420px;}
.y4a{bottom:1194.840000px;}
.h1d{height:17.280000px;}
.h19{height:17.820000px;}
.h1b{height:18.000000px;}
.h1a{height:18.001500px;}
.h14{height:27.071719px;}
.h7{height:32.130000px;}
.hf{height:33.588984px;}
.h1e{height:34.560000px;}
.he{height:37.599609px;}
.h9{height:40.501406px;}
.h13{height:41.610234px;}
.h1c{height:44.860781px;}
.h17{height:44.893125px;}
.h6{height:45.900000px;}
.h18{height:45.992812px;}
.hc{height:46.122187px;}
.h1f{height:46.440000px;}
.h3{height:48.195000px;}
.h16{height:48.796875px;}
.h10{height:49.992188px;}
.h2{height:55.080000px;}
.h12{height:57.092344px;}
.hb{height:58.655391px;}
.h11{height:60.948984px;}
.h15{height:64.899844px;}
.hd{height:67.839609px;}
.ha{height:73.195312px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:189.360000px;}
.w5{width:230.940000px;}
.w4{width:321.840000px;}
.w7{width:363.420000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:170.100000px;}
.x6{left:180.532620px;}
.x4{left:203.484001px;}
.x12{left:212.576400px;}
.x9{left:235.440000px;}
.x8{left:283.135680px;}
.xf{left:298.260000px;}
.xb{left:303.842520px;}
.xa{left:311.940000px;}
.x10{left:359.460000px;}
.x11{left:367.560000px;}
.x7{left:446.400000px;}
.x3{left:454.959000px;}
.xd{left:491.940000px;}
.xe{left:723.600000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls30{letter-spacing:-1.221760pt;}
.ls3c{letter-spacing:-1.059840pt;}
.ls2f{letter-spacing:-1.009280pt;}
.ls29{letter-spacing:-1.000960pt;}
.ls21{letter-spacing:-0.647680pt;}
.ls2e{letter-spacing:-0.584320pt;}
.ls1f{letter-spacing:-0.529920pt;}
.ls18{letter-spacing:-0.424960pt;}
.ls43{letter-spacing:-0.412160pt;}
.ls1e{letter-spacing:-0.353280pt;}
.lsf{letter-spacing:-0.318720pt;}
.ls15{letter-spacing:-0.299520pt;}
.ls24{letter-spacing:-0.294400pt;}
.ls11{letter-spacing:-0.288000pt;}
.ls25{letter-spacing:-0.256000pt;}
.ls53{letter-spacing:-0.235520pt;}
.ls10{letter-spacing:-0.212480pt;}
.ls28{letter-spacing:-0.149760pt;}
.ls20{letter-spacing:-0.117760pt;}
.lse{letter-spacing:-0.106240pt;}
.ls1c{letter-spacing:-0.074880pt;}
.ls17{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.041216pt;}
.ls4d{letter-spacing:0.070656pt;}
.ls14{letter-spacing:0.074880pt;}
.ls4b{letter-spacing:0.076544pt;}
.ls47{letter-spacing:0.082432pt;}
.ls40{letter-spacing:0.088320pt;}
.ls3f{letter-spacing:0.094208pt;}
.ls16{letter-spacing:0.106240pt;}
.ls1b{letter-spacing:0.117760pt;}
.ls51{letter-spacing:0.135424pt;}
.ls49{letter-spacing:0.141312pt;}
.ls13{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.159360pt;}
.ls4{letter-spacing:0.161280pt;}
.ls52{letter-spacing:0.164864pt;}
.ls4f{letter-spacing:0.170752pt;}
.ls45{letter-spacing:0.188416pt;}
.ls41{letter-spacing:0.200192pt;}
.ls32{letter-spacing:0.212480pt;}
.ls1a{letter-spacing:0.235520pt;}
.ls23{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.294400pt;}
.ls12{letter-spacing:0.299520pt;}
.lsd{letter-spacing:0.318720pt;}
.ls3{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.324032pt;}
.ls2{letter-spacing:0.336000pt;}
.ls2c{letter-spacing:0.424960pt;}
.ls3e{letter-spacing:0.647680pt;}
.ls6{letter-spacing:1.280000pt;}
.ls7{letter-spacing:1.434240pt;}
.ls2a{letter-spacing:2.531840pt;}
.lsa{letter-spacing:2.709120pt;}
.ls35{letter-spacing:3.179520pt;}
.ls36{letter-spacing:3.250176pt;}
.ls3a{letter-spacing:3.827200pt;}
.ls19{letter-spacing:4.621440pt;}
.ls3b{letter-spacing:5.122560pt;}
.lsb{letter-spacing:5.258880pt;}
.ls22{letter-spacing:6.417920pt;}
.ls44{letter-spacing:6.941952pt;}
.ls37{letter-spacing:7.030272pt;}
.ls4a{letter-spacing:7.654400pt;}
.ls34{letter-spacing:8.007680pt;}
.ls3d{letter-spacing:8.302080pt;}
.ls39{letter-spacing:10.245120pt;}
.ls5{letter-spacing:10.880000pt;}
.ls26{letter-spacing:10.892800pt;}
.ls50{letter-spacing:11.540480pt;}
.ls4e{letter-spacing:12.776960pt;}
.ls31{letter-spacing:12.847616pt;}
.ls8{letter-spacing:12.961280pt;}
.ls38{letter-spacing:13.424640pt;}
.ls2d{letter-spacing:14.072320pt;}
.ls27{letter-spacing:14.720000pt;}
.ls48{letter-spacing:15.344128pt;}
.ls9{letter-spacing:15.511040pt;}
.ls33{letter-spacing:17.251840pt;}
.ls46{letter-spacing:18.547200pt;}
.ls42{letter-spacing:22.374400pt;}
.ls2b{letter-spacing:693.269120pt;}
.ws29{word-spacing:-18.720000pt;}
.ws28{word-spacing:-18.420480pt;}
.ws68{word-spacing:-15.014400pt;}
.ws9d{word-spacing:-14.955520pt;}
.ws2a{word-spacing:-14.837760pt;}
.ws2b{word-spacing:-14.720000pt;}
.wsbe{word-spacing:-14.602240pt;}
.wsdf{word-spacing:-14.484480pt;}
.ws69{word-spacing:-14.425600pt;}
.ws9a{word-spacing:-14.190080pt;}
.ws54{word-spacing:-14.072320pt;}
.wsa5{word-spacing:-13.704960pt;}
.ws3{word-spacing:-13.598720pt;}
.wsa9{word-spacing:-13.386240pt;}
.ws2{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.226880pt;}
.wsa4{word-spacing:-13.173760pt;}
.ws5{word-spacing:-13.067520pt;}
.ws1{word-spacing:-12.961280pt;}
.wsa8{word-spacing:-12.855040pt;}
.wsaa{word-spacing:-12.695680pt;}
.wsab{word-spacing:-12.270720pt;}
.ws4{word-spacing:-12.144000pt;}
.wsac{word-spacing:-12.058240pt;}
.ws7{word-spacing:-8.640000pt;}
.wsd0{word-spacing:-4.474880pt;}
.wsbc{word-spacing:-4.121600pt;}
.ws8b{word-spacing:-3.944960pt;}
.ws47{word-spacing:-3.827200pt;}
.ws46{word-spacing:-3.473920pt;}
.ws45{word-spacing:-3.297280pt;}
.ws59{word-spacing:-3.179520pt;}
.wsa7{word-spacing:-2.826240pt;}
.ws31{word-spacing:-2.709120pt;}
.ws55{word-spacing:-2.649600pt;}
.ws3d{word-spacing:-2.531840pt;}
.ws7a{word-spacing:-2.414080pt;}
.ws82{word-spacing:-2.237440pt;}
.ws32{word-spacing:-2.071680pt;}
.ws56{word-spacing:-2.060800pt;}
.ws52{word-spacing:-1.943040pt;}
.ws7b{word-spacing:-1.884160pt;}
.wsc2{word-spacing:-1.648640pt;}
.ws42{word-spacing:-1.589760pt;}
.ws97{word-spacing:-1.530880pt;}
.ws4f{word-spacing:-1.413120pt;}
.ws43{word-spacing:-1.295360pt;}
.ws10{word-spacing:-1.123200pt;}
.ws2e{word-spacing:-1.062400pt;}
.ws8d{word-spacing:-0.942080pt;}
.ws7d{word-spacing:-0.765440pt;}
.ws5b{word-spacing:-0.647680pt;}
.wse{word-spacing:-0.449280pt;}
.wsb3{word-spacing:-0.424960pt;}
.wsa{word-spacing:-0.318720pt;}
.ws36{word-spacing:-0.294400pt;}
.ws76{word-spacing:-0.256000pt;}
.ws9c{word-spacing:-0.235520pt;}
.wsf{word-spacing:-0.224640pt;}
.ws8{word-spacing:-0.159360pt;}
.ws35{word-spacing:-0.117760pt;}
.ws33{word-spacing:-0.074880pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.053120pt;}
.wsae{word-spacing:0.106240pt;}
.ws4a{word-spacing:0.117760pt;}
.ws8e{word-spacing:0.149760pt;}
.wsb{word-spacing:0.212480pt;}
.ws84{word-spacing:0.256000pt;}
.ws9{word-spacing:0.265600pt;}
.wsd{word-spacing:0.288000pt;}
.ws13{word-spacing:0.299520pt;}
.ws6a{word-spacing:0.353280pt;}
.wsc7{word-spacing:0.412160pt;}
.ws1a{word-spacing:0.478080pt;}
.ws41{word-spacing:0.529920pt;}
.wsc{word-spacing:0.576000pt;}
.wsaf{word-spacing:0.584320pt;}
.ws70{word-spacing:0.647680pt;}
.wsb2{word-spacing:0.849920pt;}
.ws5d{word-spacing:1.000960pt;}
.ws27{word-spacing:1.115520pt;}
.ws98{word-spacing:1.177600pt;}
.ws12{word-spacing:1.280000pt;}
.ws40{word-spacing:1.295360pt;}
.ws3f{word-spacing:1.648640pt;}
.ws15{word-spacing:1.752960pt;}
.ws64{word-spacing:1.825280pt;}
.ws3e{word-spacing:1.943040pt;}
.ws14{word-spacing:2.284160pt;}
.ws22{word-spacing:2.390400pt;}
.ws71{word-spacing:2.472960pt;}
.ws34{word-spacing:2.590720pt;}
.ws21{word-spacing:2.762240pt;}
.ws6c{word-spacing:2.885120pt;}
.ws75{word-spacing:2.944000pt;}
.ws61{word-spacing:3.061760pt;}
.ws4e{word-spacing:3.179520pt;}
.wsa0{word-spacing:3.238400pt;}
.ws8a{word-spacing:3.532800pt;}
.ws66{word-spacing:3.709440pt;}
.ws5a{word-spacing:3.827200pt;}
.ws4b{word-spacing:4.180480pt;}
.ws7f{word-spacing:4.357120pt;}
.ws4c{word-spacing:4.474880pt;}
.ws2c{word-spacing:4.515200pt;}
.wse2{word-spacing:4.769280pt;}
.wsb0{word-spacing:4.940160pt;}
.ws95{word-spacing:5.004800pt;}
.ws67{word-spacing:5.122560pt;}
.wsc8{word-spacing:5.240320pt;}
.ws23{word-spacing:5.312000pt;}
.wsbd{word-spacing:5.534720pt;}
.ws62{word-spacing:5.652480pt;}
.ws24{word-spacing:5.683840pt;}
.ws65{word-spacing:5.770240pt;}
.ws58{word-spacing:6.123520pt;}
.ws57{word-spacing:6.300160pt;}
.ws49{word-spacing:6.417920pt;}
.wscf{word-spacing:6.947840pt;}
.ws5c{word-spacing:7.065600pt;}
.ws18{word-spacing:7.118080pt;}
.ws17{word-spacing:7.277440pt;}
.wse0{word-spacing:7.360000pt;}
.ws51{word-spacing:7.536640pt;}
.ws50{word-spacing:7.654400pt;}
.wse1{word-spacing:7.772160pt;}
.wsc0{word-spacing:8.007680pt;}
.ws37{word-spacing:8.184320pt;}
.ws92{word-spacing:8.302080pt;}
.ws2d{word-spacing:8.817920pt;}
.ws74{word-spacing:8.832000pt;}
.ws89{word-spacing:8.949760pt;}
.wsde{word-spacing:9.303040pt;}
.ws6d{word-spacing:9.479680pt;}
.ws6b{word-spacing:9.597440pt;}
.ws6f{word-spacing:10.127360pt;}
.ws96{word-spacing:10.245120pt;}
.ws26{word-spacing:10.305280pt;}
.ws19{word-spacing:10.730240pt;}
.wsa3{word-spacing:10.775040pt;}
.ws6e{word-spacing:10.892800pt;}
.ws88{word-spacing:11.246080pt;}
.wsb7{word-spacing:11.422720pt;}
.ws11{word-spacing:11.520000pt;}
.ws90{word-spacing:11.540480pt;}
.ws9b{word-spacing:11.893760pt;}
.ws73{word-spacing:12.070400pt;}
.ws77{word-spacing:12.188160pt;}
.ws25{word-spacing:12.217600pt;}
.ws99{word-spacing:12.482560pt;}
.ws38{word-spacing:12.659200pt;}
.ws3a{word-spacing:12.776960pt;}
.ws39{word-spacing:13.130240pt;}
.ws1c{word-spacing:13.280000pt;}
.ws9e{word-spacing:13.306880pt;}
.ws48{word-spacing:13.424640pt;}
.wsad{word-spacing:13.777920pt;}
.ws1b{word-spacing:13.917440pt;}
.ws9f{word-spacing:13.954560pt;}
.ws4d{word-spacing:14.072320pt;}
.ws1f{word-spacing:14.129920pt;}
.ws20{word-spacing:14.289280pt;}
.ws8c{word-spacing:14.602240pt;}
.ws63{word-spacing:14.720000pt;}
.ws60{word-spacing:15.249920pt;}
.ws5f{word-spacing:15.367680pt;}
.wsc1{word-spacing:15.897600pt;}
.ws91{word-spacing:16.015360pt;}
.ws1e{word-spacing:16.042240pt;}
.ws86{word-spacing:16.368640pt;}
.ws53{word-spacing:16.545280pt;}
.ws5e{word-spacing:16.663040pt;}
.wsbf{word-spacing:17.016320pt;}
.ws3c{word-spacing:17.192960pt;}
.ws3b{word-spacing:17.310720pt;}
.wsb4{word-spacing:17.781760pt;}
.ws8f{word-spacing:17.899520pt;}
.wsc4{word-spacing:18.252800pt;}
.ws72{word-spacing:18.429440pt;}
.ws78{word-spacing:18.547200pt;}
.ws93{word-spacing:19.077120pt;}
.ws94{word-spacing:19.194880pt;}
.wsd4{word-spacing:19.842560pt;}
.ws83{word-spacing:20.372480pt;}
.wsb8{word-spacing:20.490240pt;}
.ws87{word-spacing:20.843520pt;}
.wsb9{word-spacing:21.020160pt;}
.wsa2{word-spacing:21.137920pt;}
.wsa6{word-spacing:21.667840pt;}
.wsdd{word-spacing:21.785600pt;}
.ws7e{word-spacing:22.256640pt;}
.ws44{word-spacing:22.374400pt;}
.wsa1{word-spacing:22.433280pt;}
.wsd7{word-spacing:23.552000pt;}
.ws7c{word-spacing:23.669760pt;}
.wsb6{word-spacing:24.199680pt;}
.wsb5{word-spacing:24.317440pt;}
.ws30{word-spacing:24.382080pt;}
.ws2f{word-spacing:24.807040pt;}
.wsbb{word-spacing:24.965120pt;}
.ws16{word-spacing:25.656960pt;}
.wsc5{word-spacing:26.260480pt;}
.wsba{word-spacing:26.790400pt;}
.ws81{word-spacing:26.908160pt;}
.ws80{word-spacing:27.496960pt;}
.wse3{word-spacing:28.144640pt;}
.wsd2{word-spacing:28.497920pt;}
.wsd1{word-spacing:28.792320pt;}
.wsdb{word-spacing:30.087680pt;}
.wsda{word-spacing:30.735360pt;}
.wsc3{word-spacing:31.383040pt;}
.wscd{word-spacing:31.912960pt;}
.wsd5{word-spacing:32.501760pt;}
.wsd6{word-spacing:32.619520pt;}
.wsce{word-spacing:32.678400pt;}
.wsb1{word-spacing:34.793600pt;}
.wsdc{word-spacing:37.094400pt;}
.wsd3{word-spacing:37.742080pt;}
.ws79{word-spacing:40.862720pt;}
.wsc9{word-spacing:41.628160pt;}
.ws85{word-spacing:47.987200pt;}
.wsd8{word-spacing:52.992000pt;}
.wsd9{word-spacing:53.109760pt;}
.wsca{word-spacing:54.405120pt;}
.wscc{word-spacing:54.758400pt;}
.wscb{word-spacing:55.700480pt;}
.wsc6{word-spacing:64.532480pt;}
._14{margin-left:-13.870208pt;}
._2{margin-left:-12.188160pt;}
._15{margin-left:-4.416000pt;}
._5{margin-left:-2.850368pt;}
._0{margin-left:-1.131456pt;}
._1{width:1.428928pt;}
._c{width:2.831296pt;}
._7{width:4.737664pt;}
._12{width:8.248000pt;}
._f{width:10.362880pt;}
._10{width:11.380032pt;}
._6{width:12.307648pt;}
._13{width:13.402624pt;}
._b{width:17.920000pt;}
._d{width:28.275136pt;}
._11{width:31.101376pt;}
._e{width:37.970624pt;}
._a{width:40.450560pt;}
._9{width:443.658240pt;}
._4{width:668.940160pt;}
._3{width:884.888896pt;}
._8{width:1096.024960pt;}
.fsb{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fsc{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:2.880000pt;}
.y13e{bottom:3.359867pt;}
.y12a{bottom:3.360000pt;}
.y128{bottom:3.520000pt;}
.y162{bottom:18.240000pt;}
.y164{bottom:28.800000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y22{bottom:123.790666pt;}
.y19{bottom:175.052000pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y4d{bottom:247.520000pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y49{bottom:286.395040pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y1ee{bottom:287.345920pt;}
.y12d{bottom:290.880000pt;}
.yf3{bottom:293.936000pt;}
.y1a9{bottom:294.571520pt;}
.ya4{bottom:296.011520pt;}
.y219{bottom:297.111040pt;}
.y11d{bottom:299.077120pt;}
.y18f{bottom:300.647040pt;}
.yf8{bottom:300.800000pt;}
.y78{bottom:301.706880pt;}
.ycf{bottom:303.084160pt;}
.y1ed{bottom:304.303360pt;}
.y171{bottom:304.677120pt;}
.y19c{bottom:304.795520pt;}
.y48{bottom:306.400000pt;}
.y12c{bottom:306.720000pt;}
.y10{bottom:309.452000pt;}
.yf2{bottom:310.731520pt;}
.y1a8{bottom:311.367040pt;}
.y1cd{bottom:312.338560pt;}
.ya3{bottom:312.968960pt;}
.y218{bottom:313.906560pt;}
.y11c{bottom:316.034560pt;}
.ydc{bottom:316.041600pt;}
.y47{bottom:317.440000pt;}
.y18e{bottom:317.442560pt;}
.yf7{bottom:317.595520pt;}
.y77{bottom:318.502400pt;}
.yce{bottom:320.041600pt;}
.y111{bottom:320.085760pt;}
.y1ec{bottom:321.098880pt;}
.y19b{bottom:321.591040pt;}
.y170{bottom:321.634560pt;}
.y12b{bottom:322.560000pt;}
.yf1{bottom:327.688960pt;}
.y1a7{bottom:328.162560pt;}
.y1cc{bottom:329.134080pt;}
.ya2{bottom:329.764480pt;}
.y217{bottom:330.864000pt;}
.y11b{bottom:332.830080pt;}
.ydb{bottom:332.837120pt;}
.y18d{bottom:334.400000pt;}
.yf6{bottom:334.552960pt;}
.y76{bottom:335.459840pt;}
.ycd{bottom:336.837120pt;}
.y110{bottom:336.881280pt;}
.y1eb{bottom:337.894400pt;}
.y129{bottom:338.400000pt;}
.y16f{bottom:338.430080pt;}
.y19a{bottom:338.548480pt;}
.yf{bottom:343.809333pt;}
.yf0{bottom:344.484480pt;}
.y1a6{bottom:345.120000pt;}
.y1cb{bottom:346.091520pt;}
.ya1{bottom:346.560000pt;}
.y216{bottom:347.659520pt;}
.y11a{bottom:349.787520pt;}
.yda{bottom:349.794560pt;}
.y18c{bottom:350.240000pt;}
.yf5{bottom:351.348480pt;}
.y75{bottom:352.255360pt;}
.ycc{bottom:353.794560pt;}
.y10f{bottom:353.838720pt;}
.y127{bottom:354.240000pt;}
.y1ea{bottom:354.851840pt;}
.y16e{bottom:355.225600pt;}
.y199{bottom:355.344000pt;}
.y46{bottom:360.736000pt;}
.yef{bottom:361.280000pt;}
.y1a5{bottom:362.240000pt;}
.ye{bottom:362.706666pt;}
.y1ca{bottom:362.887040pt;}
.y18b{bottom:363.531520pt;}
.ya0{bottom:364.320000pt;}
.y215{bottom:364.616960pt;}
.y119{bottom:366.583040pt;}
.yd9{bottom:366.590080pt;}
.yf4{bottom:368.305920pt;}
.y74{bottom:369.050880pt;}
.ycb{bottom:370.590080pt;}
.y10e{bottom:370.634240pt;}
.y1e9{bottom:371.647360pt;}
.y16d{bottom:372.183040pt;}
.y198{bottom:372.301440pt;}
.y45{bottom:376.100960pt;}
.yee{bottom:378.400000pt;}
.y1c9{bottom:379.682560pt;}
.y18a{bottom:380.327040pt;}
.y1a4{bottom:380.341120pt;}
.y214{bottom:381.412480pt;}
.y126{bottom:381.921120pt;}
.y118{bottom:383.378560pt;}
.yd8{bottom:383.385600pt;}
.y9f{bottom:385.101440pt;}
.y73{bottom:386.008320pt;}
.yca{bottom:387.385600pt;}
.y10d{bottom:387.429760pt;}
.y1e8{bottom:388.604800pt;}
.y16c{bottom:388.978560pt;}
.y197{bottom:389.096960pt;}
.y44{bottom:391.306560pt;}
.yed{bottom:396.640000pt;}
.y189{bottom:397.284480pt;}
.y1a3{bottom:397.298560pt;}
.y213{bottom:398.208000pt;}
.y117{bottom:400.336000pt;}
.yd7{bottom:400.343040pt;}
.y9e{bottom:401.896960pt;}
.y72{bottom:402.803840pt;}
.yc9{bottom:404.343040pt;}
.y10c{bottom:404.387200pt;}
.y1e7{bottom:405.400320pt;}
.y125{bottom:405.440000pt;}
.y196{bottom:405.892480pt;}
.y16b{bottom:405.936000pt;}
.y43{bottom:406.671520pt;}
.y153{bottom:406.938240pt;}
.y188{bottom:414.080000pt;}
.y1a2{bottom:414.094080pt;}
.yec{bottom:414.240000pt;}
.y212{bottom:415.165440pt;}
.y116{bottom:417.131520pt;}
.yd6{bottom:417.138560pt;}
.y9d{bottom:418.854400pt;}
.y71{bottom:419.761280pt;}
.y124{bottom:421.134080pt;}
.yc8{bottom:421.138560pt;}
.y10b{bottom:421.182720pt;}
.y1e6{bottom:422.195840pt;}
.y16a{bottom:422.731520pt;}
.y195{bottom:422.849920pt;}
.y152{bottom:423.895680pt;}
.y187{bottom:429.920000pt;}
.y42{bottom:430.031040pt;}
.y1a1{bottom:430.889600pt;}
.yd{bottom:430.990669pt;}
.y211{bottom:431.960960pt;}
.y115{bottom:434.088960pt;}
.yd5{bottom:434.096000pt;}
.y1c8{bottom:434.924160pt;}
.yeb{bottom:434.926720pt;}
.y9c{bottom:435.649920pt;}
.y70{bottom:436.556800pt;}
.y123{bottom:438.091520pt;}
.yc7{bottom:438.096000pt;}
.y10a{bottom:438.140160pt;}
.y1e5{bottom:439.153280pt;}
.y169{bottom:439.527040pt;}
.y194{bottom:439.645440pt;}
.y151{bottom:440.691200pt;}
.y186{bottom:443.230080pt;}
.y41{bottom:445.396000pt;}
.yc{bottom:446.990669pt;}
.y1a0{bottom:447.847040pt;}
.y210{bottom:448.918400pt;}
.y114{bottom:450.884480pt;}
.yd4{bottom:450.891520pt;}
.y1c7{bottom:451.881600pt;}
.yea{bottom:451.884160pt;}
.y9b{bottom:452.607360pt;}
.y6f{bottom:453.352320pt;}
.y122{bottom:454.887040pt;}
.yc6{bottom:454.891520pt;}
.y109{bottom:454.935680pt;}
.y1e4{bottom:455.948800pt;}
.y168{bottom:456.484480pt;}
.y193{bottom:456.602880pt;}
.y150{bottom:457.486720pt;}
.y185{bottom:460.025600pt;}
.y40{bottom:460.760960pt;}
.yb{bottom:462.990669pt;}
.y19f{bottom:464.642560pt;}
.y20f{bottom:465.713920pt;}
.y113{bottom:467.680000pt;}
.yd3{bottom:467.687040pt;}
.y1c6{bottom:468.677120pt;}
.ye9{bottom:468.679680pt;}
.y9a{bottom:469.402880pt;}
.y6e{bottom:470.309760pt;}
.y121{bottom:471.682560pt;}
.yc5{bottom:471.687040pt;}
.y108{bottom:471.731200pt;}
.y167{bottom:473.280000pt;}
.y192{bottom:473.398400pt;}
.y14f{bottom:474.444160pt;}
.y3f{bottom:476.125920pt;}
.y184{bottom:476.983040pt;}
.ya{bottom:478.990666pt;}
.y19e{bottom:481.600000pt;}
.y20e{bottom:482.509440pt;}
.yd2{bottom:484.644480pt;}
.y112{bottom:484.800000pt;}
.y1c5{bottom:485.634560pt;}
.ye8{bottom:485.637120pt;}
.y99{bottom:486.198400pt;}
.y6d{bottom:487.105280pt;}
.y166{bottom:487.520000pt;}
.y120{bottom:488.640000pt;}
.yc4{bottom:488.644480pt;}
.y107{bottom:488.688640pt;}
.y1e3{bottom:488.744960pt;}
.y191{bottom:490.193920pt;}
.y14e{bottom:491.239680pt;}
.y183{bottom:493.778560pt;}
.y9{bottom:494.990666pt;}
.y19d{bottom:499.200000pt;}
.y3e{bottom:499.326080pt;}
.y20d{bottom:499.466880pt;}
.yd1{bottom:501.440000pt;}
.y1c4{bottom:502.430080pt;}
.ye7{bottom:502.432640pt;}
.y163{bottom:502.880000pt;}
.y98{bottom:503.155840pt;}
.y6c{bottom:504.062720pt;}
.yc3{bottom:505.440000pt;}
.y106{bottom:505.484160pt;}
.y1e2{bottom:505.702400pt;}
.y11f{bottom:505.760000pt;}
.y190{bottom:507.151360pt;}
.y14d{bottom:508.197120pt;}
.y182{bottom:510.736000pt;}
.y3d{bottom:514.691040pt;}
.y20c{bottom:516.262400pt;}
.y165{bottom:516.320000pt;}
.yd0{bottom:518.560000pt;}
.y1c3{bottom:519.225600pt;}
.ye6{bottom:519.228160pt;}
.y97{bottom:519.951360pt;}
.y6b{bottom:520.858240pt;}
.y105{bottom:522.441600pt;}
.y1e1{bottom:522.497920pt;}
.yc2{bottom:522.560000pt;}
.y11e{bottom:523.946880pt;}
.y14c{bottom:524.992640pt;}
.y181{bottom:527.531520pt;}
.y3c{bottom:530.056000pt;}
.y20b{bottom:533.219840pt;}
.y1c2{bottom:536.183040pt;}
.ye5{bottom:536.185600pt;}
.y96{bottom:536.908800pt;}
.y6a{bottom:537.653760pt;}
.y104{bottom:539.237120pt;}
.yc1{bottom:540.904320pt;}
.y14b{bottom:541.950080pt;}
.y161{bottom:544.160000pt;}
.y180{bottom:544.488960pt;}
.y20a{bottom:550.015360pt;}
.y1c1{bottom:552.978560pt;}
.ye4{bottom:552.981120pt;}
.y3b{bottom:553.415520pt;}
.y95{bottom:553.704320pt;}
.y69{bottom:554.611200pt;}
.y1e0{bottom:555.294080pt;}
.y103{bottom:556.032640pt;}
.yc0{bottom:557.699840pt;}
.y14a{bottom:558.745600pt;}
.y17f{bottom:561.284480pt;}
.y209{bottom:566.972800pt;}
.y3a{bottom:568.780480pt;}
.y1c0{bottom:569.936000pt;}
.ye3{bottom:569.938560pt;}
.y94{bottom:570.499840pt;}
.y68{bottom:571.406720pt;}
.y1df{bottom:572.251520pt;}
.y102{bottom:572.990080pt;}
.y8{bottom:573.786667pt;}
.ybf{bottom:574.495360pt;}
.y160{bottom:574.880000pt;}
.y149{bottom:575.541120pt;}
.y17e{bottom:578.080000pt;}
.y208{bottom:583.768320pt;}
.y1bf{bottom:586.731520pt;}
.ye2{bottom:586.734080pt;}
.y93{bottom:587.457280pt;}
.y67{bottom:588.364160pt;}
.y1de{bottom:589.208960pt;}
.y101{bottom:589.785600pt;}
.ybe{bottom:591.452800pt;}
.y15e{bottom:591.520000pt;}
.y39{bottom:591.980640pt;}
.y148{bottom:592.498560pt;}
.y7{bottom:592.685334pt;}
.y17d{bottom:593.920000pt;}
.y207{bottom:600.563840pt;}
.y1be{bottom:603.527040pt;}
.ye1{bottom:603.529600pt;}
.y92{bottom:604.252800pt;}
.y66{bottom:605.159680pt;}
.y1dd{bottom:606.004480pt;}
.y100{bottom:606.743040pt;}
.y17c{bottom:607.232640pt;}
.y38{bottom:607.345600pt;}
.ybd{bottom:608.248320pt;}
.y147{bottom:609.294080pt;}
.y15d{bottom:610.400000pt;}
.y206{bottom:617.521280pt;}
.y1bd{bottom:620.484480pt;}
.ye0{bottom:620.487040pt;}
.y91{bottom:621.210240pt;}
.y65{bottom:621.955200pt;}
.y37{bottom:622.710560pt;}
.y1dc{bottom:622.800000pt;}
.yff{bottom:623.538560pt;}
.y17b{bottom:624.190080pt;}
.ybc{bottom:625.205760pt;}
.y15c{bottom:626.104187pt;}
.y146{bottom:626.251520pt;}
.y205{bottom:634.316800pt;}
.y1bc{bottom:637.280000pt;}
.ydf{bottom:637.282560pt;}
.y90{bottom:638.005760pt;}
.y64{bottom:638.912640pt;}
.y1db{bottom:639.757440pt;}
.yfe{bottom:640.334080pt;}
.y17a{bottom:640.985600pt;}
.ybb{bottom:642.001280pt;}
.y145{bottom:643.047040pt;}
.y15b{bottom:643.061627pt;}
.y6{bottom:645.598667pt;}
.y36{bottom:646.070080pt;}
.y204{bottom:651.274240pt;}
.yde{bottom:654.240000pt;}
.y1bb{bottom:654.400000pt;}
.y8f{bottom:654.801280pt;}
.y63{bottom:655.708160pt;}
.y1da{bottom:656.552960pt;}
.yfd{bottom:657.291520pt;}
.y179{bottom:657.943040pt;}
.yba{bottom:658.796800pt;}
.y144{bottom:659.842560pt;}
.y15a{bottom:659.857147pt;}
.y35{bottom:661.435040pt;}
.y203{bottom:668.069760pt;}
.y3{bottom:668.977329pt;}
.y8e{bottom:671.758720pt;}
.ydd{bottom:671.840000pt;}
.y1ba{bottom:672.662907pt;}
.y62{bottom:672.665600pt;}
.y1d9{bottom:673.510400pt;}
.yfc{bottom:674.087040pt;}
.y178{bottom:674.738560pt;}
.yb9{bottom:675.754240pt;}
.y159{bottom:676.652667pt;}
.y34{bottom:676.800000pt;}
.y202{bottom:684.865280pt;}
.y8d{bottom:688.554240pt;}
.y1b9{bottom:689.458427pt;}
.y61{bottom:689.461120pt;}
.y1d8{bottom:690.305920pt;}
.y143{bottom:691.040000pt;}
.yfb{bottom:691.044480pt;}
.y177{bottom:691.534080pt;}
.yb8{bottom:692.549760pt;}
.y158{bottom:693.610107pt;}
.y33{bottom:701.280000pt;}
.y201{bottom:701.822720pt;}
.y8c{bottom:705.511680pt;}
.y1b8{bottom:706.415867pt;}
.y60{bottom:706.418560pt;}
.y142{bottom:706.880000pt;}
.y1d7{bottom:707.101440pt;}
.yfa{bottom:707.840000pt;}
.y176{bottom:708.491520pt;}
.yb7{bottom:709.507200pt;}
.y157{bottom:710.405627pt;}
.y200{bottom:718.618240pt;}
.y8b{bottom:722.307200pt;}
.y141{bottom:722.720000pt;}
.y1b7{bottom:723.211387pt;}
.y5f{bottom:723.214080pt;}
.y1d6{bottom:724.058880pt;}
.yf9{bottom:724.960000pt;}
.y175{bottom:725.287040pt;}
.yb6{bottom:726.302720pt;}
.y156{bottom:727.363067pt;}
.y32{bottom:729.920000pt;}
.y1ff{bottom:735.575680pt;}
.y140{bottom:738.560000pt;}
.y8a{bottom:739.102720pt;}
.y1b6{bottom:740.006907pt;}
.y5e{bottom:740.009600pt;}
.y1d5{bottom:740.854400pt;}
.y174{bottom:742.244480pt;}
.yb5{bottom:743.260160pt;}
.y155{bottom:744.158587pt;}
.y31{bottom:747.040000pt;}
.y1fe{bottom:752.371200pt;}
.y13f{bottom:754.560000pt;}
.y89{bottom:756.060160pt;}
.y1b5{bottom:756.964347pt;}
.y5d{bottom:756.967040pt;}
.y154{bottom:757.759867pt;}
.y173{bottom:759.040000pt;}
.yb4{bottom:760.055680pt;}
.y30{bottom:765.440000pt;}
.y1fd{bottom:769.166720pt;}
.y13d{bottom:770.400000pt;}
.y88{bottom:772.855680pt;}
.y1b4{bottom:773.759867pt;}
.y5c{bottom:773.762560pt;}
.y1d4{bottom:773.812480pt;}
.y172{bottom:775.200000pt;}
.yb3{bottom:776.851200pt;}
.y2{bottom:781.661334pt;}
.y1fc{bottom:786.124160pt;}
.y13c{bottom:786.240000pt;}
.y87{bottom:789.813120pt;}
.y2f{bottom:789.920000pt;}
.y1d3{bottom:790.608000pt;}
.y5b{bottom:790.720000pt;}
.y1b3{bottom:790.880000pt;}
.yb2{bottom:793.808640pt;}
.y13b{bottom:802.080000pt;}
.y2e{bottom:802.240000pt;}
.y1fb{bottom:802.919680pt;}
.y86{bottom:806.608640pt;}
.y1d2{bottom:807.565440pt;}
.y5a{bottom:808.320000pt;}
.y1b2{bottom:809.147520pt;}
.yb1{bottom:810.604160pt;}
.y13a{bottom:817.920000pt;}
.y1fa{bottom:819.877120pt;}
.y85{bottom:823.566080pt;}
.y1d1{bottom:824.360960pt;}
.y1b1{bottom:825.943040pt;}
.y2d{bottom:826.720000pt;}
.yb0{bottom:827.561600pt;}
.y59{bottom:828.962560pt;}
.y139{bottom:833.760000pt;}
.y1f9{bottom:836.672640pt;}
.y84{bottom:840.361600pt;}
.y1d0{bottom:841.156480pt;}
.y1b0{bottom:842.738560pt;}
.yaf{bottom:844.357120pt;}
.y58{bottom:845.920000pt;}
.y2c{bottom:846.236000pt;}
.y138{bottom:849.760000pt;}
.y1f8{bottom:853.468160pt;}
.y83{bottom:857.157120pt;}
.y1cf{bottom:858.113920pt;}
.y1{bottom:859.312000pt;}
.y1af{bottom:859.696000pt;}
.y2b{bottom:860.960000pt;}
.yae{bottom:861.152640pt;}
.y57{bottom:863.520000pt;}
.y137{bottom:865.600000pt;}
.y1f7{bottom:870.425600pt;}
.y82{bottom:874.114560pt;}
.y1ae{bottom:876.491520pt;}
.yad{bottom:878.110080pt;}
.y136{bottom:881.440000pt;}
.y2a{bottom:881.760000pt;}
.y56{bottom:884.160000pt;}
.y1f6{bottom:887.221120pt;}
.y1ce{bottom:890.748160pt;}
.y81{bottom:890.910080pt;}
.y1ad{bottom:893.448960pt;}
.yac{bottom:894.905600pt;}
.y135{bottom:897.280000pt;}
.y29{bottom:900.488000pt;}
.y55{bottom:901.760000pt;}
.y1f5{bottom:904.178560pt;}
.y80{bottom:907.867520pt;}
.y1ac{bottom:910.244480pt;}
.yab{bottom:911.863040pt;}
.y134{bottom:913.120000pt;}
.y1f4{bottom:920.974080pt;}
.y54{bottom:922.049600pt;}
.y7f{bottom:924.663040pt;}
.y1ab{bottom:927.040000pt;}
.y28{bottom:928.160000pt;}
.yaa{bottom:928.658560pt;}
.y133{bottom:928.960000pt;}
.y53{bottom:937.414560pt;}
.y1f3{bottom:937.769600pt;}
.y7e{bottom:941.458560pt;}
.y1aa{bottom:944.160000pt;}
.y132{bottom:944.960000pt;}
.ya9{bottom:945.454080pt;}
.y52{bottom:952.779520pt;}
.y27{bottom:954.565600pt;}
.y1f2{bottom:954.727040pt;}
.y7d{bottom:958.416000pt;}
.y131{bottom:960.800000pt;}
.ya8{bottom:962.411520pt;}
.y51{bottom:968.144480pt;}
.y1f1{bottom:971.522560pt;}
.y7c{bottom:975.211520pt;}
.y26{bottom:976.000000pt;}
.y130{bottom:976.640000pt;}
.ya7{bottom:979.207040pt;}
.y50{bottom:983.509440pt;}
.y1f0{bottom:988.480000pt;}
.y7b{bottom:992.168960pt;}
.y12f{bottom:992.480000pt;}
.ya6{bottom:996.164480pt;}
.y25{bottom:996.320000pt;}
.y4f{bottom:998.715040pt;}
.y1ef{bottom:1006.720000pt;}
.y7a{bottom:1008.964480pt;}
.y24{bottom:1011.675040pt;}
.ya5{bottom:1012.960000pt;}
.y4e{bottom:1014.080000pt;}
.y12e{bottom:1018.720000pt;}
.y79{bottom:1025.760000pt;}
.y23{bottom:1027.040000pt;}
.y4c{bottom:1029.440000pt;}
.y4b{bottom:1046.715040pt;}
.y4a{bottom:1062.080000pt;}
.h1d{height:15.360000pt;}
.h19{height:15.840000pt;}
.h1b{height:16.000000pt;}
.h1a{height:16.001333pt;}
.h14{height:24.063750pt;}
.h7{height:28.560000pt;}
.hf{height:29.856875pt;}
.h1e{height:30.720000pt;}
.he{height:33.421875pt;}
.h9{height:36.001250pt;}
.h13{height:36.986875pt;}
.h1c{height:39.876250pt;}
.h17{height:39.905000pt;}
.h6{height:40.800000pt;}
.h18{height:40.882500pt;}
.hc{height:40.997500pt;}
.h1f{height:41.280000pt;}
.h3{height:42.840000pt;}
.h16{height:43.375000pt;}
.h10{height:44.437500pt;}
.h2{height:48.960000pt;}
.h12{height:50.748750pt;}
.hb{height:52.138125pt;}
.h11{height:54.176875pt;}
.h15{height:57.688750pt;}
.hd{height:60.301875pt;}
.ha{height:65.062500pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:168.320000pt;}
.w5{width:205.280000pt;}
.w4{width:286.080000pt;}
.w7{width:323.040000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:151.200000pt;}
.x6{left:160.473440pt;}
.x4{left:180.874667pt;}
.x12{left:188.956800pt;}
.x9{left:209.280000pt;}
.x8{left:251.676160pt;}
.xf{left:265.120000pt;}
.xb{left:270.082240pt;}
.xa{left:277.280000pt;}
.x10{left:319.520000pt;}
.x11{left:326.720000pt;}
.x7{left:396.800000pt;}
.x3{left:404.408000pt;}
.xd{left:437.280000pt;}
.xe{left:643.200000pt;}
}




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