
    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_3eb4c912ffde406d59b9a714.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.197000;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_966f4053c36ace219e5d7292.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e6664757e57a589d9daca782.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_f21ae9754883efb5a7acc972.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.213000;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_a7e98cfac4c63badd2a12388.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8036c362b50281760b3bd217.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.222000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.256000;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_3eb4c912ffde406d59b9a714.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.197000;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_4653e87e2a8d804589d3f56a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.230000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.256000;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_b3a11fb2d57aacdb6f6e881e.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3d4fb54d45b971453ff7c470.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2bda967f19de5d9de4e78874.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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_31f23700a069187f400bacda.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.399963px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.400513px;}
.v1{vertical-align:24.000000px;}
.ls11{letter-spacing:-12.750000px;}
.ls5{letter-spacing:-5.100000px;}
.ls13{letter-spacing:-3.774000px;}
.ls3{letter-spacing:-2.220000px;}
.lsa{letter-spacing:-1.377000px;}
.ls12{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.714000px;}
.ls9{letter-spacing:-0.102000px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.000037px;}
.ls7{letter-spacing:0.000046px;}
.ls6{letter-spacing:0.000183px;}
.lse{letter-spacing:0.000582px;}
.lsc{letter-spacing:0.000583px;}
.ls2{letter-spacing:0.000652px;}
.lsd{letter-spacing:0.000732px;}
.lsf{letter-spacing:0.007771px;}
.ls10{letter-spacing:15.708000px;}
.ls17{letter-spacing:27.307191px;}
.ls0{letter-spacing:53.015396px;}
.ls14{letter-spacing:53.015435px;}
.ls16{letter-spacing:53.015985px;}
.ls15{letter-spacing:53.016076px;}
.ls4{letter-spacing:168.997779px;}
.ls8{letter-spacing:168.998374px;}
.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;}
}
.ws3{word-spacing:-18.432000px;}
.ws19{word-spacing:-15.000000px;}
.ws18{word-spacing:-14.544000px;}
.ws1a{word-spacing:-12.780000px;}
.ws7b{word-spacing:-12.750000px;}
.ws97{word-spacing:-12.648000px;}
.ws50{word-spacing:-12.474000px;}
.ws4{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.120000px;}
.ws2{word-spacing:-11.520000px;}
.ws0{word-spacing:-9.996000px;}
.wsdb{word-spacing:-9.792000px;}
.wsfe{word-spacing:-8.976000px;}
.ws96{word-spacing:-8.925000px;}
.ws90{word-spacing:-6.375000px;}
.wsd7{word-spacing:-3.600000px;}
.ws37{word-spacing:-3.180000px;}
.ws10d{word-spacing:-3.162000px;}
.wsc8{word-spacing:-3.120000px;}
.ws58{word-spacing:-2.820000px;}
.wsf6{word-spacing:-2.640000px;}
.ws33{word-spacing:-2.580000px;}
.ws2c{word-spacing:-2.460000px;}
.wsf3{word-spacing:-2.400000px;}
.ws10a{word-spacing:-2.346000px;}
.wsda{word-spacing:-2.340000px;}
.ws31{word-spacing:-2.280000px;}
.wsbd{word-spacing:-2.220000px;}
.ws88{word-spacing:-2.100000px;}
.ws68{word-spacing:-2.040000px;}
.ws110{word-spacing:-1.989000px;}
.ws49{word-spacing:-1.800000px;}
.ws2d{word-spacing:-1.740000px;}
.ws99{word-spacing:-1.680000px;}
.ws47{word-spacing:-1.560000px;}
.ws48{word-spacing:-1.500000px;}
.ws8{word-spacing:-1.440000px;}
.ws8f{word-spacing:-1.380000px;}
.wsab{word-spacing:-1.377000px;}
.ws1f{word-spacing:-1.320000px;}
.wscd{word-spacing:-1.260000px;}
.ws9{word-spacing:-1.200000px;}
.ws100{word-spacing:-1.173000px;}
.ws8e{word-spacing:-1.140000px;}
.wsb9{word-spacing:-1.080000px;}
.ws38{word-spacing:-1.020000px;}
.ws105{word-spacing:-0.969000px;}
.ws60{word-spacing:-0.900000px;}
.wsc{word-spacing:-0.840000px;}
.wsf0{word-spacing:-0.816000px;}
.wsc7{word-spacing:-0.780000px;}
.ws36{word-spacing:-0.720000px;}
.ws63{word-spacing:-0.660000px;}
.wse{word-spacing:-0.600000px;}
.wscc{word-spacing:-0.561000px;}
.wsb8{word-spacing:-0.540000px;}
.wse1{word-spacing:-0.459000px;}
.wsc5{word-spacing:-0.420000px;}
.wsbe{word-spacing:-0.360000px;}
.ws29{word-spacing:-0.300000px;}
.ws112{word-spacing:-0.255000px;}
.wsce{word-spacing:-0.240000px;}
.ws85{word-spacing:-0.180000px;}
.ws83{word-spacing:-0.120000px;}
.ws1e{word-spacing:-0.060000px;}
.ws103{word-spacing:-0.051000px;}
.ws7{word-spacing:0.000000px;}
.wsa{word-spacing:0.060000px;}
.ws8d{word-spacing:0.120000px;}
.wsd{word-spacing:0.180000px;}
.ws7f{word-spacing:0.240000px;}
.wsf4{word-spacing:0.300000px;}
.ws107{word-spacing:0.306000px;}
.ws113{word-spacing:0.357000px;}
.ws86{word-spacing:0.360000px;}
.ws108{word-spacing:0.408000px;}
.ws4b{word-spacing:0.420000px;}
.wsee{word-spacing:0.459000px;}
.ws79{word-spacing:0.480000px;}
.wse9{word-spacing:0.561000px;}
.ws5c{word-spacing:0.600000px;}
.wsec{word-spacing:0.612000px;}
.ws104{word-spacing:0.663000px;}
.wsad{word-spacing:0.714000px;}
.wscb{word-spacing:0.720000px;}
.ws56{word-spacing:0.840000px;}
.ws75{word-spacing:0.900000px;}
.wsfb{word-spacing:0.918000px;}
.ws8b{word-spacing:0.960000px;}
.wsef{word-spacing:0.969000px;}
.ws66{word-spacing:1.020000px;}
.ws3c{word-spacing:1.080000px;}
.ws6a{word-spacing:1.140000px;}
.wsf2{word-spacing:1.200000px;}
.wsfc{word-spacing:1.224000px;}
.wsdc{word-spacing:1.326000px;}
.wsac{word-spacing:1.377000px;}
.ws5b{word-spacing:1.560000px;}
.wsdd{word-spacing:1.734000px;}
.ws14{word-spacing:1.740000px;}
.ws26{word-spacing:1.920000px;}
.wsbc{word-spacing:2.040000px;}
.wsea{word-spacing:2.091000px;}
.ws2a{word-spacing:2.100000px;}
.ws109{word-spacing:2.142000px;}
.ws16{word-spacing:2.220000px;}
.ws77{word-spacing:2.280000px;}
.ws69{word-spacing:2.340000px;}
.ws2e{word-spacing:2.400000px;}
.ws32{word-spacing:2.460000px;}
.ws9b{word-spacing:2.520000px;}
.ws9c{word-spacing:2.580000px;}
.ws12{word-spacing:2.640000px;}
.wse2{word-spacing:2.652000px;}
.ws21{word-spacing:2.700000px;}
.wsff{word-spacing:2.703000px;}
.ws30{word-spacing:2.820000px;}
.ws13{word-spacing:2.880000px;}
.ws40{word-spacing:2.940000px;}
.ws1b{word-spacing:3.009000px;}
.ws4f{word-spacing:3.180000px;}
.wsa9{word-spacing:3.213000px;}
.ws4e{word-spacing:3.240000px;}
.ws10{word-spacing:3.300000px;}
.wsdf{word-spacing:3.366000px;}
.ws106{word-spacing:3.417000px;}
.ws87{word-spacing:3.420000px;}
.wse3{word-spacing:3.468000px;}
.wsc4{word-spacing:3.480000px;}
.wsaa{word-spacing:3.570000px;}
.wsa2{word-spacing:3.600000px;}
.ws44{word-spacing:3.660000px;}
.ws1c{word-spacing:3.840000px;}
.ws76{word-spacing:3.960000px;}
.ws23{word-spacing:4.020000px;}
.wsf8{word-spacing:4.029000px;}
.wsf{word-spacing:4.080000px;}
.ws59{word-spacing:4.140000px;}
.ws15{word-spacing:4.200000px;}
.wse4{word-spacing:4.233000px;}
.ws8a{word-spacing:4.260000px;}
.wsc2{word-spacing:4.320000px;}
.wsa3{word-spacing:4.380000px;}
.ws102{word-spacing:4.437000px;}
.ws7e{word-spacing:4.440000px;}
.wseb{word-spacing:4.488000px;}
.ws17{word-spacing:4.500000px;}
.ws4c{word-spacing:4.560000px;}
.wse0{word-spacing:4.590000px;}
.ws9d{word-spacing:4.620000px;}
.ws67{word-spacing:4.680000px;}
.ws1d{word-spacing:4.740000px;}
.ws10e{word-spacing:4.743000px;}
.wsf1{word-spacing:4.845000px;}
.ws5e{word-spacing:4.980000px;}
.ws11{word-spacing:5.040000px;}
.ws6b{word-spacing:5.100000px;}
.ws43{word-spacing:5.160000px;}
.ws5a{word-spacing:5.280000px;}
.ws27{word-spacing:5.340000px;}
.wsf9{word-spacing:5.355000px;}
.ws2f{word-spacing:5.460000px;}
.wse5{word-spacing:5.508000px;}
.wsd0{word-spacing:5.520000px;}
.ws98{word-spacing:5.640000px;}
.wse6{word-spacing:5.661000px;}
.wsb{word-spacing:5.700000px;}
.ws74{word-spacing:5.760000px;}
.ws94{word-spacing:5.763000px;}
.ws39{word-spacing:5.820000px;}
.ws28{word-spacing:5.940000px;}
.wsd2{word-spacing:6.000000px;}
.ws24{word-spacing:6.120000px;}
.ws71{word-spacing:6.180000px;}
.wsa6{word-spacing:6.300000px;}
.wsed{word-spacing:6.477000px;}
.ws3d{word-spacing:6.480000px;}
.ws61{word-spacing:6.540000px;}
.wsca{word-spacing:6.600000px;}
.ws42{word-spacing:6.660000px;}
.ws73{word-spacing:6.720000px;}
.ws35{word-spacing:6.780000px;}
.ws10c{word-spacing:6.834000px;}
.wsc3{word-spacing:6.840000px;}
.ws7d{word-spacing:6.900000px;}
.wsae{word-spacing:6.936000px;}
.wsf5{word-spacing:7.020000px;}
.wsd3{word-spacing:7.080000px;}
.wse7{word-spacing:7.191000px;}
.wsa0{word-spacing:7.200000px;}
.ws101{word-spacing:7.242000px;}
.wsfd{word-spacing:7.344000px;}
.ws3f{word-spacing:7.380000px;}
.ws57{word-spacing:7.500000px;}
.wse8{word-spacing:7.548000px;}
.ws4a{word-spacing:7.620000px;}
.wsfa{word-spacing:7.650000px;}
.ws65{word-spacing:7.680000px;}
.ws45{word-spacing:7.800000px;}
.wsa7{word-spacing:7.860000px;}
.wsa1{word-spacing:7.920000px;}
.ws10f{word-spacing:8.058000px;}
.ws34{word-spacing:8.100000px;}
.ws7a{word-spacing:8.160000px;}
.ws3b{word-spacing:8.220000px;}
.ws22{word-spacing:8.280000px;}
.ws8c{word-spacing:8.400000px;}
.ws53{word-spacing:8.520000px;}
.ws80{word-spacing:8.580000px;}
.ws55{word-spacing:8.640000px;}
.ws82{word-spacing:8.700000px;}
.ws6e{word-spacing:8.760000px;}
.wsd6{word-spacing:8.820000px;}
.wsd1{word-spacing:8.940000px;}
.ws3a{word-spacing:9.000000px;}
.ws5d{word-spacing:9.180000px;}
.ws3e{word-spacing:9.300000px;}
.ws10b{word-spacing:9.435000px;}
.wsb7{word-spacing:9.480000px;}
.wsd9{word-spacing:9.660000px;}
.wsbb{word-spacing:9.720000px;}
.ws81{word-spacing:9.780000px;}
.ws6f{word-spacing:9.840000px;}
.wsa5{word-spacing:9.960000px;}
.ws9f{word-spacing:10.500000px;}
.wsc1{word-spacing:10.560000px;}
.wsde{word-spacing:10.659000px;}
.ws2b{word-spacing:10.680000px;}
.ws54{word-spacing:10.740000px;}
.ws89{word-spacing:11.040000px;}
.ws72{word-spacing:11.160000px;}
.wsc0{word-spacing:11.280000px;}
.wsc9{word-spacing:11.400000px;}
.ws41{word-spacing:11.460000px;}
.wsa4{word-spacing:11.520000px;}
.wsbf{word-spacing:11.580000px;}
.wsd5{word-spacing:11.940000px;}
.ws5f{word-spacing:12.120000px;}
.wsa8{word-spacing:12.420000px;}
.wscf{word-spacing:12.660000px;}
.wsaf{word-spacing:12.750000px;}
.ws70{word-spacing:12.840000px;}
.wsd4{word-spacing:13.020000px;}
.ws25{word-spacing:13.200000px;}
.ws78{word-spacing:13.380000px;}
.ws9a{word-spacing:13.740000px;}
.ws84{word-spacing:14.160000px;}
.ws51{word-spacing:14.880000px;}
.ws52{word-spacing:14.940000px;}
.ws6c{word-spacing:15.420000px;}
.ws9e{word-spacing:15.600000px;}
.wsc6{word-spacing:16.140000px;}
.wsba{word-spacing:16.560000px;}
.ws20{word-spacing:16.620000px;}
.wsd8{word-spacing:16.800000px;}
.ws4d{word-spacing:17.640000px;}
.ws62{word-spacing:17.700000px;}
.ws111{word-spacing:18.003000px;}
.ws64{word-spacing:21.060000px;}
.ws6d{word-spacing:22.500000px;}
.ws46{word-spacing:23.400000px;}
.ws93{word-spacing:37.332000px;}
.ws92{word-spacing:38.250000px;}
.ws91{word-spacing:41.463000px;}
.ws115{word-spacing:44.321294px;}
.ws114{word-spacing:44.321477px;}
.ws5{word-spacing:44.950165px;}
.ws6{word-spacing:44.950897px;}
.wsf7{word-spacing:54.468000px;}
.wsb1{word-spacing:181.042189px;}
.wsb2{word-spacing:181.524672px;}
.wsb0{word-spacing:181.593062px;}
.wsb4{word-spacing:182.419189px;}
.wsb3{word-spacing:182.901672px;}
.wsb6{word-spacing:182.970062px;}
.wsb5{word-spacing:578.327066px;}
.ws95{word-spacing:987.902315px;}
.ws7c{word-spacing:1160.792383px;}
._43{margin-left:-70.498787px;}
._3b{margin-left:-12.781692px;}
._3c{margin-left:-11.755622px;}
._5{margin-left:-7.753077px;}
._4{margin-left:-6.719462px;}
._39{margin-left:-5.712474px;}
._2{margin-left:-4.494000px;}
._3{margin-left:-2.514000px;}
._0{margin-left:-1.020000px;}
._6{width:1.722000px;}
._9{width:3.378000px;}
._d{width:4.972178px;}
._c{width:6.420000px;}
._8{width:7.883999px;}
._7{width:8.916000px;}
._10{width:9.972000px;}
._a{width:11.676000px;}
._b{width:13.242000px;}
._3a{width:14.351400px;}
._f{width:16.049999px;}
._1{width:17.876410px;}
._11{width:19.113538px;}
._12{width:21.606000px;}
._40{width:22.934399px;}
._3f{width:25.551000px;}
._42{width:28.065000px;}
._41{width:29.309701px;}
._e{width:31.752001px;}
._1b{width:38.250000px;}
._21{width:44.625000px;}
._3d{width:51.051000px;}
._44{width:54.416991px;}
._3e{width:70.705778px;}
._29{width:87.762699px;}
._2c{width:89.190584px;}
._1c{width:103.368699px;}
._22{width:110.712699px;}
._28{width:141.567699px;}
._1d{width:145.839160px;}
._2b{width:153.763032px;}
._23{width:186.957699px;}
._35{width:191.395166px;}
._31{width:192.523838px;}
._30{width:195.720062px;}
._34{width:197.209166px;}
._19{width:201.084699px;}
._24{width:209.601699px;}
._1f{width:210.978699px;}
._25{width:220.923699px;}
._32{width:231.073166px;}
._14{width:238.260595px;}
._18{width:246.423699px;}
._2a{width:252.604227px;}
._16{width:276.676090px;}
._27{width:279.190090px;}
._15{width:284.138521px;}
._17{width:288.906699px;}
._26{width:302.176090px;}
._2f{width:323.128166px;}
._20{width:327.676090px;}
._1e{width:353.184010px;}
._13{width:374.443090px;}
._37{width:382.645166px;}
._38{width:411.001166px;}
._36{width:462.001166px;}
._2d{width:477.442900px;}
._33{width:504.433166px;}
._2e{width:517.947485px;}
._1a{width:992.186383px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.699999px;}
.fs3{font-size:42.000000px;}
.fs0{font-size:51.000000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:60.997650px;}
.y4{bottom:111.404400px;}
.y16f{bottom:112.458904px;}
.y5d{bottom:124.299145px;}
.y12e{bottom:126.549145px;}
.y16e{bottom:127.458904px;}
.y171{bottom:130.458904px;}
.y11f{bottom:137.235603px;}
.y3{bottom:138.403496px;}
.y12d{bottom:141.549145px;}
.y5c{bottom:143.049145px;}
.y170{bottom:145.458904px;}
.y9b{bottom:146.629955px;}
.y11e{bottom:152.235603px;}
.y12c{bottom:156.549145px;}
.y16d{bottom:160.458904px;}
.y5b{bottom:161.799145px;}
.y9a{bottom:163.987198px;}
.y11d{bottom:167.235603px;}
.y12b{bottom:171.549145px;}
.y16c{bottom:175.458904px;}
.y5a{bottom:180.549145px;}
.y99{bottom:181.332000px;}
.y11c{bottom:182.235603px;}
.y12a{bottom:186.549145px;}
.y16b{bottom:190.458904px;}
.y11b{bottom:197.235603px;}
.y98{bottom:198.676804px;}
.y59{bottom:199.299156px;}
.y129{bottom:201.549156px;}
.y16a{bottom:205.458893px;}
.y11a{bottom:212.235603px;}
.y96{bottom:216.021606px;}
.y128{bottom:216.549156px;}
.y58{bottom:218.049156px;}
.y169{bottom:220.458893px;}
.y21{bottom:225.614090px;}
.y119{bottom:227.235603px;}
.y95{bottom:231.021606px;}
.y97{bottom:231.034058px;}
.y168{bottom:235.458893px;}
.y57{bottom:236.799156px;}
.y118{bottom:242.235603px;}
.y94{bottom:248.378860px;}
.y127{bottom:249.549156px;}
.y167{bottom:250.458893px;}
.y56{bottom:255.549156px;}
.y117{bottom:257.235603px;}
.y20{bottom:262.364090px;}
.y126{bottom:264.549156px;}
.y166{bottom:265.458893px;}
.y93{bottom:265.736092px;}
.y116{bottom:272.235603px;}
.y55{bottom:274.299156px;}
.y125{bottom:279.549156px;}
.y165{bottom:280.458893px;}
.y92{bottom:280.736092px;}
.y1f{bottom:281.114090px;}
.y115{bottom:287.235603px;}
.y54{bottom:293.049156px;}
.y124{bottom:294.549156px;}
.y164{bottom:295.458893px;}
.y91{bottom:298.080894px;}
.y1e{bottom:299.864090px;}
.y114{bottom:302.235603px;}
.y123{bottom:309.549156px;}
.y163{bottom:310.458893px;}
.y53{bottom:311.799156px;}
.y90{bottom:313.080894px;}
.y113{bottom:317.235603px;}
.y1d{bottom:318.614090px;}
.y162{bottom:325.458893px;}
.y8f{bottom:330.425697px;}
.y52{bottom:330.549156px;}
.y112{bottom:332.235603px;}
.y1c{bottom:337.364090px;}
.y161{bottom:340.458893px;}
.y122{bottom:342.549156px;}
.y8e{bottom:345.425697px;}
.y111{bottom:347.235603px;}
.y51{bottom:349.299156px;}
.y160{bottom:355.458893px;}
.y1b{bottom:356.114090px;}
.y121{bottom:357.549156px;}
.y110{bottom:362.235603px;}
.y8d{bottom:362.770500px;}
.y50{bottom:368.049156px;}
.y15f{bottom:370.458893px;}
.y120{bottom:372.549156px;}
.y1a{bottom:374.864090px;}
.y10f{bottom:377.235603px;}
.y8c{bottom:377.770500px;}
.y15e{bottom:385.458893px;}
.y4f{bottom:386.799133px;}
.y10e{bottom:392.235580px;}
.y19{bottom:393.614090px;}
.y8a{bottom:395.115280px;}
.y15d{bottom:400.458893px;}
.y4e{bottom:405.549133px;}
.y10d{bottom:407.235580px;}
.y89{bottom:410.115280px;}
.y8b{bottom:410.127731px;}
.y18{bottom:412.364090px;}
.y15c{bottom:415.458893px;}
.y4d{bottom:424.299133px;}
.y88{bottom:427.472534px;}
.y15b{bottom:430.458893px;}
.y17{bottom:431.114090px;}
.y10c{bottom:440.985580px;}
.y4c{bottom:443.049133px;}
.y87{bottom:444.829788px;}
.y15a{bottom:445.458893px;}
.y16{bottom:449.864090px;}
.y159{bottom:460.458893px;}
.y4b{bottom:461.799133px;}
.y86{bottom:462.174591px;}
.yc5{bottom:472.983902px;}
.y158{bottom:475.458893px;}
.y84{bottom:479.519394px;}
.y4a{bottom:480.549133px;}
.y15{bottom:486.612762px;}
.yc4{bottom:487.135941px;}
.y157{bottom:490.458893px;}
.y83{bottom:494.519394px;}
.y85{bottom:494.531845px;}
.y10b{bottom:497.235580px;}
.y49{bottom:499.299133px;}
.yc3{bottom:502.135941px;}
.y14{bottom:505.362579px;}
.y156{bottom:505.458893px;}
.y82{bottom:511.876648px;}
.y10a{bottom:512.235580px;}
.y48{bottom:518.049133px;}
.y155{bottom:520.458893px;}
.yc2{bottom:522.235931px;}
.y13{bottom:524.112579px;}
.y109{bottom:527.235580px;}
.y81{bottom:529.221450px;}
.y154{bottom:535.458893px;}
.yc1{bottom:536.387833px;}
.y47{bottom:536.799133px;}
.y108{bottom:542.235580px;}
.y12{bottom:542.862579px;}
.y80{bottom:546.566254px;}
.y153{bottom:550.458893px;}
.yc0{bottom:551.387833px;}
.y46{bottom:555.549133px;}
.y107{bottom:557.235580px;}
.y11{bottom:561.612579px;}
.y7e{bottom:563.911057px;}
.y152{bottom:565.458893px;}
.ybf{bottom:571.487869px;}
.y106{bottom:572.235580px;}
.y45{bottom:574.299133px;}
.y7d{bottom:578.911057px;}
.y7f{bottom:578.923508px;}
.y10{bottom:580.362579px;}
.y151{bottom:580.458893px;}
.ybe{bottom:585.639771px;}
.y105{bottom:587.235580px;}
.y44{bottom:593.049133px;}
.y150{bottom:595.458893px;}
.y7c{bottom:596.268311px;}
.yf{bottom:599.112579px;}
.y104{bottom:602.235580px;}
.ybd{bottom:605.739761px;}
.y14f{bottom:610.458893px;}
.y43{bottom:611.799133px;}
.y7b{bottom:613.625565px;}
.y103{bottom:617.235580px;}
.ye{bottom:617.862579px;}
.ybc{bottom:619.891800px;}
.y14e{bottom:625.458893px;}
.y42{bottom:630.549133px;}
.y7a{bottom:630.970367px;}
.y102{bottom:632.235580px;}
.yd{bottom:636.612579px;}
.ybb{bottom:637.236008px;}
.y14d{bottom:640.458893px;}
.y101{bottom:647.235580px;}
.y79{bottom:648.315170px;}
.y41{bottom:649.299133px;}
.yba{bottom:654.580811px;}
.yc{bottom:655.362579px;}
.y14c{bottom:655.458893px;}
.y100{bottom:662.235580px;}
.y77{bottom:665.659927px;}
.y40{bottom:668.049133px;}
.y14b{bottom:670.458893px;}
.yb9{bottom:671.925613px;}
.yb{bottom:674.112579px;}
.yff{bottom:677.235580px;}
.y76{bottom:680.659927px;}
.y78{bottom:680.672379px;}
.y14a{bottom:685.458893px;}
.y3f{bottom:686.799133px;}
.yb8{bottom:689.270416px;}
.ya{bottom:692.862762px;}
.y75{bottom:698.017181px;}
.y149{bottom:700.458893px;}
.y3e{bottom:705.549133px;}
.yb7{bottom:706.627670px;}
.yfe{bottom:710.235580px;}
.y9{bottom:711.612762px;}
.yee{bottom:714.736633px;}
.y74{bottom:715.374435px;}
.y148{bottom:715.458893px;}
.yb6{bottom:723.972427px;}
.y3d{bottom:724.299133px;}
.yfd{bottom:725.235580px;}
.yed{bottom:729.736633px;}
.y8{bottom:730.362762px;}
.y147{bottom:730.458893px;}
.y73{bottom:732.719238px;}
.yb4{bottom:741.317230px;}
.y3c{bottom:743.049133px;}
.yec{bottom:744.736633px;}
.y146{bottom:745.458893px;}
.y7{bottom:749.112762px;}
.y72{bottom:750.064041px;}
.yb3{bottom:756.317230px;}
.yb5{bottom:756.329681px;}
.yfc{bottom:758.235580px;}
.yeb{bottom:759.736633px;}
.y145{bottom:760.458893px;}
.y3b{bottom:761.799133px;}
.y71{bottom:767.421295px;}
.y6{bottom:767.862762px;}
.yfb{bottom:773.235626px;}
.yb2{bottom:773.674622px;}
.yea{bottom:774.736633px;}
.y144{bottom:775.458893px;}
.y3a{bottom:780.549133px;}
.y70{bottom:784.766144px;}
.y5{bottom:786.612579px;}
.ye9{bottom:789.736633px;}
.y143{bottom:790.458893px;}
.yb1{bottom:791.019470px;}
.y39{bottom:799.299133px;}
.y6f{bottom:802.110900px;}
.ye8{bottom:804.736633px;}
.y142{bottom:805.458893px;}
.yfa{bottom:806.235626px;}
.yb0{bottom:808.376587px;}
.yd7{bottom:810.314392px;}
.y38{bottom:818.049133px;}
.y6e{bottom:819.468109px;}
.ye7{bottom:819.736633px;}
.y141{bottom:820.458893px;}
.yf9{bottom:821.235626px;}
.yaf{bottom:825.721527px;}
.yd6{bottom:827.658783px;}
.y23{bottom:831.878357px;}
.y6d{bottom:834.468109px;}
.ye6{bottom:834.736633px;}
.y140{bottom:835.458893px;}
.yf8{bottom:836.235626px;}
.y37{bottom:836.799133px;}
.yad{bottom:843.066284px;}
.yd5{bottom:845.003540px;}
.y22{bottom:846.878357px;}
.y6c{bottom:849.468109px;}
.y17b{bottom:849.548126px;}
.ye5{bottom:849.736633px;}
.y13f{bottom:850.458893px;}
.yf7{bottom:851.235626px;}
.y36{bottom:855.549133px;}
.yac{bottom:858.066284px;}
.yd4{bottom:862.348389px;}
.ye4{bottom:864.736633px;}
.y13e{bottom:865.458893px;}
.y6b{bottom:866.607422px;}
.y17a{bottom:869.648071px;}
.yab{bottom:873.066284px;}
.yae{bottom:873.078735px;}
.y35{bottom:874.299133px;}
.y181{bottom:879.548126px;}
.yd3{bottom:879.692963px;}
.ye3{bottom:879.736633px;}
.y13d{bottom:880.458893px;}
.y6a{bottom:883.952362px;}
.yf6{bottom:884.235626px;}
.y179{bottom:887.048126px;}
.yaa{bottom:890.423584px;}
.y28{bottom:890.456726px;}
.y34{bottom:893.049133px;}
.ye2{bottom:894.736633px;}
.y13c{bottom:895.458893px;}
.yd2{bottom:897.037994px;}
.y180{bottom:899.648071px;}
.y68{bottom:901.297028px;}
.y178{bottom:907.148071px;}
.ya9{bottom:907.780609px;}
.y27{bottom:909.206726px;}
.ye1{bottom:909.736633px;}
.y13b{bottom:910.458893px;}
.y33{bottom:911.799133px;}
.yd1{bottom:914.382750px;}
.y67{bottom:916.297028px;}
.y69{bottom:916.309479px;}
.y17f{bottom:917.048126px;}
.yf5{bottom:921.736633px;}
.y177{bottom:924.548126px;}
.ye0{bottom:924.736633px;}
.ya8{bottom:925.125641px;}
.y13a{bottom:925.458893px;}
.y32{bottom:930.549133px;}
.yd0{bottom:931.727509px;}
.y66{bottom:934.397827px;}
.yf4{bottom:936.736633px;}
.y17e{bottom:937.148071px;}
.ydf{bottom:939.736633px;}
.y139{bottom:940.458893px;}
.ya7{bottom:942.470215px;}
.y176{bottom:944.648071px;}
.ycf{bottom:949.072174px;}
.y31{bottom:949.299133px;}
.y65{bottom:949.397827px;}
.yf3{bottom:951.736633px;}
.y26{bottom:953.043274px;}
.y17d{bottom:954.548126px;}
.yde{bottom:954.736633px;}
.y138{bottom:955.458893px;}
.ya6{bottom:960.145935px;}
.yce{bottom:966.417114px;}
.yf2{bottom:966.736633px;}
.y64{bottom:966.754669px;}
.y30{bottom:968.049133px;}
.y175{bottom:969.548126px;}
.ydd{bottom:969.736633px;}
.y137{bottom:970.458893px;}
.ya5{bottom:975.145935px;}
.y25{bottom:980.043274px;}
.yf1{bottom:981.736633px;}
.y63{bottom:981.754669px;}
.ycd{bottom:983.761780px;}
.y174{bottom:984.548126px;}
.ydc{bottom:984.736633px;}
.y136{bottom:985.458893px;}
.y2f{bottom:986.799133px;}
.y17c{bottom:989.648071px;}
.ya4{bottom:992.502777px;}
.yf0{bottom:996.736633px;}
.y62{bottom:996.754669px;}
.ydb{bottom:999.736633px;}
.y135{bottom:1000.458893px;}
.ycc{bottom:1001.106720px;}
.y2e{bottom:1005.549133px;}
.y24{bottom:1007.043274px;}
.ya3{bottom:1007.502777px;}
.yef{bottom:1011.736633px;}
.y61{bottom:1011.754669px;}
.yda{bottom:1014.736633px;}
.y134{bottom:1015.458893px;}
.ycb{bottom:1018.451569px;}
.ya2{bottom:1022.502777px;}
.y2d{bottom:1024.299133px;}
.y173{bottom:1025.799133px;}
.y60{bottom:1026.754669px;}
.yd9{bottom:1029.736633px;}
.y133{bottom:1030.458893px;}
.yca{bottom:1035.795776px;}
.ya1{bottom:1037.502777px;}
.y5f{bottom:1041.754669px;}
.y2c{bottom:1043.049133px;}
.y172{bottom:1043.799133px;}
.yd8{bottom:1044.736633px;}
.y132{bottom:1045.458893px;}
.ya0{bottom:1052.502777px;}
.yc9{bottom:1053.140076px;}
.y9e{bottom:1059.736633px;}
.y131{bottom:1060.458893px;}
.y5e{bottom:1061.799133px;}
.y9f{bottom:1067.502777px;}
.yc8{bottom:1070.484283px;}
.y9d{bottom:1074.736633px;}
.y130{bottom:1075.458893px;}
.y2b{bottom:1080.549133px;}
.yc7{bottom:1085.484283px;}
.yc6{bottom:1086.818665px;}
.y9c{bottom:1089.736633px;}
.y12f{bottom:1090.458893px;}
.y2{bottom:1109.543884px;}
.y2a{bottom:1125.713104px;}
.y1{bottom:1126.031982px;}
.h18{height:24.805224px;}
.he{height:34.564453px;}
.hd{height:35.411133px;}
.h3{height:35.436035px;}
.h10{height:35.485840px;}
.hf{height:35.485843px;}
.h1d{height:36.855469px;}
.h6{height:41.689453px;}
.h17{height:45.187572px;}
.h12{height:45.187750px;}
.h14{height:45.187756px;}
.h1b{height:45.187801px;}
.h11{height:45.187939px;}
.h13{height:45.205187px;}
.h16{height:45.205371px;}
.hc{height:45.205737px;}
.h2{height:48.297000px;}
.h15{height:49.113000px;}
.h19{height:50.027344px;}
.h1a{height:50.439000px;}
.h5{height:57.780000px;}
.h4{height:59.340000px;}
.h8{height:64.446000px;}
.hb{height:64.680000px;}
.h1c{height:64.824000px;}
.ha{height:71.208000px;}
.h9{height:72.000000px;}
.h7{height:92.448000px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:76.535402px;}
.x11{left:90.972599px;}
.x4{left:93.543303px;}
.x12{left:97.795200px;}
.x10{left:102.047253px;}
.xb{left:177.092548px;}
.xe{left:262.504944px;}
.xc{left:299.378105px;}
.xd{left:387.617981px;}
.x5{left:459.212540px;}
.x6{left:476.220428px;}
.x13{left:480.472366px;}
.xf{left:484.724396px;}
.x8{left:559.769714px;}
.x3{left:592.887450px;}
.x9{left:682.055237px;}
.x2{left:755.658737px;}
.xa{left:770.295135px;}
.x7{left:792.153625px;}
@media print{
.v3{vertical-align:-18.133301pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.133789pt;}
.v1{vertical-align:21.333333pt;}
.ls11{letter-spacing:-11.333333pt;}
.ls5{letter-spacing:-4.533333pt;}
.ls13{letter-spacing:-3.354667pt;}
.ls3{letter-spacing:-1.973333pt;}
.lsa{letter-spacing:-1.224000pt;}
.ls12{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.634667pt;}
.ls9{letter-spacing:-0.090667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.000033pt;}
.ls7{letter-spacing:0.000041pt;}
.ls6{letter-spacing:0.000163pt;}
.lse{letter-spacing:0.000517pt;}
.lsc{letter-spacing:0.000518pt;}
.ls2{letter-spacing:0.000579pt;}
.lsd{letter-spacing:0.000651pt;}
.lsf{letter-spacing:0.006907pt;}
.ls10{letter-spacing:13.962667pt;}
.ls17{letter-spacing:24.273059pt;}
.ls0{letter-spacing:47.124797pt;}
.ls14{letter-spacing:47.124831pt;}
.ls16{letter-spacing:47.125320pt;}
.ls15{letter-spacing:47.125401pt;}
.ls4{letter-spacing:150.220248pt;}
.ls8{letter-spacing:150.220777pt;}
.ws3{word-spacing:-16.384000pt;}
.ws19{word-spacing:-13.333333pt;}
.ws18{word-spacing:-12.928000pt;}
.ws1a{word-spacing:-11.360000pt;}
.ws7b{word-spacing:-11.333333pt;}
.ws97{word-spacing:-11.242667pt;}
.ws50{word-spacing:-11.088000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.773333pt;}
.ws2{word-spacing:-10.240000pt;}
.ws0{word-spacing:-8.885333pt;}
.wsdb{word-spacing:-8.704000pt;}
.wsfe{word-spacing:-7.978667pt;}
.ws96{word-spacing:-7.933333pt;}
.ws90{word-spacing:-5.666667pt;}
.wsd7{word-spacing:-3.200000pt;}
.ws37{word-spacing:-2.826667pt;}
.ws10d{word-spacing:-2.810667pt;}
.wsc8{word-spacing:-2.773333pt;}
.ws58{word-spacing:-2.506667pt;}
.wsf6{word-spacing:-2.346667pt;}
.ws33{word-spacing:-2.293333pt;}
.ws2c{word-spacing:-2.186667pt;}
.wsf3{word-spacing:-2.133333pt;}
.ws10a{word-spacing:-2.085333pt;}
.wsda{word-spacing:-2.080000pt;}
.ws31{word-spacing:-2.026667pt;}
.wsbd{word-spacing:-1.973333pt;}
.ws88{word-spacing:-1.866667pt;}
.ws68{word-spacing:-1.813333pt;}
.ws110{word-spacing:-1.768000pt;}
.ws49{word-spacing:-1.600000pt;}
.ws2d{word-spacing:-1.546667pt;}
.ws99{word-spacing:-1.493333pt;}
.ws47{word-spacing:-1.386667pt;}
.ws48{word-spacing:-1.333333pt;}
.ws8{word-spacing:-1.280000pt;}
.ws8f{word-spacing:-1.226667pt;}
.wsab{word-spacing:-1.224000pt;}
.ws1f{word-spacing:-1.173333pt;}
.wscd{word-spacing:-1.120000pt;}
.ws9{word-spacing:-1.066667pt;}
.ws100{word-spacing:-1.042667pt;}
.ws8e{word-spacing:-1.013333pt;}
.wsb9{word-spacing:-0.960000pt;}
.ws38{word-spacing:-0.906667pt;}
.ws105{word-spacing:-0.861333pt;}
.ws60{word-spacing:-0.800000pt;}
.wsc{word-spacing:-0.746667pt;}
.wsf0{word-spacing:-0.725333pt;}
.wsc7{word-spacing:-0.693333pt;}
.ws36{word-spacing:-0.640000pt;}
.ws63{word-spacing:-0.586667pt;}
.wse{word-spacing:-0.533333pt;}
.wscc{word-spacing:-0.498667pt;}
.wsb8{word-spacing:-0.480000pt;}
.wse1{word-spacing:-0.408000pt;}
.wsc5{word-spacing:-0.373333pt;}
.wsbe{word-spacing:-0.320000pt;}
.ws29{word-spacing:-0.266667pt;}
.ws112{word-spacing:-0.226667pt;}
.wsce{word-spacing:-0.213333pt;}
.ws85{word-spacing:-0.160000pt;}
.ws83{word-spacing:-0.106667pt;}
.ws1e{word-spacing:-0.053333pt;}
.ws103{word-spacing:-0.045333pt;}
.ws7{word-spacing:0.000000pt;}
.wsa{word-spacing:0.053333pt;}
.ws8d{word-spacing:0.106667pt;}
.wsd{word-spacing:0.160000pt;}
.ws7f{word-spacing:0.213333pt;}
.wsf4{word-spacing:0.266667pt;}
.ws107{word-spacing:0.272000pt;}
.ws113{word-spacing:0.317333pt;}
.ws86{word-spacing:0.320000pt;}
.ws108{word-spacing:0.362667pt;}
.ws4b{word-spacing:0.373333pt;}
.wsee{word-spacing:0.408000pt;}
.ws79{word-spacing:0.426667pt;}
.wse9{word-spacing:0.498667pt;}
.ws5c{word-spacing:0.533333pt;}
.wsec{word-spacing:0.544000pt;}
.ws104{word-spacing:0.589333pt;}
.wsad{word-spacing:0.634667pt;}
.wscb{word-spacing:0.640000pt;}
.ws56{word-spacing:0.746667pt;}
.ws75{word-spacing:0.800000pt;}
.wsfb{word-spacing:0.816000pt;}
.ws8b{word-spacing:0.853333pt;}
.wsef{word-spacing:0.861333pt;}
.ws66{word-spacing:0.906667pt;}
.ws3c{word-spacing:0.960000pt;}
.ws6a{word-spacing:1.013333pt;}
.wsf2{word-spacing:1.066667pt;}
.wsfc{word-spacing:1.088000pt;}
.wsdc{word-spacing:1.178667pt;}
.wsac{word-spacing:1.224000pt;}
.ws5b{word-spacing:1.386667pt;}
.wsdd{word-spacing:1.541333pt;}
.ws14{word-spacing:1.546667pt;}
.ws26{word-spacing:1.706667pt;}
.wsbc{word-spacing:1.813333pt;}
.wsea{word-spacing:1.858667pt;}
.ws2a{word-spacing:1.866667pt;}
.ws109{word-spacing:1.904000pt;}
.ws16{word-spacing:1.973333pt;}
.ws77{word-spacing:2.026667pt;}
.ws69{word-spacing:2.080000pt;}
.ws2e{word-spacing:2.133333pt;}
.ws32{word-spacing:2.186667pt;}
.ws9b{word-spacing:2.240000pt;}
.ws9c{word-spacing:2.293333pt;}
.ws12{word-spacing:2.346667pt;}
.wse2{word-spacing:2.357333pt;}
.ws21{word-spacing:2.400000pt;}
.wsff{word-spacing:2.402667pt;}
.ws30{word-spacing:2.506667pt;}
.ws13{word-spacing:2.560000pt;}
.ws40{word-spacing:2.613333pt;}
.ws1b{word-spacing:2.674667pt;}
.ws4f{word-spacing:2.826667pt;}
.wsa9{word-spacing:2.856000pt;}
.ws4e{word-spacing:2.880000pt;}
.ws10{word-spacing:2.933333pt;}
.wsdf{word-spacing:2.992000pt;}
.ws106{word-spacing:3.037333pt;}
.ws87{word-spacing:3.040000pt;}
.wse3{word-spacing:3.082667pt;}
.wsc4{word-spacing:3.093333pt;}
.wsaa{word-spacing:3.173333pt;}
.wsa2{word-spacing:3.200000pt;}
.ws44{word-spacing:3.253333pt;}
.ws1c{word-spacing:3.413333pt;}
.ws76{word-spacing:3.520000pt;}
.ws23{word-spacing:3.573333pt;}
.wsf8{word-spacing:3.581333pt;}
.wsf{word-spacing:3.626667pt;}
.ws59{word-spacing:3.680000pt;}
.ws15{word-spacing:3.733333pt;}
.wse4{word-spacing:3.762667pt;}
.ws8a{word-spacing:3.786667pt;}
.wsc2{word-spacing:3.840000pt;}
.wsa3{word-spacing:3.893333pt;}
.ws102{word-spacing:3.944000pt;}
.ws7e{word-spacing:3.946667pt;}
.wseb{word-spacing:3.989333pt;}
.ws17{word-spacing:4.000000pt;}
.ws4c{word-spacing:4.053333pt;}
.wse0{word-spacing:4.080000pt;}
.ws9d{word-spacing:4.106667pt;}
.ws67{word-spacing:4.160000pt;}
.ws1d{word-spacing:4.213333pt;}
.ws10e{word-spacing:4.216000pt;}
.wsf1{word-spacing:4.306667pt;}
.ws5e{word-spacing:4.426667pt;}
.ws11{word-spacing:4.480000pt;}
.ws6b{word-spacing:4.533333pt;}
.ws43{word-spacing:4.586667pt;}
.ws5a{word-spacing:4.693333pt;}
.ws27{word-spacing:4.746667pt;}
.wsf9{word-spacing:4.760000pt;}
.ws2f{word-spacing:4.853333pt;}
.wse5{word-spacing:4.896000pt;}
.wsd0{word-spacing:4.906667pt;}
.ws98{word-spacing:5.013333pt;}
.wse6{word-spacing:5.032000pt;}
.wsb{word-spacing:5.066667pt;}
.ws74{word-spacing:5.120000pt;}
.ws94{word-spacing:5.122667pt;}
.ws39{word-spacing:5.173333pt;}
.ws28{word-spacing:5.280000pt;}
.wsd2{word-spacing:5.333333pt;}
.ws24{word-spacing:5.440000pt;}
.ws71{word-spacing:5.493333pt;}
.wsa6{word-spacing:5.600000pt;}
.wsed{word-spacing:5.757333pt;}
.ws3d{word-spacing:5.760000pt;}
.ws61{word-spacing:5.813333pt;}
.wsca{word-spacing:5.866667pt;}
.ws42{word-spacing:5.920000pt;}
.ws73{word-spacing:5.973333pt;}
.ws35{word-spacing:6.026667pt;}
.ws10c{word-spacing:6.074667pt;}
.wsc3{word-spacing:6.080000pt;}
.ws7d{word-spacing:6.133333pt;}
.wsae{word-spacing:6.165333pt;}
.wsf5{word-spacing:6.240000pt;}
.wsd3{word-spacing:6.293333pt;}
.wse7{word-spacing:6.392000pt;}
.wsa0{word-spacing:6.400000pt;}
.ws101{word-spacing:6.437333pt;}
.wsfd{word-spacing:6.528000pt;}
.ws3f{word-spacing:6.560000pt;}
.ws57{word-spacing:6.666667pt;}
.wse8{word-spacing:6.709333pt;}
.ws4a{word-spacing:6.773333pt;}
.wsfa{word-spacing:6.800000pt;}
.ws65{word-spacing:6.826667pt;}
.ws45{word-spacing:6.933333pt;}
.wsa7{word-spacing:6.986667pt;}
.wsa1{word-spacing:7.040000pt;}
.ws10f{word-spacing:7.162667pt;}
.ws34{word-spacing:7.200000pt;}
.ws7a{word-spacing:7.253333pt;}
.ws3b{word-spacing:7.306667pt;}
.ws22{word-spacing:7.360000pt;}
.ws8c{word-spacing:7.466667pt;}
.ws53{word-spacing:7.573333pt;}
.ws80{word-spacing:7.626667pt;}
.ws55{word-spacing:7.680000pt;}
.ws82{word-spacing:7.733333pt;}
.ws6e{word-spacing:7.786667pt;}
.wsd6{word-spacing:7.840000pt;}
.wsd1{word-spacing:7.946667pt;}
.ws3a{word-spacing:8.000000pt;}
.ws5d{word-spacing:8.160000pt;}
.ws3e{word-spacing:8.266667pt;}
.ws10b{word-spacing:8.386667pt;}
.wsb7{word-spacing:8.426667pt;}
.wsd9{word-spacing:8.586667pt;}
.wsbb{word-spacing:8.640000pt;}
.ws81{word-spacing:8.693333pt;}
.ws6f{word-spacing:8.746667pt;}
.wsa5{word-spacing:8.853333pt;}
.ws9f{word-spacing:9.333333pt;}
.wsc1{word-spacing:9.386667pt;}
.wsde{word-spacing:9.474667pt;}
.ws2b{word-spacing:9.493333pt;}
.ws54{word-spacing:9.546667pt;}
.ws89{word-spacing:9.813333pt;}
.ws72{word-spacing:9.920000pt;}
.wsc0{word-spacing:10.026667pt;}
.wsc9{word-spacing:10.133333pt;}
.ws41{word-spacing:10.186667pt;}
.wsa4{word-spacing:10.240000pt;}
.wsbf{word-spacing:10.293333pt;}
.wsd5{word-spacing:10.613333pt;}
.ws5f{word-spacing:10.773333pt;}
.wsa8{word-spacing:11.040000pt;}
.wscf{word-spacing:11.253333pt;}
.wsaf{word-spacing:11.333333pt;}
.ws70{word-spacing:11.413333pt;}
.wsd4{word-spacing:11.573333pt;}
.ws25{word-spacing:11.733333pt;}
.ws78{word-spacing:11.893333pt;}
.ws9a{word-spacing:12.213333pt;}
.ws84{word-spacing:12.586667pt;}
.ws51{word-spacing:13.226667pt;}
.ws52{word-spacing:13.280000pt;}
.ws6c{word-spacing:13.706667pt;}
.ws9e{word-spacing:13.866667pt;}
.wsc6{word-spacing:14.346667pt;}
.wsba{word-spacing:14.720000pt;}
.ws20{word-spacing:14.773333pt;}
.wsd8{word-spacing:14.933333pt;}
.ws4d{word-spacing:15.680000pt;}
.ws62{word-spacing:15.733333pt;}
.ws111{word-spacing:16.002667pt;}
.ws64{word-spacing:18.720000pt;}
.ws6d{word-spacing:20.000000pt;}
.ws46{word-spacing:20.800000pt;}
.ws93{word-spacing:33.184000pt;}
.ws92{word-spacing:34.000000pt;}
.ws91{word-spacing:36.856000pt;}
.ws115{word-spacing:39.396706pt;}
.ws114{word-spacing:39.396868pt;}
.ws5{word-spacing:39.955702pt;}
.ws6{word-spacing:39.956353pt;}
.wsf7{word-spacing:48.416000pt;}
.wsb1{word-spacing:160.926391pt;}
.wsb2{word-spacing:161.355264pt;}
.wsb0{word-spacing:161.416055pt;}
.wsb4{word-spacing:162.150391pt;}
.wsb3{word-spacing:162.579264pt;}
.wsb6{word-spacing:162.640055pt;}
.wsb5{word-spacing:514.068503pt;}
.ws95{word-spacing:878.135391pt;}
.ws7c{word-spacing:1031.815452pt;}
._43{margin-left:-62.665588pt;}
._3b{margin-left:-11.361504pt;}
._3c{margin-left:-10.449442pt;}
._5{margin-left:-6.891624pt;}
._4{margin-left:-5.972855pt;}
._39{margin-left:-5.077755pt;}
._2{margin-left:-3.994667pt;}
._3{margin-left:-2.234667pt;}
._0{margin-left:-0.906667pt;}
._6{width:1.530667pt;}
._9{width:3.002667pt;}
._d{width:4.419714pt;}
._c{width:5.706667pt;}
._8{width:7.007999pt;}
._7{width:7.925334pt;}
._10{width:8.864000pt;}
._a{width:10.378667pt;}
._b{width:11.770667pt;}
._3a{width:12.756800pt;}
._f{width:14.266666pt;}
._1{width:15.890142pt;}
._11{width:16.989812pt;}
._12{width:19.205334pt;}
._40{width:20.386133pt;}
._3f{width:22.712000pt;}
._42{width:24.946667pt;}
._41{width:26.053067pt;}
._e{width:28.224001pt;}
._1b{width:34.000000pt;}
._21{width:39.666667pt;}
._3d{width:45.378667pt;}
._44{width:48.370659pt;}
._3e{width:62.849580pt;}
._29{width:78.011288pt;}
._2c{width:79.280519pt;}
._1c{width:91.883288pt;}
._22{width:98.411288pt;}
._28{width:125.837954pt;}
._1d{width:129.634809pt;}
._2b{width:136.678250pt;}
._23{width:166.184621pt;}
._35{width:170.129037pt;}
._31{width:171.132300pt;}
._30{width:173.973389pt;}
._34{width:175.297037pt;}
._19{width:178.741954pt;}
._24{width:186.312621pt;}
._1f{width:187.536621pt;}
._25{width:196.376621pt;}
._32{width:205.398370pt;}
._14{width:211.787195pt;}
._18{width:219.043288pt;}
._2a{width:224.537091pt;}
._16{width:245.934302pt;}
._27{width:248.168969pt;}
._15{width:252.567574pt;}
._17{width:256.805954pt;}
._26{width:268.600969pt;}
._2f{width:287.225037pt;}
._20{width:291.267635pt;}
._1e{width:313.941342pt;}
._13{width:332.838302pt;}
._37{width:340.129037pt;}
._38{width:365.334370pt;}
._36{width:410.667703pt;}
._2d{width:424.393689pt;}
._33{width:448.385037pt;}
._2e{width:460.397764pt;}
._1a{width:881.943452pt;}
.fs7{font-size:31.733332pt;}
.fs3{font-size:37.333333pt;}
.fs0{font-size:45.333333pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:54.220133pt;}
.y4{bottom:99.026133pt;}
.y16f{bottom:99.963470pt;}
.y5d{bottom:110.488129pt;}
.y12e{bottom:112.488129pt;}
.y16e{bottom:113.296804pt;}
.y171{bottom:115.963470pt;}
.y11f{bottom:121.987203pt;}
.y3{bottom:123.025330pt;}
.y12d{bottom:125.821462pt;}
.y5c{bottom:127.154795pt;}
.y170{bottom:129.296804pt;}
.y9b{bottom:130.337738pt;}
.y11e{bottom:135.320536pt;}
.y12c{bottom:139.154795pt;}
.y16d{bottom:142.630137pt;}
.y5b{bottom:143.821462pt;}
.y9a{bottom:145.766398pt;}
.y11d{bottom:148.653870pt;}
.y12b{bottom:152.488129pt;}
.y16c{bottom:155.963470pt;}
.y5a{bottom:160.488129pt;}
.y99{bottom:161.184000pt;}
.y11c{bottom:161.987203pt;}
.y12a{bottom:165.821462pt;}
.y16b{bottom:169.296804pt;}
.y11b{bottom:175.320536pt;}
.y98{bottom:176.601603pt;}
.y59{bottom:177.154805pt;}
.y129{bottom:179.154805pt;}
.y16a{bottom:182.630127pt;}
.y11a{bottom:188.653870pt;}
.y96{bottom:192.019206pt;}
.y128{bottom:192.488139pt;}
.y58{bottom:193.821472pt;}
.y169{bottom:195.963460pt;}
.y21{bottom:200.545858pt;}
.y119{bottom:201.987203pt;}
.y95{bottom:205.352539pt;}
.y97{bottom:205.363607pt;}
.y168{bottom:209.296794pt;}
.y57{bottom:210.488139pt;}
.y118{bottom:215.320536pt;}
.y94{bottom:220.781209pt;}
.y127{bottom:221.821472pt;}
.y167{bottom:222.630127pt;}
.y56{bottom:227.154805pt;}
.y117{bottom:228.653870pt;}
.y20{bottom:233.212524pt;}
.y126{bottom:235.154805pt;}
.y166{bottom:235.963460pt;}
.y93{bottom:236.209859pt;}
.y116{bottom:241.987203pt;}
.y55{bottom:243.821472pt;}
.y125{bottom:248.488139pt;}
.y165{bottom:249.296794pt;}
.y92{bottom:249.543193pt;}
.y1f{bottom:249.879191pt;}
.y115{bottom:255.320536pt;}
.y54{bottom:260.488139pt;}
.y124{bottom:261.821472pt;}
.y164{bottom:262.630127pt;}
.y91{bottom:264.960795pt;}
.y1e{bottom:266.545858pt;}
.y114{bottom:268.653870pt;}
.y123{bottom:275.154805pt;}
.y163{bottom:275.963460pt;}
.y53{bottom:277.154805pt;}
.y90{bottom:278.294128pt;}
.y113{bottom:281.987203pt;}
.y1d{bottom:283.212524pt;}
.y162{bottom:289.296794pt;}
.y8f{bottom:293.711731pt;}
.y52{bottom:293.821472pt;}
.y112{bottom:295.320536pt;}
.y1c{bottom:299.879191pt;}
.y161{bottom:302.630127pt;}
.y122{bottom:304.488139pt;}
.y8e{bottom:307.045064pt;}
.y111{bottom:308.653870pt;}
.y51{bottom:310.488139pt;}
.y160{bottom:315.963460pt;}
.y1b{bottom:316.545858pt;}
.y121{bottom:317.821472pt;}
.y110{bottom:321.987203pt;}
.y8d{bottom:322.462667pt;}
.y50{bottom:327.154805pt;}
.y15f{bottom:329.296794pt;}
.y120{bottom:331.154805pt;}
.y1a{bottom:333.212524pt;}
.y10f{bottom:335.320536pt;}
.y8c{bottom:335.796000pt;}
.y15e{bottom:342.630127pt;}
.y4f{bottom:343.821452pt;}
.y10e{bottom:348.653849pt;}
.y19{bottom:349.879191pt;}
.y8a{bottom:351.213582pt;}
.y15d{bottom:355.963460pt;}
.y4e{bottom:360.488118pt;}
.y10d{bottom:361.987183pt;}
.y89{bottom:364.546916pt;}
.y8b{bottom:364.557983pt;}
.y18{bottom:366.545858pt;}
.y15c{bottom:369.296794pt;}
.y4d{bottom:377.154785pt;}
.y88{bottom:379.975586pt;}
.y15b{bottom:382.630127pt;}
.y17{bottom:383.212524pt;}
.y10c{bottom:391.987183pt;}
.y4c{bottom:393.821452pt;}
.y87{bottom:395.404256pt;}
.y15a{bottom:395.963460pt;}
.y16{bottom:399.879191pt;}
.y159{bottom:409.296794pt;}
.y4b{bottom:410.488118pt;}
.y86{bottom:410.821859pt;}
.yc5{bottom:420.430135pt;}
.y158{bottom:422.630127pt;}
.y84{bottom:426.239461pt;}
.y4a{bottom:427.154785pt;}
.y15{bottom:432.544678pt;}
.yc4{bottom:433.009725pt;}
.y157{bottom:435.963460pt;}
.y83{bottom:439.572795pt;}
.y85{bottom:439.583862pt;}
.y10b{bottom:441.987183pt;}
.y49{bottom:443.821452pt;}
.yc3{bottom:446.343058pt;}
.y14{bottom:449.211182pt;}
.y156{bottom:449.296794pt;}
.y82{bottom:455.001465pt;}
.y10a{bottom:455.320516pt;}
.y48{bottom:460.488118pt;}
.y155{bottom:462.630127pt;}
.yc2{bottom:464.209717pt;}
.y13{bottom:465.877848pt;}
.y109{bottom:468.653849pt;}
.y81{bottom:470.419067pt;}
.y154{bottom:475.963460pt;}
.yc1{bottom:476.789185pt;}
.y47{bottom:477.154785pt;}
.y108{bottom:481.987183pt;}
.y12{bottom:482.544515pt;}
.y80{bottom:485.836670pt;}
.y153{bottom:489.296794pt;}
.yc0{bottom:490.122518pt;}
.y46{bottom:493.821452pt;}
.y107{bottom:495.320516pt;}
.y11{bottom:499.211182pt;}
.y7e{bottom:501.254272pt;}
.y152{bottom:502.630127pt;}
.ybf{bottom:507.989217pt;}
.y106{bottom:508.653849pt;}
.y45{bottom:510.488118pt;}
.y7d{bottom:514.587606pt;}
.y7f{bottom:514.598674pt;}
.y10{bottom:515.877848pt;}
.y151{bottom:515.963460pt;}
.ybe{bottom:520.568685pt;}
.y105{bottom:521.987183pt;}
.y44{bottom:527.154785pt;}
.y150{bottom:529.296794pt;}
.y7c{bottom:530.016276pt;}
.yf{bottom:532.544515pt;}
.y104{bottom:535.320516pt;}
.ybd{bottom:538.435343pt;}
.y14f{bottom:542.630127pt;}
.y43{bottom:543.821452pt;}
.y7b{bottom:545.444946pt;}
.y103{bottom:548.653849pt;}
.ye{bottom:549.211182pt;}
.ybc{bottom:551.014933pt;}
.y14e{bottom:555.963460pt;}
.y42{bottom:560.488118pt;}
.y7a{bottom:560.862549pt;}
.y102{bottom:561.987183pt;}
.yd{bottom:565.877848pt;}
.ybb{bottom:566.432007pt;}
.y14d{bottom:569.296794pt;}
.y101{bottom:575.320516pt;}
.y79{bottom:576.280151pt;}
.y41{bottom:577.154785pt;}
.yba{bottom:581.849609pt;}
.yc{bottom:582.544515pt;}
.y14c{bottom:582.630127pt;}
.y100{bottom:588.653849pt;}
.y77{bottom:591.697713pt;}
.y40{bottom:593.821452pt;}
.y14b{bottom:595.963460pt;}
.yb9{bottom:597.267212pt;}
.yb{bottom:599.211182pt;}
.yff{bottom:601.987183pt;}
.y76{bottom:605.031047pt;}
.y78{bottom:605.042114pt;}
.y14a{bottom:609.296794pt;}
.y3f{bottom:610.488118pt;}
.yb8{bottom:612.684814pt;}
.ya{bottom:615.878011pt;}
.y75{bottom:620.459717pt;}
.y149{bottom:622.630127pt;}
.y3e{bottom:627.154785pt;}
.yb7{bottom:628.113485pt;}
.yfe{bottom:631.320516pt;}
.y9{bottom:632.544678pt;}
.yee{bottom:635.321452pt;}
.y74{bottom:635.888387pt;}
.y148{bottom:635.963460pt;}
.yb6{bottom:643.531047pt;}
.y3d{bottom:643.821452pt;}
.yfd{bottom:644.653849pt;}
.yed{bottom:648.654785pt;}
.y8{bottom:649.211344pt;}
.y147{bottom:649.296794pt;}
.y73{bottom:651.305990pt;}
.yb4{bottom:658.948649pt;}
.y3c{bottom:660.488118pt;}
.yec{bottom:661.988118pt;}
.y146{bottom:662.630127pt;}
.y7{bottom:665.878011pt;}
.y72{bottom:666.723592pt;}
.yb3{bottom:672.281982pt;}
.yb5{bottom:672.293050pt;}
.yfc{bottom:673.987183pt;}
.yeb{bottom:675.321452pt;}
.y145{bottom:675.963460pt;}
.y3b{bottom:677.154785pt;}
.y71{bottom:682.152262pt;}
.y6{bottom:682.544678pt;}
.yfb{bottom:687.320557pt;}
.yb2{bottom:687.710775pt;}
.yea{bottom:688.654785pt;}
.y144{bottom:689.296794pt;}
.y3a{bottom:693.821452pt;}
.y70{bottom:697.569906pt;}
.y5{bottom:699.211182pt;}
.ye9{bottom:701.988118pt;}
.y143{bottom:702.630127pt;}
.yb1{bottom:703.128418pt;}
.y39{bottom:710.488118pt;}
.y6f{bottom:712.987467pt;}
.ye8{bottom:715.321452pt;}
.y142{bottom:715.963460pt;}
.yfa{bottom:716.653890pt;}
.yb0{bottom:718.556966pt;}
.yd7{bottom:720.279460pt;}
.y38{bottom:727.154785pt;}
.y6e{bottom:728.416097pt;}
.ye7{bottom:728.654785pt;}
.y141{bottom:729.296794pt;}
.yf9{bottom:729.987223pt;}
.yaf{bottom:733.974691pt;}
.yd6{bottom:735.696696pt;}
.y23{bottom:739.447428pt;}
.y6d{bottom:741.749430pt;}
.ye6{bottom:741.988118pt;}
.y140{bottom:742.630127pt;}
.yf8{bottom:743.320557pt;}
.y37{bottom:743.821452pt;}
.yad{bottom:749.392253pt;}
.yd5{bottom:751.114258pt;}
.y22{bottom:752.780762pt;}
.y6c{bottom:755.082764pt;}
.y17b{bottom:755.153890pt;}
.ye5{bottom:755.321452pt;}
.y13f{bottom:755.963460pt;}
.yf7{bottom:756.653890pt;}
.y36{bottom:760.488118pt;}
.yac{bottom:762.725586pt;}
.yd4{bottom:766.531901pt;}
.ye4{bottom:768.654785pt;}
.y13e{bottom:769.296794pt;}
.y6b{bottom:770.317708pt;}
.y17a{bottom:773.020508pt;}
.yab{bottom:776.058919pt;}
.yae{bottom:776.069987pt;}
.y35{bottom:777.154785pt;}
.y181{bottom:781.820557pt;}
.yd3{bottom:781.949300pt;}
.ye3{bottom:781.988118pt;}
.y13d{bottom:782.630127pt;}
.y6a{bottom:785.735433pt;}
.yf6{bottom:785.987223pt;}
.y179{bottom:788.487223pt;}
.yaa{bottom:791.487630pt;}
.y28{bottom:791.517090pt;}
.y34{bottom:793.821452pt;}
.ye2{bottom:795.321452pt;}
.y13c{bottom:795.963460pt;}
.yd2{bottom:797.367106pt;}
.y180{bottom:799.687174pt;}
.y68{bottom:801.152913pt;}
.y178{bottom:806.353841pt;}
.ya9{bottom:806.916097pt;}
.y27{bottom:808.183757pt;}
.ye1{bottom:808.654785pt;}
.y13b{bottom:809.296794pt;}
.y33{bottom:810.488118pt;}
.yd1{bottom:812.784667pt;}
.y67{bottom:814.486247pt;}
.y69{bottom:814.497314pt;}
.y17f{bottom:815.153890pt;}
.yf5{bottom:819.321452pt;}
.y177{bottom:821.820557pt;}
.ye0{bottom:821.988118pt;}
.ya8{bottom:822.333903pt;}
.y13a{bottom:822.630127pt;}
.y32{bottom:827.154785pt;}
.yd0{bottom:828.202230pt;}
.y66{bottom:830.575846pt;}
.yf4{bottom:832.654785pt;}
.y17e{bottom:833.020508pt;}
.ydf{bottom:835.321452pt;}
.y139{bottom:835.963460pt;}
.ya7{bottom:837.751302pt;}
.y176{bottom:839.687174pt;}
.ycf{bottom:843.619710pt;}
.y31{bottom:843.821452pt;}
.y65{bottom:843.909180pt;}
.yf3{bottom:845.988118pt;}
.y26{bottom:847.149577pt;}
.y17d{bottom:848.487223pt;}
.yde{bottom:848.654785pt;}
.y138{bottom:849.296794pt;}
.ya6{bottom:853.463053pt;}
.yce{bottom:859.037435pt;}
.yf2{bottom:859.321452pt;}
.y64{bottom:859.337484pt;}
.y30{bottom:860.488118pt;}
.y175{bottom:861.820557pt;}
.ydd{bottom:861.988118pt;}
.y137{bottom:862.630127pt;}
.ya5{bottom:866.796387pt;}
.y25{bottom:871.149577pt;}
.yf1{bottom:872.654785pt;}
.y63{bottom:872.670817pt;}
.ycd{bottom:874.454915pt;}
.y174{bottom:875.153890pt;}
.ydc{bottom:875.321452pt;}
.y136{bottom:875.963460pt;}
.y2f{bottom:877.154785pt;}
.y17c{bottom:879.687174pt;}
.ya4{bottom:882.224691pt;}
.yf0{bottom:885.988118pt;}
.y62{bottom:886.004150pt;}
.ydb{bottom:888.654785pt;}
.y135{bottom:889.296794pt;}
.ycc{bottom:889.872640pt;}
.y2e{bottom:893.821452pt;}
.y24{bottom:895.149577pt;}
.ya3{bottom:895.558024pt;}
.yef{bottom:899.321452pt;}
.y61{bottom:899.337484pt;}
.yda{bottom:901.988118pt;}
.y134{bottom:902.630127pt;}
.ycb{bottom:905.290283pt;}
.ya2{bottom:908.891357pt;}
.y2d{bottom:910.488118pt;}
.y173{bottom:911.821452pt;}
.y60{bottom:912.670817pt;}
.yd9{bottom:915.321452pt;}
.y133{bottom:915.963460pt;}
.yca{bottom:920.707357pt;}
.ya1{bottom:922.224691pt;}
.y5f{bottom:926.004150pt;}
.y2c{bottom:927.154785pt;}
.y172{bottom:927.821452pt;}
.yd8{bottom:928.654785pt;}
.y132{bottom:929.296794pt;}
.ya0{bottom:935.558024pt;}
.yc9{bottom:936.124512pt;}
.y9e{bottom:941.988118pt;}
.y131{bottom:942.630127pt;}
.y5e{bottom:943.821452pt;}
.y9f{bottom:948.891357pt;}
.yc8{bottom:951.541585pt;}
.y9d{bottom:955.321452pt;}
.y130{bottom:955.963460pt;}
.y2b{bottom:960.488118pt;}
.yc7{bottom:964.874919pt;}
.yc6{bottom:966.061035pt;}
.y9c{bottom:968.654785pt;}
.y12f{bottom:969.296794pt;}
.y2{bottom:986.261230pt;}
.y2a{bottom:1000.633870pt;}
.y1{bottom:1000.917318pt;}
.h18{height:22.049088pt;}
.he{height:30.723958pt;}
.hd{height:31.476562pt;}
.h3{height:31.498698pt;}
.h10{height:31.542969pt;}
.hf{height:31.542972pt;}
.h1d{height:32.760417pt;}
.h6{height:37.057292pt;}
.h17{height:40.166731pt;}
.h12{height:40.166889pt;}
.h14{height:40.166894pt;}
.h1b{height:40.166935pt;}
.h11{height:40.167057pt;}
.h13{height:40.182389pt;}
.h16{height:40.182552pt;}
.hc{height:40.182877pt;}
.h2{height:42.930667pt;}
.h15{height:43.656000pt;}
.h19{height:44.468750pt;}
.h1a{height:44.834667pt;}
.h5{height:51.360000pt;}
.h4{height:52.746667pt;}
.h8{height:57.285333pt;}
.hb{height:57.493333pt;}
.h1c{height:57.621333pt;}
.ha{height:63.296000pt;}
.h9{height:64.000000pt;}
.h7{height:82.176000pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:68.031469pt;}
.x11{left:80.864532pt;}
.x4{left:83.149602pt;}
.x12{left:86.929067pt;}
.x10{left:90.708669pt;}
.xb{left:157.415599pt;}
.xe{left:233.337728pt;}
.xc{left:266.113871pt;}
.xd{left:344.549316pt;}
.x5{left:408.188924pt;}
.x6{left:423.307048pt;}
.x13{left:427.086548pt;}
.xf{left:430.866130pt;}
.x8{left:497.573079pt;}
.x3{left:527.011067pt;}
.x9{left:606.271322pt;}
.x2{left:671.696655pt;}
.xa{left:684.706787pt;}
.x7{left:704.136556pt;}
}




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