
    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_cbeb44adcf57a87047f9fc1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.891602;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_11fff1b08be12e9472b4bd90.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0e9a800f84ec355e05a36268.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.002930;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_f667079ffe0515c5479666c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_15476feab3859d7622fbec69.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_07c8ac489709407d2f76f7fc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.869629;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_b629e36a7b16a8d29f88b24e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5a449f1c2d08fbffed42e52d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-26.628480px;}
.v2{vertical-align:-5.762880px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-2.916000px;}
.ls2a{letter-spacing:-1.987200px;}
.ls2f{letter-spacing:-1.391040px;}
.ls24{letter-spacing:-1.258560px;}
.ls40{letter-spacing:-1.192320px;}
.ls41{letter-spacing:-1.059840px;}
.ls16{letter-spacing:-0.927360px;}
.ls29{letter-spacing:-0.861120px;}
.ls19{letter-spacing:-0.794880px;}
.ls17{letter-spacing:-0.728640px;}
.ls46{letter-spacing:-0.662400px;}
.ls10{letter-spacing:-0.596160px;}
.ls11{letter-spacing:-0.529920px;}
.ls36{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.463680px;}
.ls13{letter-spacing:-0.397440px;}
.lsf{letter-spacing:-0.331200px;}
.ls37{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.287280px;}
.lsa{letter-spacing:-0.270000px;}
.ls33{letter-spacing:-0.264960px;}
.ls1f{letter-spacing:-0.252720px;}
.lsb{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.198720px;}
.ls32{letter-spacing:-0.162000px;}
.ls15{letter-spacing:-0.132480px;}
.ls4a{letter-spacing:-0.108000px;}
.ls42{letter-spacing:-0.095760px;}
.ls3a{letter-spacing:-0.072000px;}
.ls25{letter-spacing:-0.066240px;}
.ls4b{letter-spacing:-0.054000px;}
.ls9{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.054000px;}
.ls3f{letter-spacing:0.070200px;}
.ls3e{letter-spacing:0.072000px;}
.ls3c{letter-spacing:0.112608px;}
.ls1{letter-spacing:0.132480px;}
.ls35{letter-spacing:0.144000px;}
.lse{letter-spacing:0.168480px;}
.ls20{letter-spacing:0.191520px;}
.ls0{letter-spacing:0.198720px;}
.ls4{letter-spacing:0.264960px;}
.ls3d{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.324000px;}
.ls3{letter-spacing:0.331200px;}
.ls2{letter-spacing:0.336960px;}
.ls14{letter-spacing:0.397440px;}
.ls26{letter-spacing:0.854496px;}
.ls1a{letter-spacing:0.861120px;}
.ls2d{letter-spacing:0.953856px;}
.ls5{letter-spacing:1.589760px;}
.ls1e{letter-spacing:2.318400px;}
.ls6{letter-spacing:3.047040px;}
.ls30{letter-spacing:3.775680px;}
.ls1d{letter-spacing:4.438080px;}
.ls21{letter-spacing:5.166720px;}
.ls38{letter-spacing:5.895360px;}
.ls39{letter-spacing:6.624000px;}
.ls7{letter-spacing:8.081280px;}
.ls2b{letter-spacing:9.538560px;}
.ls22{letter-spacing:10.929600px;}
.ls28{letter-spacing:11.658240px;}
.ls1b{letter-spacing:13.115520px;}
.ls1c{letter-spacing:13.844160px;}
.ls45{letter-spacing:13.867200px;}
.ls2e{letter-spacing:14.572800px;}
.ls2c{letter-spacing:15.963840px;}
.ls43{letter-spacing:16.666560px;}
.ls44{letter-spacing:17.426880px;}
.ls47{letter-spacing:17.498880px;}
.ls3b{letter-spacing:18.878400px;}
.ls23{letter-spacing:20.335680px;}
.ls27{letter-spacing:28.973376px;}
.ls34{letter-spacing:849.060000px;}
.ls49{letter-spacing:890.795520px;}
.ls48{letter-spacing:1018.241280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-66.240000px;}
.wsbb{word-spacing:-21.546000px;}
.wsf{word-spacing:-21.354480px;}
.ws34{word-spacing:-19.206720px;}
.ws33{word-spacing:-18.785520px;}
.wsa6{word-spacing:-16.344000px;}
.ws93{word-spacing:-15.768000px;}
.ws11{word-spacing:-15.367680px;}
.wsa{word-spacing:-15.301440px;}
.wsc{word-spacing:-15.235200px;}
.ws7{word-spacing:-15.168960px;}
.ws9{word-spacing:-15.102720px;}
.ws5{word-spacing:-14.970240px;}
.ws54{word-spacing:-14.904000px;}
.wsbc{word-spacing:-14.837760px;}
.ws6{word-spacing:-14.771520px;}
.ws8b{word-spacing:-14.705280px;}
.wsb{word-spacing:-14.639040px;}
.ws8{word-spacing:-14.572800px;}
.ws1{word-spacing:-14.506560px;}
.ws4{word-spacing:-14.440320px;}
.ws3{word-spacing:-14.374080px;}
.wsce{word-spacing:-14.307840px;}
.wse{word-spacing:-14.241600px;}
.ws10{word-spacing:-14.175360px;}
.ws67{word-spacing:-14.109120px;}
.wsd{word-spacing:-14.042880px;}
.wsa0{word-spacing:-13.844160px;}
.wsaa{word-spacing:-13.777920px;}
.ws9f{word-spacing:-12.528000px;}
.wsd1{word-spacing:-12.258000px;}
.wsd0{word-spacing:-12.204000px;}
.wscf{word-spacing:-12.096000px;}
.wsa8{word-spacing:-12.042000px;}
.ws0{word-spacing:-11.988000px;}
.ws9a{word-spacing:-11.934000px;}
.ws6d{word-spacing:-10.929600px;}
.wsad{word-spacing:-6.624000px;}
.ws76{word-spacing:-5.166720px;}
.wsc1{word-spacing:-4.438080px;}
.ws9c{word-spacing:-3.841920px;}
.ws94{word-spacing:-3.775680px;}
.ws95{word-spacing:-3.576960px;}
.wsb5{word-spacing:-3.444480px;}
.ws6f{word-spacing:-3.245760px;}
.ws89{word-spacing:-3.113280px;}
.wsb4{word-spacing:-2.848320px;}
.ws78{word-spacing:-2.583360px;}
.ws27{word-spacing:-2.517120px;}
.ws43{word-spacing:-2.384640px;}
.ws37{word-spacing:-2.318400px;}
.ws5f{word-spacing:-2.252160px;}
.ws79{word-spacing:-2.185920px;}
.ws5e{word-spacing:-2.119680px;}
.wsb6{word-spacing:-1.987200px;}
.ws92{word-spacing:-1.854720px;}
.ws3c{word-spacing:-1.788480px;}
.wsb1{word-spacing:-1.656000px;}
.ws4e{word-spacing:-1.523520px;}
.ws85{word-spacing:-1.391040px;}
.ws52{word-spacing:-1.258560px;}
.ws26{word-spacing:-1.059840px;}
.ws8a{word-spacing:-0.993600px;}
.wsc3{word-spacing:-0.927360px;}
.wscd{word-spacing:-0.861120px;}
.ws8f{word-spacing:-0.794880px;}
.ws5d{word-spacing:-0.728640px;}
.ws42{word-spacing:-0.662400px;}
.ws4c{word-spacing:-0.596160px;}
.ws17{word-spacing:-0.505440px;}
.ws1e{word-spacing:-0.397440px;}
.ws1b{word-spacing:-0.331200px;}
.ws12{word-spacing:-0.270000px;}
.ws1f{word-spacing:-0.264960px;}
.ws53{word-spacing:-0.198720px;}
.ws58{word-spacing:-0.191520px;}
.ws18{word-spacing:-0.132480px;}
.ws8e{word-spacing:-0.066240px;}
.wsd2{word-spacing:-0.054000px;}
.ws13{word-spacing:0.000000px;}
.ws15{word-spacing:0.054000px;}
.wsa1{word-spacing:0.072000px;}
.ws16{word-spacing:0.108000px;}
.ws20{word-spacing:0.132480px;}
.ws8c{word-spacing:0.162000px;}
.ws1d{word-spacing:0.198720px;}
.ws99{word-spacing:0.264960px;}
.ws8d{word-spacing:0.270000px;}
.ws91{word-spacing:0.287280px;}
.ws14{word-spacing:0.324000px;}
.ws19{word-spacing:0.331200px;}
.wsaf{word-spacing:0.360000px;}
.ws75{word-spacing:0.397440px;}
.ws1c{word-spacing:0.463680px;}
.ws41{word-spacing:0.529920px;}
.ws97{word-spacing:0.576000px;}
.ws1a{word-spacing:0.596160px;}
.wscc{word-spacing:0.662400px;}
.ws6b{word-spacing:0.728640px;}
.ws9b{word-spacing:0.861120px;}
.wsa4{word-spacing:0.927360px;}
.wsb9{word-spacing:0.993600px;}
.ws25{word-spacing:1.059840px;}
.ws36{word-spacing:1.192320px;}
.ws5c{word-spacing:1.258560px;}
.ws71{word-spacing:1.324800px;}
.ws60{word-spacing:1.391040px;}
.ws45{word-spacing:1.457280px;}
.ws3d{word-spacing:1.788480px;}
.wsba{word-spacing:1.920960px;}
.ws7a{word-spacing:1.987200px;}
.ws44{word-spacing:2.053440px;}
.ws7f{word-spacing:2.185920px;}
.ws29{word-spacing:2.517120px;}
.ws9d{word-spacing:2.649600px;}
.wsa5{word-spacing:2.715840px;}
.ws2a{word-spacing:2.914560px;}
.ws4d{word-spacing:3.047040px;}
.wsb7{word-spacing:3.179520px;}
.ws2d{word-spacing:3.245760px;}
.wsac{word-spacing:3.378240px;}
.wsc0{word-spacing:3.444480px;}
.ws46{word-spacing:3.643200px;}
.wsae{word-spacing:3.908160px;}
.ws2e{word-spacing:3.974400px;}
.ws9e{word-spacing:4.106880px;}
.ws2f{word-spacing:4.305600px;}
.ws70{word-spacing:4.504320px;}
.ws48{word-spacing:4.636800px;}
.wsb8{word-spacing:4.769280px;}
.ws98{word-spacing:5.034240px;}
.ws28{word-spacing:5.365440px;}
.ws6a{word-spacing:5.497920px;}
.ws59{word-spacing:5.630400px;}
.ws5a{word-spacing:5.762880px;}
.ws2c{word-spacing:6.094080px;}
.ws88{word-spacing:6.226560px;}
.wsb0{word-spacing:6.491520px;}
.ws32{word-spacing:6.822720px;}
.wsa2{word-spacing:6.955200px;}
.ws57{word-spacing:7.087680px;}
.wsa3{word-spacing:7.220160px;}
.ws30{word-spacing:7.551360px;}
.ws72{word-spacing:8.280000px;}
.ws55{word-spacing:8.478720px;}
.wsb3{word-spacing:8.544960px;}
.ws83{word-spacing:8.677440px;}
.ws82{word-spacing:9.008640px;}
.wsb2{word-spacing:9.141120px;}
.ws31{word-spacing:9.406080px;}
.ws24{word-spacing:9.737280px;}
.ws21{word-spacing:10.068480px;}
.ws38{word-spacing:10.399680px;}
.ws23{word-spacing:10.532160px;}
.ws40{word-spacing:10.797120px;}
.ws7d{word-spacing:10.995840px;}
.ws22{word-spacing:11.128320px;}
.wsca{word-spacing:11.327040px;}
.ws6c{word-spacing:11.393280px;}
.ws3a{word-spacing:11.525760px;}
.ws80{word-spacing:11.856960px;}
.ws3b{word-spacing:11.989440px;}
.ws7e{word-spacing:12.121920px;}
.ws96{word-spacing:12.188160px;}
.ws35{word-spacing:12.254400px;}
.ws77{word-spacing:12.585600px;}
.ws84{word-spacing:12.718080px;}
.wsa9{word-spacing:12.916800px;}
.ws4a{word-spacing:12.983040px;}
.ws47{word-spacing:13.115520px;}
.ws4f{word-spacing:13.314240px;}
.ws3f{word-spacing:13.446720px;}
.wsc9{word-spacing:13.645440px;}
.ws4b{word-spacing:13.711680px;}
.ws49{word-spacing:13.976640px;}
.ws3e{word-spacing:14.042880px;}
.ws87{word-spacing:14.771520px;}
.ws90{word-spacing:15.500160px;}
.wsbf{word-spacing:15.831360px;}
.ws51{word-spacing:16.162560px;}
.ws50{word-spacing:16.560000px;}
.ws56{word-spacing:16.891200px;}
.ws66{word-spacing:17.288640px;}
.ws7b{word-spacing:17.619840px;}
.ws81{word-spacing:17.884800px;}
.wsc6{word-spacing:18.017280px;}
.ws6e{word-spacing:18.348480px;}
.ws73{word-spacing:18.745920px;}
.ws74{word-spacing:19.077120px;}
.ws65{word-spacing:19.805760px;}
.ws63{word-spacing:19.938240px;}
.ws64{word-spacing:20.203200px;}
.wsab{word-spacing:20.534400px;}
.wsa7{word-spacing:20.865600px;}
.ws5b{word-spacing:21.461760px;}
.ws39{word-spacing:22.654080px;}
.ws2b{word-spacing:24.111360px;}
.ws86{word-spacing:26.959680px;}
.ws69{word-spacing:28.085760px;}
.ws68{word-spacing:29.145600px;}
.wsbe{word-spacing:29.278080px;}
.ws7c{word-spacing:29.543040px;}
.wsc2{word-spacing:37.094400px;}
.ws61{word-spacing:41.532480px;}
.ws62{word-spacing:42.857280px;}
.wsc7{word-spacing:43.188480px;}
.wsc4{word-spacing:44.248320px;}
.wsc5{word-spacing:44.380800px;}
.wsc8{word-spacing:44.976960px;}
.wsbd{word-spacing:55.045440px;}
.wscb{word-spacing:55.774080px;}
._1c{margin-left:-14.446944px;}
._1b{margin-left:-13.440096px;}
._11{margin-left:-11.890080px;}
._f{margin-left:-10.859904px;}
._1e{margin-left:-7.309800px;}
._15{margin-left:-6.136920px;}
._14{margin-left:-5.055480px;}
._12{margin-left:-4.016376px;}
._2{margin-left:-2.764800px;}
._0{margin-left:-1.047600px;}
._1{width:1.107000px;}
._6{width:2.338488px;}
._4{width:3.482856px;}
._5{width:4.794984px;}
._7{width:6.172776px;}
._a{width:8.154144px;}
._9{width:9.157032px;}
._10{width:10.353528px;}
._3{width:11.368800px;}
._13{width:12.466368px;}
._b{width:13.685184px;}
._8{width:16.886592px;}
._c{width:18.229248px;}
._e{width:19.538136px;}
._d{width:21.121560px;}
._17{width:23.126400px;}
._1d{width:24.675408px;}
._18{width:26.283240px;}
._19{width:27.371952px;}
._16{width:29.204424px;}
._20{width:30.555504px;}
._1f{width:31.850208px;}
._22{width:34.651296px;}
._21{width:36.045216px;}
._25{width:42.583248px;}
._24{width:43.991640px;}
._23{width:82.461384px;}
._1a{width:849.070080px;}
.fc3{color:transparent;}
.fc2{color:rgb(112,173,71);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(148,54,52);}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye8{bottom:4.500000px;}
.yea{bottom:7.380000px;}
.yee{bottom:7.560000px;}
.yec{bottom:10.260000px;}
.yf0{bottom:10.440000px;}
.ye7{bottom:24.660000px;}
.y3{bottom:57.600000px;}
.y160{bottom:109.080000px;}
.yc5{bottom:113.232960px;}
.y21a{bottom:113.949360px;}
.y56{bottom:115.584480px;}
.ye4{bottom:117.447840px;}
.y15e{bottom:121.575600px;}
.y16d{bottom:128.340000px;}
.y9d{bottom:130.629600px;}
.y7c{bottom:131.289120px;}
.y1a2{bottom:132.840000px;}
.y191{bottom:133.023600px;}
.yc4{bottom:135.009360px;}
.y219{bottom:135.543600px;}
.y55{bottom:137.360880px;}
.ye3{bottom:139.224240px;}
.y177{bottom:142.200000px;}
.y15d{bottom:143.352000px;}
.y11a{bottom:144.000000px;}
.y128{bottom:146.520000px;}
.y1fd{bottom:152.186400px;}
.y9c{bottom:152.406000px;}
.y1ba{bottom:152.820000px;}
.y7b{bottom:153.065520px;}
.y23f{bottom:154.440000px;}
.y190{bottom:154.800000px;}
.y19d{bottom:154.980000px;}
.yc3{bottom:156.785760px;}
.y29{bottom:157.173120px;}
.y218{bottom:157.320000px;}
.ye2{bottom:161.000640px;}
.y1da{bottom:162.611280px;}
.y264{bottom:163.440000px;}
.y15c{bottom:165.128400px;}
.y54{bottom:168.145920px;}
.y119{bottom:173.008080px;}
.y1fc{bottom:173.962800px;}
.y9b{bottom:174.182400px;}
.y127{bottom:174.273120px;}
.y7a{bottom:174.841920px;}
.y23e{bottom:176.223600px;}
.yc2{bottom:178.380000px;}
.y28{bottom:178.949520px;}
.y1b9{bottom:181.980000px;}
.ye1{bottom:182.594880px;}
.y1d9{bottom:184.387680px;}
.y263{bottom:185.223600px;}
.y142{bottom:185.961600px;}
.y18f{bottom:186.120000px;}
.y15b{bottom:186.722640px;}
.y217{bottom:188.116560px;}
.y53{bottom:189.922320px;}
.y118{bottom:194.784480px;}
.y1fb{bottom:195.557040px;}
.y9a{bottom:195.958800px;}
.y126{bottom:196.049520px;}
.y23d{bottom:198.000000px;}
.y27{bottom:200.543760px;}
.ye0{bottom:204.371280px;}
.y79{bottom:205.444800px;}
.y1d8{bottom:206.164080px;}
.y262{bottom:207.000000px;}
.y15a{bottom:208.499040px;}
.y216{bottom:209.892960px;}
.y1b8{bottom:211.140000px;}
.y52{bottom:211.516560px;}
.yc1{bottom:211.860000px;}
.y117{bottom:216.560880px;}
.y141{bottom:216.564480px;}
.y1fa{bottom:217.333440px;}
.y99{bottom:217.553040px;}
.y125{bottom:217.825920px;}
.y18e{bottom:218.202480px;}
.y26{bottom:222.320160px;}
.ydf{bottom:226.147680px;}
.y78{bottom:227.221200px;}
.y1d7{bottom:227.940480px;}
.y23c{bottom:228.785760px;}
.y159{bottom:230.275440px;}
.y215{bottom:231.487200px;}
.y51{bottom:233.292960px;}
.y261{bottom:237.789360px;}
.y140{bottom:238.340880px;}
.y98{bottom:239.329440px;}
.y18d{bottom:239.978880px;}
.y1b7{bottom:240.120000px;}
.y25{bottom:244.096560px;}
.y116{bottom:247.345920px;}
.y1f9{bottom:248.118480px;}
.y124{bottom:248.428800px;}
.y77{bottom:248.997600px;}
.y23b{bottom:250.380000px;}
.y214{bottom:253.263600px;}
.y50{bottom:255.069360px;}
.yde{bottom:256.932720px;}
.y1d6{bottom:258.543360px;}
.y260{bottom:259.383600px;}
.y13f{bottom:260.117280px;}
.y158{bottom:261.060480px;}
.y97{bottom:261.105840px;}
.y18c{bottom:261.755280px;}
.y24{bottom:265.872960px;}
.yc0{bottom:267.941520px;}
.y115{bottom:268.940160px;}
.y1b6{bottom:269.280000px;}
.y1f8{bottom:269.894880px;}
.y123{bottom:270.205200px;}
.y76{bottom:270.774000px;}
.y213{bottom:275.040000px;}
.y4f{bottom:276.845760px;}
.ydd{bottom:278.526960px;}
.y1d5{bottom:280.319760px;}
.y23a{bottom:281.160000px;}
.y13e{bottom:281.893680px;}
.y157{bottom:282.654720px;}
.y23{bottom:287.467200px;}
.ybf{bottom:289.535760px;}
.y114{bottom:290.716560px;}
.y96{bottom:291.890880px;}
.y122{bottom:291.981600px;}
.y75{bottom:292.368240px;}
.y18b{bottom:292.540320px;}
.y4e{bottom:298.440000px;}
.ydc{bottom:300.303360px;}
.y1f7{bottom:301.392000px;}
.y1d4{bottom:302.096160px;}
.y239{bottom:302.943600px;}
.y156{bottom:304.431120px;}
.y212{bottom:305.829360px;}
.y22{bottom:309.243600px;}
.ybe{bottom:311.312160px;}
.y25f{bottom:311.943600px;}
.y113{bottom:312.492960px;}
.y13d{bottom:312.496560px;}
.y95{bottom:313.485120px;}
.y121{bottom:313.758000px;}
.y18a{bottom:314.134560px;}
.y74{bottom:314.144640px;}
.y1f6{bottom:323.168400px;}
.y1d3{bottom:323.872560px;}
.y238{bottom:324.720000px;}
.y155{bottom:326.207520px;}
.y1b5{bottom:327.600000px;}
.y211{bottom:327.605760px;}
.y4d{bottom:330.660000px;}
.y21{bottom:331.020000px;}
.ydb{bottom:331.088400px;}
.ybd{bottom:333.088560px;}
.y25e{bottom:333.720000px;}
.y112{bottom:334.269360px;}
.y13c{bottom:334.272960px;}
.y94{bottom:335.261520px;}
.y120{bottom:335.352240px;}
.y189{bottom:335.910960px;}
.y73{bottom:335.921040px;}
.y1f5{bottom:344.944800px;}
.y1d2{bottom:345.648960px;}
.y154{bottom:347.983920px;}
.y210{bottom:349.200000px;}
.y237{bottom:355.323600px;}
.y111{bottom:355.863600px;}
.y13b{bottom:356.049360px;}
.y1b4{bottom:356.760000px;}
.y93{bottom:357.037920px;}
.y11f{bottom:357.128640px;}
.y72{bottom:357.697440px;}
.yda{bottom:361.873440px;}
.ybc{bottom:363.873600px;}
.y25d{bottom:364.327200px;}
.y20{bottom:364.500000px;}
.y188{bottom:366.696000px;}
.y1d1{bottom:367.243200px;}
.y4c{bottom:375.055200px;}
.y1f4{bottom:376.441920px;}
.y236{bottom:377.100000px;}
.y110{bottom:377.640000px;}
.y13a{bottom:377.825760px;}
.y153{bottom:378.586800px;}
.y92{bottom:378.814320px;}
.y11e{bottom:378.905040px;}
.y71{bottom:379.291680px;}
.y20f{bottom:379.980000px;}
.yd9{bottom:383.649840px;}
.ybb{bottom:385.467840px;}
.y1b3{bottom:385.920000px;}
.y25c{bottom:386.103600px;}
.y187{bottom:388.472400px;}
.y4b{bottom:396.831600px;}
.y1d0{bottom:398.028240px;}
.y1f3{bottom:398.218320px;}
.y139{bottom:399.420000px;}
.y152{bottom:400.363200px;}
.y91{bottom:400.408560px;}
.y11d{bottom:400.681440px;}
.y70{bottom:401.068080px;}
.y20e{bottom:401.769360px;}
.yd8{bottom:405.244080px;}
.yba{bottom:407.244240px;}
.y25b{bottom:407.880000px;}
.y235{bottom:407.889360px;}
.y10f{bottom:409.860000px;}
.y186{bottom:410.066640px;}
.y1b2{bottom:415.080000px;}
.y4a{bottom:418.425840px;}
.y1cf{bottom:419.804640px;}
.y1f2{bottom:419.994720px;}
.y151{bottom:422.139600px;}
.y6f{bottom:422.844480px;}
.y20d{bottom:423.545760px;}
.y1f{bottom:424.083600px;}
.y11c{bottom:426.780000px;}
.yd7{bottom:427.020480px;}
.yb9{bottom:429.020640px;}
.y234{bottom:429.665760px;}
.y138{bottom:430.740000px;}
.y90{bottom:431.193600px;}
.y185{bottom:431.843040px;}
.y25a{bottom:438.665760px;}
.y49{bottom:440.202240px;}
.y1ce{bottom:441.581040px;}
.y150{bottom:443.916000px;}
.y1b1{bottom:444.240000px;}
.y6e{bottom:444.620880px;}
.y20c{bottom:445.140000px;}
.y1e{bottom:445.926240px;}
.yd6{bottom:448.796880px;}
.yb8{bottom:450.797040px;}
.y233{bottom:451.260000px;}
.y1f1{bottom:451.674000px;}
.y8f{bottom:452.970000px;}
.y184{bottom:453.619440px;}
.y10e{bottom:456.660000px;}
.y259{bottom:460.260000px;}
.y48{bottom:461.978640px;}
.y1a1{bottom:462.780000px;}
.y1cd{bottom:463.175280px;}
.y137{bottom:464.400000px;}
.y14f{bottom:465.510240px;}
.y6d{bottom:466.215120px;}
.yb7{bottom:472.391280px;}
.y1f0{bottom:473.268240px;}
.y1b0{bottom:473.400000px;}
.y8e{bottom:474.746400px;}
.y20b{bottom:475.927200px;}
.yd5{bottom:479.581920px;}
.y232{bottom:482.047200px;}
.y47{bottom:483.755040px;}
.y183{bottom:484.404480px;}
.y1d{bottom:485.703360px;}
.y14e{bottom:487.286640px;}
.y286{bottom:488.345040px;}
.y258{bottom:491.047200px;}
.y1cc{bottom:493.960320px;}
.yb6{bottom:494.167680px;}
.y1a0{bottom:495.180000px;}
.y8d{bottom:496.340640px;}
.y6c{bottom:497.000160px;}
.y20a{bottom:497.703600px;}
.yd4{bottom:501.176160px;}
.y1af{bottom:502.560000px;}
.y231{bottom:503.823600px;}
.y1ef{bottom:504.947520px;}
.y46{bottom:505.349280px;}
.y1c{bottom:507.297600px;}
.y136{bottom:508.713120px;}
.y10d{bottom:512.673120px;}
.y257{bottom:512.823600px;}
.y182{bottom:515.007360px;}
.y1cb{bottom:515.736720px;}
.yb5{bottom:515.944080px;}
.y14d{bottom:518.071680px;}
.y8c{bottom:518.117040px;}
.y6b{bottom:518.776560px;}
.y209{bottom:519.480000px;}
.y285{bottom:522.177120px;}
.y16c{bottom:522.720000px;}
.yd3{bottom:522.952560px;}
.y230{bottom:525.600000px;}
.y1ee{bottom:526.723920px;}
.y1b{bottom:529.074000px;}
.y135{bottom:530.307360px;}
.y1ae{bottom:531.540000px;}
.y10c{bottom:534.449520px;}
.y256{bottom:534.600000px;}
.y45{bottom:536.134320px;}
.y181{bottom:536.783760px;}
.y176{bottom:537.300000px;}
.y1ca{bottom:537.513120px;}
.yb4{bottom:537.720480px;}
.y14c{bottom:539.848080px;}
.y8b{bottom:539.893440px;}
.y6a{bottom:540.552960px;}
.y208{bottom:550.083600px;}
.y16b{bottom:550.632960px;}
.y1a{bottom:550.850400px;}
.y134{bottom:552.083760px;}
.y284{bottom:552.780000px;}
.yd2{bottom:554.631840px;}
.y22f{bottom:556.200000px;}
.y10b{bottom:556.225920px;}
.y44{bottom:557.910720px;}
.y1ed{bottom:558.221040px;}
.y180{bottom:558.560160px;}
.y19c{bottom:558.900000px;}
.y1c9{bottom:559.107360px;}
.y1ad{bottom:560.700000px;}
.y14b{bottom:561.442320px;}
.y8a{bottom:561.669840px;}
.y69{bottom:562.147200px;}
.y255{bottom:565.203600px;}
.yb3{bottom:568.505520px;}
.y207{bottom:571.860000px;}
.y16a{bottom:572.227200px;}
.y19{bottom:572.626800px;}
.y133{bottom:573.860160px;}
.y175{bottom:574.255440px;}
.yd1{bottom:576.226080px;}
.y10a{bottom:577.820160px;}
.y22e{bottom:577.987200px;}
.y43{bottom:579.687120px;}
.y1ec{bottom:579.997440px;}
.y17f{bottom:580.336560px;}
.y1c8{bottom:580.883760px;}
.y14a{bottom:583.218720px;}
.y27e{bottom:583.560000px;}
.y68{bottom:583.923600px;}
.y254{bottom:586.980000px;}
.y1ac{bottom:589.860000px;}
.yb2{bottom:590.099760px;}
.y89{bottom:592.272720px;}
.y169{bottom:594.003600px;}
.y18{bottom:594.221040px;}
.y132{bottom:595.636560px;}
.y174{bottom:596.031840px;}
.y15f{bottom:598.680000px;}
.y109{bottom:599.596560px;}
.y22d{bottom:599.763600px;}
.y42{bottom:601.281360px;}
.y17e{bottom:601.930800px;}
.y206{bottom:602.640000px;}
.y1c7{bottom:602.660160px;}
.y149{bottom:604.995120px;}
.y283{bottom:605.352960px;}
.y27d{bottom:605.374560px;}
.y67{bottom:605.700000px;}
.yd0{bottom:607.905360px;}
.y1eb{bottom:611.676720px;}
.yb1{bottom:611.876160px;}
.y88{bottom:614.049120px;}
.y168{bottom:615.780000px;}
.y17{bottom:615.997440px;}
.y253{bottom:617.769360px;}
.y173{bottom:617.808240px;}
.y1ab{bottom:619.020000px;}
.y108{bottom:621.372960px;}
.y22c{bottom:621.540000px;}
.y41{bottom:623.057760px;}
.y205{bottom:624.420000px;}
.y131{bottom:626.239440px;}
.y282{bottom:627.129360px;}
.y27c{bottom:627.150960px;}
.ycf{bottom:629.681760px;}
.y17d{bottom:632.715840px;}
.y1c6{bottom:633.445200px;}
.y1ea{bottom:633.453120px;}
.yb0{bottom:633.652560px;}
.y148{bottom:635.780160px;}
.y87{bottom:635.825520px;}
.y16{bottom:637.773840px;}
.y66{bottom:637.920000px;}
.y252{bottom:639.545760px;}
.y19b{bottom:639.584640px;}
.y107{bottom:643.149360px;}
.y40{bottom:644.834160px;}
.y204{bottom:646.023600px;}
.y167{bottom:646.576560px;}
.y130{bottom:648.015840px;}
.y1aa{bottom:648.180000px;}
.y172{bottom:648.593280px;}
.y281{bottom:648.723600px;}
.y27b{bottom:648.745200px;}
.y22b{bottom:652.140000px;}
.y17c{bottom:654.492240px;}
.y1c5{bottom:655.039440px;}
.y1e9{bottom:655.047360px;}
.yaf{bottom:655.428960px;}
.y147{bottom:657.556560px;}
.y86{bottom:657.601920px;}
.y15{bottom:659.550240px;}
.y251{bottom:661.140000px;}
.yce{bottom:661.178880px;}
.y106{bottom:664.743600px;}
.y3f{bottom:666.610560px;}
.y203{bottom:667.800000px;}
.y166{bottom:668.170800px;}
.y12f{bottom:669.792240px;}
.y171{bottom:670.187520px;}
.y280{bottom:670.500000px;}
.y27a{bottom:670.521600px;}
.y22a{bottom:673.927200px;}
.y17b{bottom:676.268640px;}
.y1c4{bottom:676.815840px;}
.y1e8{bottom:676.823760px;}
.yae{bottom:677.023200px;}
.y1a9{bottom:677.340000px;}
.y146{bottom:679.150800px;}
.y85{bottom:679.196160px;}
.y14{bottom:681.144480px;}
.y65{bottom:682.043760px;}
.y105{bottom:686.520000px;}
.y3e{bottom:688.204800px;}
.y165{bottom:689.947200px;}
.y12e{bottom:691.568640px;}
.y250{bottom:691.920000px;}
.ycd{bottom:691.963920px;}
.y27f{bottom:692.280000px;}
.y279{bottom:692.298000px;}
.y229{bottom:695.703600px;}
.y17a{bottom:697.862880px;}
.y202{bottom:698.589360px;}
.y1e7{bottom:698.600160px;}
.y145{bottom:700.927200px;}
.y84{bottom:700.972560px;}
.y13{bottom:702.920880px;}
.y64{bottom:703.820160px;}
.y1c3{bottom:707.600880px;}
.yad{bottom:707.808240px;}
.y1a8{bottom:708.660000px;}
.y3d{bottom:709.981200px;}
.y164{bottom:711.723600px;}
.y12d{bottom:713.162880px;}
.y103{bottom:713.520000px;}
.y24f{bottom:713.709360px;}
.ycc{bottom:713.740320px;}
.y278{bottom:714.074400px;}
.y228{bottom:717.480000px;}
.y179{bottom:719.639280px;}
.y201{bottom:720.365760px;}
.y104{bottom:720.900000px;}
.y144{bottom:722.703600px;}
.y83{bottom:722.748960px;}
.y12{bottom:724.697280px;}
.y63{bottom:725.596560px;}
.y1c2{bottom:729.377280px;}
.y1e6{bottom:729.385200px;}
.yac{bottom:729.584640px;}
.y163{bottom:733.500000px;}
.y12c{bottom:734.939280px;}
.y24e{bottom:735.485760px;}
.y19a{bottom:735.516720px;}
.y277{bottom:735.668640px;}
.y101{bottom:739.440000px;}
.y3c{bottom:740.766240px;}
.y200{bottom:741.960000px;}
.y82{bottom:744.525360px;}
.y178{bottom:745.920000px;}
.y11{bottom:746.473680px;}
.y102{bottom:746.820000px;}
.y62{bottom:747.372960px;}
.y227{bottom:748.080000px;}
.y143{bottom:748.620000px;}
.y1c1{bottom:750.971520px;}
.y1e5{bottom:750.979440px;}
.yab{bottom:751.361040px;}
.y1a7{bottom:752.580000px;}
.y24d{bottom:757.080000px;}
.y199{bottom:757.110960px;}
.y276{bottom:757.445040px;}
.y12b{bottom:761.220000px;}
.y3b{bottom:762.542640px;}
.y162{bottom:764.640000px;}
.yff{bottom:765.360000px;}
.y81{bottom:766.119600px;}
.y10{bottom:768.250080px;}
.y61{bottom:768.967200px;}
.y226{bottom:769.867200px;}
.y100{bottom:772.740000px;}
.y1ff{bottom:772.743600px;}
.y1c0{bottom:772.747920px;}
.y1e4{bottom:772.755840px;}
.yaa{bottom:772.955280px;}
.y198{bottom:778.887360px;}
.y275{bottom:779.221440px;}
.y3a{bottom:784.136880px;}
.y24c{bottom:787.860000px;}
.ycb{bottom:787.896000px;}
.y1a6{bottom:789.663600px;}
.yf{bottom:789.844320px;}
.y60{bottom:790.743600px;}
.yfd{bottom:791.280000px;}
.y225{bottom:791.643600px;}
.y1fe{bottom:794.520000px;}
.ya9{bottom:794.731680px;}
.y80{bottom:796.904640px;}
.yfe{bottom:798.660000px;}
.y1bf{bottom:803.532960px;}
.y1e3{bottom:803.540880px;}
.y274{bottom:805.320000px;}
.y39{bottom:805.913280px;}
.y24b{bottom:809.652960px;}
.yca{bottom:809.672400px;}
.y1a5{bottom:811.440000px;}
.ye{bottom:811.620720px;}
.y5f{bottom:812.520000px;}
.y224{bottom:813.420000px;}
.ya8{bottom:816.508080px;}
.yfb{bottom:817.200000px;}
.y7f{bottom:818.681040px;}
.yfc{bottom:824.760000px;}
.y1be{bottom:825.309360px;}
.y1e2{bottom:825.317280px;}
.y38{bottom:827.689680px;}
.y24a{bottom:831.429360px;}
.yc9{bottom:831.448800px;}
.yd{bottom:833.397120px;}
.y7e{bottom:840.457440px;}
.y1a4{bottom:842.760000px;}
.yf9{bottom:843.300000px;}
.y223{bottom:844.209360px;}
.y5e{bottom:846.000000px;}
.y1bd{bottom:846.903600px;}
.y1e1{bottom:846.911520px;}
.ya7{bottom:847.293120px;}
.y37{bottom:849.466080px;}
.yfa{bottom:850.680000px;}
.y249{bottom:853.205760px;}
.yc8{bottom:853.225200px;}
.y7d{bottom:862.233840px;}
.y222{bottom:865.803600px;}
.y1bc{bottom:868.680000px;}
.y1e0{bottom:868.687920px;}
.ya6{bottom:868.887360px;}
.yf7{bottom:869.220000px;}
.y36{bottom:871.242480px;}
.y248{bottom:874.800000px;}
.yc7{bottom:874.819440px;}
.yf8{bottom:876.600000px;}
.yc{bottom:880.560000px;}
.y161{bottom:883.828080px;}
.y221{bottom:887.580000px;}
.y273{bottom:889.020000px;}
.y19f{bottom:890.280000px;}
.y1df{bottom:890.464320px;}
.ya5{bottom:890.663760px;}
.y35{bottom:892.836720px;}
.yf5{bottom:895.140000px;}
.y197{bottom:896.595840px;}
.y5d{bottom:901.845360px;}
.y1bb{bottom:902.160000px;}
.yf6{bottom:902.520000px;}
.y247{bottom:905.580000px;}
.yc6{bottom:905.604480px;}
.y272{bottom:906.840000px;}
.y1de{bottom:912.240720px;}
.ya4{bottom:912.440160px;}
.y34{bottom:914.613120px;}
.y26b{bottom:918.360000px;}
.y220{bottom:918.363600px;}
.y196{bottom:918.372240px;}
.yb{bottom:918.726480px;}
.yf3{bottom:921.060000px;}
.y5c{bottom:923.621760px;}
.y271{bottom:924.660000px;}
.y246{bottom:927.360000px;}
.y170{bottom:927.380880px;}
.yf4{bottom:928.440000px;}
.ya3{bottom:934.216560px;}
.y33{bottom:936.389520px;}
.ya{bottom:938.880000px;}
.y21f{bottom:940.140000px;}
.y1a3{bottom:940.148640px;}
.y1dd{bottom:942.843600px;}
.y12a{bottom:944.820000px;}
.y5b{bottom:945.398160px;}
.yf1{bottom:946.980000px;}
.y245{bottom:949.140000px;}
.y26a{bottom:949.149360px;}
.y16f{bottom:949.157280px;}
.yf2{bottom:954.360000px;}
.y270{bottom:954.900000px;}
.ya2{bottom:955.810800px;}
.y32{bottom:958.165920px;}
.y9{bottom:958.866480px;}
.y1dc{bottom:964.620000px;}
.y5a{bottom:967.174560px;}
.y21e{bottom:970.740000px;}
.y269{bottom:970.743600px;}
.y195{bottom:970.751520px;}
.yed{bottom:972.900000px;}
.y129{bottom:977.220000px;}
.ya1{bottom:977.587200px;}
.y8{bottom:979.020000px;}
.y244{bottom:979.750800px;}
.y31{bottom:979.760160px;}
.yef{bottom:980.460000px;}
.y59{bottom:988.768800px;}
.y268{bottom:992.520000px;}
.y21d{bottom:992.523600px;}
.y194{bottom:992.527920px;}
.y1db{bottom:998.100000px;}
.ye9{bottom:999.000000px;}
.y7{bottom:999.186480px;}
.ya0{bottom:999.363600px;}
.y243{bottom:1001.527200px;}
.y30{bottom:1001.536560px;}
.yeb{bottom:1006.380000px;}
.y58{bottom:1010.545200px;}
.y21c{bottom:1014.300000px;}
.y19e{bottom:1014.304320px;}
.y6{bottom:1019.340000px;}
.y9f{bottom:1021.140000px;}
.y267{bottom:1023.300000px;}
.y242{bottom:1023.303600px;}
.y2f{bottom:1023.312960px;}
.ye6{bottom:1027.080000px;}
.y57{bottom:1032.321600px;}
.y26f{bottom:1039.689360px;}
.y21b{bottom:1045.080000px;}
.y266{bottom:1045.085760px;}
.y16e{bottom:1045.089360px;}
.y9e{bottom:1053.180000px;}
.y2e{bottom:1054.098000px;}
.y5{bottom:1058.580000px;}
.y26e{bottom:1061.465760px;}
.y265{bottom:1066.680000px;}
.y193{bottom:1066.683600px;}
.y241{bottom:1075.680000px;}
.y2d{bottom:1075.692240px;}
.ye5{bottom:1082.160000px;}
.y26d{bottom:1083.242160px;}
.y4{bottom:1085.940000px;}
.y192{bottom:1088.460000px;}
.y240{bottom:1097.460000px;}
.y2c{bottom:1097.468640px;}
.y2b{bottom:1119.245040px;}
.y26c{bottom:1141.020000px;}
.y2a{bottom:1141.021440px;}
.y11b{bottom:1143.720000px;}
.y2{bottom:1180.444500px;}
.y1{bottom:1196.820000px;}
.hb{height:25.920000px;}
.hc{height:26.100000px;}
.hd{height:26.101500px;}
.h12{height:28.978500px;}
.h13{height:28.980000px;}
.h11{height:29.160000px;}
.h9{height:37.335938px;}
.h2{height:38.522461px;}
.he{height:39.830273px;}
.ha{height:40.320000px;}
.h16{height:44.534180px;}
.h7{height:47.254219px;}
.h3{height:47.868750px;}
.hf{height:51.363281px;}
.h15{height:54.608434px;}
.h6{height:54.628594px;}
.h10{height:59.378906px;}
.h5{height:60.095039px;}
.h8{height:68.313164px;}
.h4{height:77.044922px;}
.h14{height:78.973945px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:101.880000px;}
.w6{width:125.100000px;}
.w7{width:126.000000px;}
.w8{width:126.360000px;}
.w2{width:174.420000px;}
.w5{width:260.280000px;}
.w3{width:361.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:10.260000px;}
.x14{left:24.660000px;}
.x13{left:27.180000px;}
.x1a{left:30.060000px;}
.x21{left:34.200000px;}
.x17{left:50.940000px;}
.x38{left:54.720000px;}
.x37{left:58.860000px;}
.x36{left:59.940000px;}
.x35{left:62.460000px;}
.xf{left:74.340000px;}
.x20{left:99.720000px;}
.x24{left:109.260000px;}
.x19{left:124.920000px;}
.xb{left:127.607760px;}
.x3d{left:131.215680px;}
.x3a{left:133.562880px;}
.x3f{left:135.355680px;}
.x3e{left:137.508480px;}
.xc{left:140.361120px;}
.x40{left:141.648480px;}
.x41{left:146.517120px;}
.xd{left:153.145440px;}
.x11{left:164.700000px;}
.x5{left:166.500000px;}
.x1b{left:168.120000px;}
.x1d{left:170.460000px;}
.x23{left:175.860000px;}
.x16{left:180.720000px;}
.x1{left:184.860000px;}
.x2b{left:193.860000px;}
.x8{left:197.280000px;}
.x2f{left:200.700000px;}
.x18{left:203.040000px;}
.xa{left:206.640000px;}
.x6{left:214.740000px;}
.xe{left:216.000000px;}
.x1f{left:219.240000px;}
.x15{left:221.760000px;}
.x30{left:226.800000px;}
.x1e{left:228.960000px;}
.x9{left:239.226480px;}
.x1c{left:241.560000px;}
.x22{left:243.540000px;}
.x2a{left:245.340000px;}
.x3b{left:247.495680px;}
.x2c{left:250.200000px;}
.x7{left:252.182160px;}
.x2e{left:253.800000px;}
.x4{left:259.740000px;}
.x3c{left:290.700000px;}
.x28{left:292.680000px;}
.x25{left:298.440000px;}
.x10{left:302.040000px;}
.x2{left:317.889000px;}
.x27{left:335.340000px;}
.x39{left:372.060000px;}
.x31{left:387.900000px;}
.x3{left:425.160000px;}
.x43{left:473.032080px;}
.x44{left:475.367040px;}
.x48{left:477.545040px;}
.x45{left:487.969200px;}
.x47{left:496.440000px;}
.x46{left:504.900000px;}
.x33{left:513.000000px;}
.x49{left:556.920000px;}
.x29{left:633.240000px;}
.x34{left:639.000000px;}
.x12{left:663.660000px;}
.x42{left:679.320000px;}
.x2d{left:684.900000px;}
.x26{left:701.820000px;}
@media print{
.v1{vertical-align:-23.669760pt;}
.v2{vertical-align:-5.122560pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-2.592000pt;}
.ls2a{letter-spacing:-1.766400pt;}
.ls2f{letter-spacing:-1.236480pt;}
.ls24{letter-spacing:-1.118720pt;}
.ls40{letter-spacing:-1.059840pt;}
.ls41{letter-spacing:-0.942080pt;}
.ls16{letter-spacing:-0.824320pt;}
.ls29{letter-spacing:-0.765440pt;}
.ls19{letter-spacing:-0.706560pt;}
.ls17{letter-spacing:-0.647680pt;}
.ls46{letter-spacing:-0.588800pt;}
.ls10{letter-spacing:-0.529920pt;}
.ls11{letter-spacing:-0.471040pt;}
.ls36{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.412160pt;}
.ls13{letter-spacing:-0.353280pt;}
.lsf{letter-spacing:-0.294400pt;}
.ls37{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.255360pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls33{letter-spacing:-0.235520pt;}
.ls1f{letter-spacing:-0.224640pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.176640pt;}
.ls32{letter-spacing:-0.144000pt;}
.ls15{letter-spacing:-0.117760pt;}
.ls4a{letter-spacing:-0.096000pt;}
.ls42{letter-spacing:-0.085120pt;}
.ls3a{letter-spacing:-0.064000pt;}
.ls25{letter-spacing:-0.058880pt;}
.ls4b{letter-spacing:-0.048000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.048000pt;}
.ls3f{letter-spacing:0.062400pt;}
.ls3e{letter-spacing:0.064000pt;}
.ls3c{letter-spacing:0.100096pt;}
.ls1{letter-spacing:0.117760pt;}
.ls35{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.149760pt;}
.ls20{letter-spacing:0.170240pt;}
.ls0{letter-spacing:0.176640pt;}
.ls4{letter-spacing:0.235520pt;}
.ls3d{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.288000pt;}
.ls3{letter-spacing:0.294400pt;}
.ls2{letter-spacing:0.299520pt;}
.ls14{letter-spacing:0.353280pt;}
.ls26{letter-spacing:0.759552pt;}
.ls1a{letter-spacing:0.765440pt;}
.ls2d{letter-spacing:0.847872pt;}
.ls5{letter-spacing:1.413120pt;}
.ls1e{letter-spacing:2.060800pt;}
.ls6{letter-spacing:2.708480pt;}
.ls30{letter-spacing:3.356160pt;}
.ls1d{letter-spacing:3.944960pt;}
.ls21{letter-spacing:4.592640pt;}
.ls38{letter-spacing:5.240320pt;}
.ls39{letter-spacing:5.888000pt;}
.ls7{letter-spacing:7.183360pt;}
.ls2b{letter-spacing:8.478720pt;}
.ls22{letter-spacing:9.715200pt;}
.ls28{letter-spacing:10.362880pt;}
.ls1b{letter-spacing:11.658240pt;}
.ls1c{letter-spacing:12.305920pt;}
.ls45{letter-spacing:12.326400pt;}
.ls2e{letter-spacing:12.953600pt;}
.ls2c{letter-spacing:14.190080pt;}
.ls43{letter-spacing:14.814720pt;}
.ls44{letter-spacing:15.490560pt;}
.ls47{letter-spacing:15.554560pt;}
.ls3b{letter-spacing:16.780800pt;}
.ls23{letter-spacing:18.076160pt;}
.ls27{letter-spacing:25.754112pt;}
.ls34{letter-spacing:754.720000pt;}
.ls49{letter-spacing:791.818240pt;}
.ls48{letter-spacing:905.103360pt;}
.ws2{word-spacing:-58.880000pt;}
.wsbb{word-spacing:-19.152000pt;}
.wsf{word-spacing:-18.981760pt;}
.ws34{word-spacing:-17.072640pt;}
.ws33{word-spacing:-16.698240pt;}
.wsa6{word-spacing:-14.528000pt;}
.ws93{word-spacing:-14.016000pt;}
.ws11{word-spacing:-13.660160pt;}
.wsa{word-spacing:-13.601280pt;}
.wsc{word-spacing:-13.542400pt;}
.ws7{word-spacing:-13.483520pt;}
.ws9{word-spacing:-13.424640pt;}
.ws5{word-spacing:-13.306880pt;}
.ws54{word-spacing:-13.248000pt;}
.wsbc{word-spacing:-13.189120pt;}
.ws6{word-spacing:-13.130240pt;}
.ws8b{word-spacing:-13.071360pt;}
.wsb{word-spacing:-13.012480pt;}
.ws8{word-spacing:-12.953600pt;}
.ws1{word-spacing:-12.894720pt;}
.ws4{word-spacing:-12.835840pt;}
.ws3{word-spacing:-12.776960pt;}
.wsce{word-spacing:-12.718080pt;}
.wse{word-spacing:-12.659200pt;}
.ws10{word-spacing:-12.600320pt;}
.ws67{word-spacing:-12.541440pt;}
.wsd{word-spacing:-12.482560pt;}
.wsa0{word-spacing:-12.305920pt;}
.wsaa{word-spacing:-12.247040pt;}
.ws9f{word-spacing:-11.136000pt;}
.wsd1{word-spacing:-10.896000pt;}
.wsd0{word-spacing:-10.848000pt;}
.wscf{word-spacing:-10.752000pt;}
.wsa8{word-spacing:-10.704000pt;}
.ws0{word-spacing:-10.656000pt;}
.ws9a{word-spacing:-10.608000pt;}
.ws6d{word-spacing:-9.715200pt;}
.wsad{word-spacing:-5.888000pt;}
.ws76{word-spacing:-4.592640pt;}
.wsc1{word-spacing:-3.944960pt;}
.ws9c{word-spacing:-3.415040pt;}
.ws94{word-spacing:-3.356160pt;}
.ws95{word-spacing:-3.179520pt;}
.wsb5{word-spacing:-3.061760pt;}
.ws6f{word-spacing:-2.885120pt;}
.ws89{word-spacing:-2.767360pt;}
.wsb4{word-spacing:-2.531840pt;}
.ws78{word-spacing:-2.296320pt;}
.ws27{word-spacing:-2.237440pt;}
.ws43{word-spacing:-2.119680pt;}
.ws37{word-spacing:-2.060800pt;}
.ws5f{word-spacing:-2.001920pt;}
.ws79{word-spacing:-1.943040pt;}
.ws5e{word-spacing:-1.884160pt;}
.wsb6{word-spacing:-1.766400pt;}
.ws92{word-spacing:-1.648640pt;}
.ws3c{word-spacing:-1.589760pt;}
.wsb1{word-spacing:-1.472000pt;}
.ws4e{word-spacing:-1.354240pt;}
.ws85{word-spacing:-1.236480pt;}
.ws52{word-spacing:-1.118720pt;}
.ws26{word-spacing:-0.942080pt;}
.ws8a{word-spacing:-0.883200pt;}
.wsc3{word-spacing:-0.824320pt;}
.wscd{word-spacing:-0.765440pt;}
.ws8f{word-spacing:-0.706560pt;}
.ws5d{word-spacing:-0.647680pt;}
.ws42{word-spacing:-0.588800pt;}
.ws4c{word-spacing:-0.529920pt;}
.ws17{word-spacing:-0.449280pt;}
.ws1e{word-spacing:-0.353280pt;}
.ws1b{word-spacing:-0.294400pt;}
.ws12{word-spacing:-0.240000pt;}
.ws1f{word-spacing:-0.235520pt;}
.ws53{word-spacing:-0.176640pt;}
.ws58{word-spacing:-0.170240pt;}
.ws18{word-spacing:-0.117760pt;}
.ws8e{word-spacing:-0.058880pt;}
.wsd2{word-spacing:-0.048000pt;}
.ws13{word-spacing:0.000000pt;}
.ws15{word-spacing:0.048000pt;}
.wsa1{word-spacing:0.064000pt;}
.ws16{word-spacing:0.096000pt;}
.ws20{word-spacing:0.117760pt;}
.ws8c{word-spacing:0.144000pt;}
.ws1d{word-spacing:0.176640pt;}
.ws99{word-spacing:0.235520pt;}
.ws8d{word-spacing:0.240000pt;}
.ws91{word-spacing:0.255360pt;}
.ws14{word-spacing:0.288000pt;}
.ws19{word-spacing:0.294400pt;}
.wsaf{word-spacing:0.320000pt;}
.ws75{word-spacing:0.353280pt;}
.ws1c{word-spacing:0.412160pt;}
.ws41{word-spacing:0.471040pt;}
.ws97{word-spacing:0.512000pt;}
.ws1a{word-spacing:0.529920pt;}
.wscc{word-spacing:0.588800pt;}
.ws6b{word-spacing:0.647680pt;}
.ws9b{word-spacing:0.765440pt;}
.wsa4{word-spacing:0.824320pt;}
.wsb9{word-spacing:0.883200pt;}
.ws25{word-spacing:0.942080pt;}
.ws36{word-spacing:1.059840pt;}
.ws5c{word-spacing:1.118720pt;}
.ws71{word-spacing:1.177600pt;}
.ws60{word-spacing:1.236480pt;}
.ws45{word-spacing:1.295360pt;}
.ws3d{word-spacing:1.589760pt;}
.wsba{word-spacing:1.707520pt;}
.ws7a{word-spacing:1.766400pt;}
.ws44{word-spacing:1.825280pt;}
.ws7f{word-spacing:1.943040pt;}
.ws29{word-spacing:2.237440pt;}
.ws9d{word-spacing:2.355200pt;}
.wsa5{word-spacing:2.414080pt;}
.ws2a{word-spacing:2.590720pt;}
.ws4d{word-spacing:2.708480pt;}
.wsb7{word-spacing:2.826240pt;}
.ws2d{word-spacing:2.885120pt;}
.wsac{word-spacing:3.002880pt;}
.wsc0{word-spacing:3.061760pt;}
.ws46{word-spacing:3.238400pt;}
.wsae{word-spacing:3.473920pt;}
.ws2e{word-spacing:3.532800pt;}
.ws9e{word-spacing:3.650560pt;}
.ws2f{word-spacing:3.827200pt;}
.ws70{word-spacing:4.003840pt;}
.ws48{word-spacing:4.121600pt;}
.wsb8{word-spacing:4.239360pt;}
.ws98{word-spacing:4.474880pt;}
.ws28{word-spacing:4.769280pt;}
.ws6a{word-spacing:4.887040pt;}
.ws59{word-spacing:5.004800pt;}
.ws5a{word-spacing:5.122560pt;}
.ws2c{word-spacing:5.416960pt;}
.ws88{word-spacing:5.534720pt;}
.wsb0{word-spacing:5.770240pt;}
.ws32{word-spacing:6.064640pt;}
.wsa2{word-spacing:6.182400pt;}
.ws57{word-spacing:6.300160pt;}
.wsa3{word-spacing:6.417920pt;}
.ws30{word-spacing:6.712320pt;}
.ws72{word-spacing:7.360000pt;}
.ws55{word-spacing:7.536640pt;}
.wsb3{word-spacing:7.595520pt;}
.ws83{word-spacing:7.713280pt;}
.ws82{word-spacing:8.007680pt;}
.wsb2{word-spacing:8.125440pt;}
.ws31{word-spacing:8.360960pt;}
.ws24{word-spacing:8.655360pt;}
.ws21{word-spacing:8.949760pt;}
.ws38{word-spacing:9.244160pt;}
.ws23{word-spacing:9.361920pt;}
.ws40{word-spacing:9.597440pt;}
.ws7d{word-spacing:9.774080pt;}
.ws22{word-spacing:9.891840pt;}
.wsca{word-spacing:10.068480pt;}
.ws6c{word-spacing:10.127360pt;}
.ws3a{word-spacing:10.245120pt;}
.ws80{word-spacing:10.539520pt;}
.ws3b{word-spacing:10.657280pt;}
.ws7e{word-spacing:10.775040pt;}
.ws96{word-spacing:10.833920pt;}
.ws35{word-spacing:10.892800pt;}
.ws77{word-spacing:11.187200pt;}
.ws84{word-spacing:11.304960pt;}
.wsa9{word-spacing:11.481600pt;}
.ws4a{word-spacing:11.540480pt;}
.ws47{word-spacing:11.658240pt;}
.ws4f{word-spacing:11.834880pt;}
.ws3f{word-spacing:11.952640pt;}
.wsc9{word-spacing:12.129280pt;}
.ws4b{word-spacing:12.188160pt;}
.ws49{word-spacing:12.423680pt;}
.ws3e{word-spacing:12.482560pt;}
.ws87{word-spacing:13.130240pt;}
.ws90{word-spacing:13.777920pt;}
.wsbf{word-spacing:14.072320pt;}
.ws51{word-spacing:14.366720pt;}
.ws50{word-spacing:14.720000pt;}
.ws56{word-spacing:15.014400pt;}
.ws66{word-spacing:15.367680pt;}
.ws7b{word-spacing:15.662080pt;}
.ws81{word-spacing:15.897600pt;}
.wsc6{word-spacing:16.015360pt;}
.ws6e{word-spacing:16.309760pt;}
.ws73{word-spacing:16.663040pt;}
.ws74{word-spacing:16.957440pt;}
.ws65{word-spacing:17.605120pt;}
.ws63{word-spacing:17.722880pt;}
.ws64{word-spacing:17.958400pt;}
.wsab{word-spacing:18.252800pt;}
.wsa7{word-spacing:18.547200pt;}
.ws5b{word-spacing:19.077120pt;}
.ws39{word-spacing:20.136960pt;}
.ws2b{word-spacing:21.432320pt;}
.ws86{word-spacing:23.964160pt;}
.ws69{word-spacing:24.965120pt;}
.ws68{word-spacing:25.907200pt;}
.wsbe{word-spacing:26.024960pt;}
.ws7c{word-spacing:26.260480pt;}
.wsc2{word-spacing:32.972800pt;}
.ws61{word-spacing:36.917760pt;}
.ws62{word-spacing:38.095360pt;}
.wsc7{word-spacing:38.389760pt;}
.wsc4{word-spacing:39.331840pt;}
.wsc5{word-spacing:39.449600pt;}
.wsc8{word-spacing:39.979520pt;}
.wsbd{word-spacing:48.929280pt;}
.wscb{word-spacing:49.576960pt;}
._1c{margin-left:-12.841728pt;}
._1b{margin-left:-11.946752pt;}
._11{margin-left:-10.568960pt;}
._f{margin-left:-9.653248pt;}
._1e{margin-left:-6.497600pt;}
._15{margin-left:-5.455040pt;}
._14{margin-left:-4.493760pt;}
._12{margin-left:-3.570112pt;}
._2{margin-left:-2.457600pt;}
._0{margin-left:-0.931200pt;}
._1{width:0.984000pt;}
._6{width:2.078656pt;}
._4{width:3.095872pt;}
._5{width:4.262208pt;}
._7{width:5.486912pt;}
._a{width:7.248128pt;}
._9{width:8.139584pt;}
._10{width:9.203136pt;}
._3{width:10.105600pt;}
._13{width:11.081216pt;}
._b{width:12.164608pt;}
._8{width:15.010304pt;}
._c{width:16.203776pt;}
._e{width:17.367232pt;}
._d{width:18.774720pt;}
._17{width:20.556800pt;}
._1d{width:21.933696pt;}
._18{width:23.362880pt;}
._19{width:24.330624pt;}
._16{width:25.959488pt;}
._20{width:27.160448pt;}
._1f{width:28.311296pt;}
._22{width:30.801152pt;}
._21{width:32.040192pt;}
._25{width:37.851776pt;}
._24{width:39.103680pt;}
._23{width:73.299008pt;}
._1a{width:754.728960pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye8{bottom:4.000000pt;}
.yea{bottom:6.560000pt;}
.yee{bottom:6.720000pt;}
.yec{bottom:9.120000pt;}
.yf0{bottom:9.280000pt;}
.ye7{bottom:21.920000pt;}
.y3{bottom:51.200000pt;}
.y160{bottom:96.960000pt;}
.yc5{bottom:100.651520pt;}
.y21a{bottom:101.288320pt;}
.y56{bottom:102.741760pt;}
.ye4{bottom:104.398080pt;}
.y15e{bottom:108.067200pt;}
.y16d{bottom:114.080000pt;}
.y9d{bottom:116.115200pt;}
.y7c{bottom:116.701440pt;}
.y1a2{bottom:118.080000pt;}
.y191{bottom:118.243200pt;}
.yc4{bottom:120.008320pt;}
.y219{bottom:120.483200pt;}
.y55{bottom:122.098560pt;}
.ye3{bottom:123.754880pt;}
.y177{bottom:126.400000pt;}
.y15d{bottom:127.424000pt;}
.y11a{bottom:128.000000pt;}
.y128{bottom:130.240000pt;}
.y1fd{bottom:135.276800pt;}
.y9c{bottom:135.472000pt;}
.y1ba{bottom:135.840000pt;}
.y7b{bottom:136.058240pt;}
.y23f{bottom:137.280000pt;}
.y190{bottom:137.600000pt;}
.y19d{bottom:137.760000pt;}
.yc3{bottom:139.365120pt;}
.y29{bottom:139.709440pt;}
.y218{bottom:139.840000pt;}
.ye2{bottom:143.111680pt;}
.y1da{bottom:144.543360pt;}
.y264{bottom:145.280000pt;}
.y15c{bottom:146.780800pt;}
.y54{bottom:149.463040pt;}
.y119{bottom:153.784960pt;}
.y1fc{bottom:154.633600pt;}
.y9b{bottom:154.828800pt;}
.y127{bottom:154.909440pt;}
.y7a{bottom:155.415040pt;}
.y23e{bottom:156.643200pt;}
.yc2{bottom:158.560000pt;}
.y28{bottom:159.066240pt;}
.y1b9{bottom:161.760000pt;}
.ye1{bottom:162.306560pt;}
.y1d9{bottom:163.900160pt;}
.y263{bottom:164.643200pt;}
.y142{bottom:165.299200pt;}
.y18f{bottom:165.440000pt;}
.y15b{bottom:165.975680pt;}
.y217{bottom:167.214720pt;}
.y53{bottom:168.819840pt;}
.y118{bottom:173.141760pt;}
.y1fb{bottom:173.828480pt;}
.y9a{bottom:174.185600pt;}
.y126{bottom:174.266240pt;}
.y23d{bottom:176.000000pt;}
.y27{bottom:178.261120pt;}
.ye0{bottom:181.663360pt;}
.y79{bottom:182.617600pt;}
.y1d8{bottom:183.256960pt;}
.y262{bottom:184.000000pt;}
.y15a{bottom:185.332480pt;}
.y216{bottom:186.571520pt;}
.y1b8{bottom:187.680000pt;}
.y52{bottom:188.014720pt;}
.yc1{bottom:188.320000pt;}
.y117{bottom:192.498560pt;}
.y141{bottom:192.501760pt;}
.y1fa{bottom:193.185280pt;}
.y99{bottom:193.380480pt;}
.y125{bottom:193.623040pt;}
.y18e{bottom:193.957760pt;}
.y26{bottom:197.617920pt;}
.ydf{bottom:201.020160pt;}
.y78{bottom:201.974400pt;}
.y1d7{bottom:202.613760pt;}
.y23c{bottom:203.365120pt;}
.y159{bottom:204.689280pt;}
.y215{bottom:205.766400pt;}
.y51{bottom:207.371520pt;}
.y261{bottom:211.368320pt;}
.y140{bottom:211.858560pt;}
.y98{bottom:212.737280pt;}
.y18d{bottom:213.314560pt;}
.y1b7{bottom:213.440000pt;}
.y25{bottom:216.974720pt;}
.y116{bottom:219.863040pt;}
.y1f9{bottom:220.549760pt;}
.y124{bottom:220.825600pt;}
.y77{bottom:221.331200pt;}
.y23b{bottom:222.560000pt;}
.y214{bottom:225.123200pt;}
.y50{bottom:226.728320pt;}
.yde{bottom:228.384640pt;}
.y1d6{bottom:229.816320pt;}
.y260{bottom:230.563200pt;}
.y13f{bottom:231.215360pt;}
.y158{bottom:232.053760pt;}
.y97{bottom:232.094080pt;}
.y18c{bottom:232.671360pt;}
.y24{bottom:236.331520pt;}
.yc0{bottom:238.170240pt;}
.y115{bottom:239.057920pt;}
.y1b6{bottom:239.360000pt;}
.y1f8{bottom:239.906560pt;}
.y123{bottom:240.182400pt;}
.y76{bottom:240.688000pt;}
.y213{bottom:244.480000pt;}
.y4f{bottom:246.085120pt;}
.ydd{bottom:247.579520pt;}
.y1d5{bottom:249.173120pt;}
.y23a{bottom:249.920000pt;}
.y13e{bottom:250.572160pt;}
.y157{bottom:251.248640pt;}
.y23{bottom:255.526400pt;}
.ybf{bottom:257.365120pt;}
.y114{bottom:258.414720pt;}
.y96{bottom:259.458560pt;}
.y122{bottom:259.539200pt;}
.y75{bottom:259.882880pt;}
.y18b{bottom:260.035840pt;}
.y4e{bottom:265.280000pt;}
.ydc{bottom:266.936320pt;}
.y1f7{bottom:267.904000pt;}
.y1d4{bottom:268.529920pt;}
.y239{bottom:269.283200pt;}
.y156{bottom:270.605440pt;}
.y212{bottom:271.848320pt;}
.y22{bottom:274.883200pt;}
.ybe{bottom:276.721920pt;}
.y25f{bottom:277.283200pt;}
.y113{bottom:277.771520pt;}
.y13d{bottom:277.774720pt;}
.y95{bottom:278.653440pt;}
.y121{bottom:278.896000pt;}
.y18a{bottom:279.230720pt;}
.y74{bottom:279.239680pt;}
.y1f6{bottom:287.260800pt;}
.y1d3{bottom:287.886720pt;}
.y238{bottom:288.640000pt;}
.y155{bottom:289.962240pt;}
.y1b5{bottom:291.200000pt;}
.y211{bottom:291.205120pt;}
.y4d{bottom:293.920000pt;}
.y21{bottom:294.240000pt;}
.ydb{bottom:294.300800pt;}
.ybd{bottom:296.078720pt;}
.y25e{bottom:296.640000pt;}
.y112{bottom:297.128320pt;}
.y13c{bottom:297.131520pt;}
.y94{bottom:298.010240pt;}
.y120{bottom:298.090880pt;}
.y189{bottom:298.587520pt;}
.y73{bottom:298.596480pt;}
.y1f5{bottom:306.617600pt;}
.y1d2{bottom:307.243520pt;}
.y154{bottom:309.319040pt;}
.y210{bottom:310.400000pt;}
.y237{bottom:315.843200pt;}
.y111{bottom:316.323200pt;}
.y13b{bottom:316.488320pt;}
.y1b4{bottom:317.120000pt;}
.y93{bottom:317.367040pt;}
.y11f{bottom:317.447680pt;}
.y72{bottom:317.953280pt;}
.yda{bottom:321.665280pt;}
.ybc{bottom:323.443200pt;}
.y25d{bottom:323.846400pt;}
.y20{bottom:324.000000pt;}
.y188{bottom:325.952000pt;}
.y1d1{bottom:326.438400pt;}
.y4c{bottom:333.382400pt;}
.y1f4{bottom:334.615040pt;}
.y236{bottom:335.200000pt;}
.y110{bottom:335.680000pt;}
.y13a{bottom:335.845120pt;}
.y153{bottom:336.521600pt;}
.y92{bottom:336.723840pt;}
.y11e{bottom:336.804480pt;}
.y71{bottom:337.148160pt;}
.y20f{bottom:337.760000pt;}
.yd9{bottom:341.022080pt;}
.ybb{bottom:342.638080pt;}
.y1b3{bottom:343.040000pt;}
.y25c{bottom:343.203200pt;}
.y187{bottom:345.308800pt;}
.y4b{bottom:352.739200pt;}
.y1d0{bottom:353.802880pt;}
.y1f3{bottom:353.971840pt;}
.y139{bottom:355.040000pt;}
.y152{bottom:355.878400pt;}
.y91{bottom:355.918720pt;}
.y11d{bottom:356.161280pt;}
.y70{bottom:356.504960pt;}
.y20e{bottom:357.128320pt;}
.yd8{bottom:360.216960pt;}
.yba{bottom:361.994880pt;}
.y25b{bottom:362.560000pt;}
.y235{bottom:362.568320pt;}
.y10f{bottom:364.320000pt;}
.y186{bottom:364.503680pt;}
.y1b2{bottom:368.960000pt;}
.y4a{bottom:371.934080pt;}
.y1cf{bottom:373.159680pt;}
.y1f2{bottom:373.328640pt;}
.y151{bottom:375.235200pt;}
.y6f{bottom:375.861760pt;}
.y20d{bottom:376.485120pt;}
.y1f{bottom:376.963200pt;}
.y11c{bottom:379.360000pt;}
.yd7{bottom:379.573760pt;}
.yb9{bottom:381.351680pt;}
.y234{bottom:381.925120pt;}
.y138{bottom:382.880000pt;}
.y90{bottom:383.283200pt;}
.y185{bottom:383.860480pt;}
.y25a{bottom:389.925120pt;}
.y49{bottom:391.290880pt;}
.y1ce{bottom:392.516480pt;}
.y150{bottom:394.592000pt;}
.y1b1{bottom:394.880000pt;}
.y6e{bottom:395.218560pt;}
.y20c{bottom:395.680000pt;}
.y1e{bottom:396.378880pt;}
.yd6{bottom:398.930560pt;}
.yb8{bottom:400.708480pt;}
.y233{bottom:401.120000pt;}
.y1f1{bottom:401.488000pt;}
.y8f{bottom:402.640000pt;}
.y184{bottom:403.217280pt;}
.y10e{bottom:405.920000pt;}
.y259{bottom:409.120000pt;}
.y48{bottom:410.647680pt;}
.y1a1{bottom:411.360000pt;}
.y1cd{bottom:411.711360pt;}
.y137{bottom:412.800000pt;}
.y14f{bottom:413.786880pt;}
.y6d{bottom:414.413440pt;}
.yb7{bottom:419.903360pt;}
.y1f0{bottom:420.682880pt;}
.y1b0{bottom:420.800000pt;}
.y8e{bottom:421.996800pt;}
.y20b{bottom:423.046400pt;}
.yd5{bottom:426.295040pt;}
.y232{bottom:428.486400pt;}
.y47{bottom:430.004480pt;}
.y183{bottom:430.581760pt;}
.y1d{bottom:431.736320pt;}
.y14e{bottom:433.143680pt;}
.y286{bottom:434.084480pt;}
.y258{bottom:436.486400pt;}
.y1cc{bottom:439.075840pt;}
.yb6{bottom:439.260160pt;}
.y1a0{bottom:440.160000pt;}
.y8d{bottom:441.191680pt;}
.y6c{bottom:441.777920pt;}
.y20a{bottom:442.403200pt;}
.yd4{bottom:445.489920pt;}
.y1af{bottom:446.720000pt;}
.y231{bottom:447.843200pt;}
.y1ef{bottom:448.842240pt;}
.y46{bottom:449.199360pt;}
.y1c{bottom:450.931200pt;}
.y136{bottom:452.189440pt;}
.y10d{bottom:455.709440pt;}
.y257{bottom:455.843200pt;}
.y182{bottom:457.784320pt;}
.y1cb{bottom:458.432640pt;}
.yb5{bottom:458.616960pt;}
.y14d{bottom:460.508160pt;}
.y8c{bottom:460.548480pt;}
.y6b{bottom:461.134720pt;}
.y209{bottom:461.760000pt;}
.y285{bottom:464.157440pt;}
.y16c{bottom:464.640000pt;}
.yd3{bottom:464.846720pt;}
.y230{bottom:467.200000pt;}
.y1ee{bottom:468.199040pt;}
.y1b{bottom:470.288000pt;}
.y135{bottom:471.384320pt;}
.y1ae{bottom:472.480000pt;}
.y10c{bottom:475.066240pt;}
.y256{bottom:475.200000pt;}
.y45{bottom:476.563840pt;}
.y181{bottom:477.141120pt;}
.y176{bottom:477.600000pt;}
.y1ca{bottom:477.789440pt;}
.yb4{bottom:477.973760pt;}
.y14c{bottom:479.864960pt;}
.y8b{bottom:479.905280pt;}
.y6a{bottom:480.491520pt;}
.y208{bottom:488.963200pt;}
.y16b{bottom:489.451520pt;}
.y1a{bottom:489.644800pt;}
.y134{bottom:490.741120pt;}
.y284{bottom:491.360000pt;}
.yd2{bottom:493.006080pt;}
.y22f{bottom:494.400000pt;}
.y10b{bottom:494.423040pt;}
.y44{bottom:495.920640pt;}
.y1ed{bottom:496.196480pt;}
.y180{bottom:496.497920pt;}
.y19c{bottom:496.800000pt;}
.y1c9{bottom:496.984320pt;}
.y1ad{bottom:498.400000pt;}
.y14b{bottom:499.059840pt;}
.y8a{bottom:499.262080pt;}
.y69{bottom:499.686400pt;}
.y255{bottom:502.403200pt;}
.yb3{bottom:505.338240pt;}
.y207{bottom:508.320000pt;}
.y16a{bottom:508.646400pt;}
.y19{bottom:509.001600pt;}
.y133{bottom:510.097920pt;}
.y175{bottom:510.449280pt;}
.yd1{bottom:512.200960pt;}
.y10a{bottom:513.617920pt;}
.y22e{bottom:513.766400pt;}
.y43{bottom:515.277440pt;}
.y1ec{bottom:515.553280pt;}
.y17f{bottom:515.854720pt;}
.y1c8{bottom:516.341120pt;}
.y14a{bottom:518.416640pt;}
.y27e{bottom:518.720000pt;}
.y68{bottom:519.043200pt;}
.y254{bottom:521.760000pt;}
.y1ac{bottom:524.320000pt;}
.yb2{bottom:524.533120pt;}
.y89{bottom:526.464640pt;}
.y169{bottom:528.003200pt;}
.y18{bottom:528.196480pt;}
.y132{bottom:529.454720pt;}
.y174{bottom:529.806080pt;}
.y15f{bottom:532.160000pt;}
.y109{bottom:532.974720pt;}
.y22d{bottom:533.123200pt;}
.y42{bottom:534.472320pt;}
.y17e{bottom:535.049600pt;}
.y206{bottom:535.680000pt;}
.y1c7{bottom:535.697920pt;}
.y149{bottom:537.773440pt;}
.y283{bottom:538.091520pt;}
.y27d{bottom:538.110720pt;}
.y67{bottom:538.400000pt;}
.yd0{bottom:540.360320pt;}
.y1eb{bottom:543.712640pt;}
.yb1{bottom:543.889920pt;}
.y88{bottom:545.821440pt;}
.y168{bottom:547.360000pt;}
.y17{bottom:547.553280pt;}
.y253{bottom:549.128320pt;}
.y173{bottom:549.162880pt;}
.y1ab{bottom:550.240000pt;}
.y108{bottom:552.331520pt;}
.y22c{bottom:552.480000pt;}
.y41{bottom:553.829120pt;}
.y205{bottom:555.040000pt;}
.y131{bottom:556.657280pt;}
.y282{bottom:557.448320pt;}
.y27c{bottom:557.467520pt;}
.ycf{bottom:559.717120pt;}
.y17d{bottom:562.414080pt;}
.y1c6{bottom:563.062400pt;}
.y1ea{bottom:563.069440pt;}
.yb0{bottom:563.246720pt;}
.y148{bottom:565.137920pt;}
.y87{bottom:565.178240pt;}
.y16{bottom:566.910080pt;}
.y66{bottom:567.040000pt;}
.y252{bottom:568.485120pt;}
.y19b{bottom:568.519680pt;}
.y107{bottom:571.688320pt;}
.y40{bottom:573.185920pt;}
.y204{bottom:574.243200pt;}
.y167{bottom:574.734720pt;}
.y130{bottom:576.014080pt;}
.y1aa{bottom:576.160000pt;}
.y172{bottom:576.527360pt;}
.y281{bottom:576.643200pt;}
.y27b{bottom:576.662400pt;}
.y22b{bottom:579.680000pt;}
.y17c{bottom:581.770880pt;}
.y1c5{bottom:582.257280pt;}
.y1e9{bottom:582.264320pt;}
.yaf{bottom:582.603520pt;}
.y147{bottom:584.494720pt;}
.y86{bottom:584.535040pt;}
.y15{bottom:586.266880pt;}
.y251{bottom:587.680000pt;}
.yce{bottom:587.714560pt;}
.y106{bottom:590.883200pt;}
.y3f{bottom:592.542720pt;}
.y203{bottom:593.600000pt;}
.y166{bottom:593.929600pt;}
.y12f{bottom:595.370880pt;}
.y171{bottom:595.722240pt;}
.y280{bottom:596.000000pt;}
.y27a{bottom:596.019200pt;}
.y22a{bottom:599.046400pt;}
.y17b{bottom:601.127680pt;}
.y1c4{bottom:601.614080pt;}
.y1e8{bottom:601.621120pt;}
.yae{bottom:601.798400pt;}
.y1a9{bottom:602.080000pt;}
.y146{bottom:603.689600pt;}
.y85{bottom:603.729920pt;}
.y14{bottom:605.461760pt;}
.y65{bottom:606.261120pt;}
.y105{bottom:610.240000pt;}
.y3e{bottom:611.737600pt;}
.y165{bottom:613.286400pt;}
.y12e{bottom:614.727680pt;}
.y250{bottom:615.040000pt;}
.ycd{bottom:615.079040pt;}
.y27f{bottom:615.360000pt;}
.y279{bottom:615.376000pt;}
.y229{bottom:618.403200pt;}
.y17a{bottom:620.322560pt;}
.y202{bottom:620.968320pt;}
.y1e7{bottom:620.977920pt;}
.y145{bottom:623.046400pt;}
.y84{bottom:623.086720pt;}
.y13{bottom:624.818560pt;}
.y64{bottom:625.617920pt;}
.y1c3{bottom:628.978560pt;}
.yad{bottom:629.162880pt;}
.y1a8{bottom:629.920000pt;}
.y3d{bottom:631.094400pt;}
.y164{bottom:632.643200pt;}
.y12d{bottom:633.922560pt;}
.y103{bottom:634.240000pt;}
.y24f{bottom:634.408320pt;}
.ycc{bottom:634.435840pt;}
.y278{bottom:634.732800pt;}
.y228{bottom:637.760000pt;}
.y179{bottom:639.679360pt;}
.y201{bottom:640.325120pt;}
.y104{bottom:640.800000pt;}
.y144{bottom:642.403200pt;}
.y83{bottom:642.443520pt;}
.y12{bottom:644.175360pt;}
.y63{bottom:644.974720pt;}
.y1c2{bottom:648.335360pt;}
.y1e6{bottom:648.342400pt;}
.yac{bottom:648.519680pt;}
.y163{bottom:652.000000pt;}
.y12c{bottom:653.279360pt;}
.y24e{bottom:653.765120pt;}
.y19a{bottom:653.792640pt;}
.y277{bottom:653.927680pt;}
.y101{bottom:657.280000pt;}
.y3c{bottom:658.458880pt;}
.y200{bottom:659.520000pt;}
.y82{bottom:661.800320pt;}
.y178{bottom:663.040000pt;}
.y11{bottom:663.532160pt;}
.y102{bottom:663.840000pt;}
.y62{bottom:664.331520pt;}
.y227{bottom:664.960000pt;}
.y143{bottom:665.440000pt;}
.y1c1{bottom:667.530240pt;}
.y1e5{bottom:667.537280pt;}
.yab{bottom:667.876480pt;}
.y1a7{bottom:668.960000pt;}
.y24d{bottom:672.960000pt;}
.y199{bottom:672.987520pt;}
.y276{bottom:673.284480pt;}
.y12b{bottom:676.640000pt;}
.y3b{bottom:677.815680pt;}
.y162{bottom:679.680000pt;}
.yff{bottom:680.320000pt;}
.y81{bottom:680.995200pt;}
.y10{bottom:682.888960pt;}
.y61{bottom:683.526400pt;}
.y226{bottom:684.326400pt;}
.y100{bottom:686.880000pt;}
.y1ff{bottom:686.883200pt;}
.y1c0{bottom:686.887040pt;}
.y1e4{bottom:686.894080pt;}
.yaa{bottom:687.071360pt;}
.y198{bottom:692.344320pt;}
.y275{bottom:692.641280pt;}
.y3a{bottom:697.010560pt;}
.y24c{bottom:700.320000pt;}
.ycb{bottom:700.352000pt;}
.y1a6{bottom:701.923200pt;}
.yf{bottom:702.083840pt;}
.y60{bottom:702.883200pt;}
.yfd{bottom:703.360000pt;}
.y225{bottom:703.683200pt;}
.y1fe{bottom:706.240000pt;}
.ya9{bottom:706.428160pt;}
.y80{bottom:708.359680pt;}
.yfe{bottom:709.920000pt;}
.y1bf{bottom:714.251520pt;}
.y1e3{bottom:714.258560pt;}
.y274{bottom:715.840000pt;}
.y39{bottom:716.367360pt;}
.y24b{bottom:719.691520pt;}
.yca{bottom:719.708800pt;}
.y1a5{bottom:721.280000pt;}
.ye{bottom:721.440640pt;}
.y5f{bottom:722.240000pt;}
.y224{bottom:723.040000pt;}
.ya8{bottom:725.784960pt;}
.yfb{bottom:726.400000pt;}
.y7f{bottom:727.716480pt;}
.yfc{bottom:733.120000pt;}
.y1be{bottom:733.608320pt;}
.y1e2{bottom:733.615360pt;}
.y38{bottom:735.724160pt;}
.y24a{bottom:739.048320pt;}
.yc9{bottom:739.065600pt;}
.yd{bottom:740.797440pt;}
.y7e{bottom:747.073280pt;}
.y1a4{bottom:749.120000pt;}
.yf9{bottom:749.600000pt;}
.y223{bottom:750.408320pt;}
.y5e{bottom:752.000000pt;}
.y1bd{bottom:752.803200pt;}
.y1e1{bottom:752.810240pt;}
.ya7{bottom:753.149440pt;}
.y37{bottom:755.080960pt;}
.yfa{bottom:756.160000pt;}
.y249{bottom:758.405120pt;}
.yc8{bottom:758.422400pt;}
.y7d{bottom:766.430080pt;}
.y222{bottom:769.603200pt;}
.y1bc{bottom:772.160000pt;}
.y1e0{bottom:772.167040pt;}
.ya6{bottom:772.344320pt;}
.yf7{bottom:772.640000pt;}
.y36{bottom:774.437760pt;}
.y248{bottom:777.600000pt;}
.yc7{bottom:777.617280pt;}
.yf8{bottom:779.200000pt;}
.yc{bottom:782.720000pt;}
.y161{bottom:785.624960pt;}
.y221{bottom:788.960000pt;}
.y273{bottom:790.240000pt;}
.y19f{bottom:791.360000pt;}
.y1df{bottom:791.523840pt;}
.ya5{bottom:791.701120pt;}
.y35{bottom:793.632640pt;}
.yf5{bottom:795.680000pt;}
.y197{bottom:796.974080pt;}
.y5d{bottom:801.640320pt;}
.y1bb{bottom:801.920000pt;}
.yf6{bottom:802.240000pt;}
.y247{bottom:804.960000pt;}
.yc6{bottom:804.981760pt;}
.y272{bottom:806.080000pt;}
.y1de{bottom:810.880640pt;}
.ya4{bottom:811.057920pt;}
.y34{bottom:812.989440pt;}
.y26b{bottom:816.320000pt;}
.y220{bottom:816.323200pt;}
.y196{bottom:816.330880pt;}
.yb{bottom:816.645760pt;}
.yf3{bottom:818.720000pt;}
.y5c{bottom:820.997120pt;}
.y271{bottom:821.920000pt;}
.y246{bottom:824.320000pt;}
.y170{bottom:824.338560pt;}
.yf4{bottom:825.280000pt;}
.ya3{bottom:830.414720pt;}
.y33{bottom:832.346240pt;}
.ya{bottom:834.560000pt;}
.y21f{bottom:835.680000pt;}
.y1a3{bottom:835.687680pt;}
.y1dd{bottom:838.083200pt;}
.y12a{bottom:839.840000pt;}
.y5b{bottom:840.353920pt;}
.yf1{bottom:841.760000pt;}
.y245{bottom:843.680000pt;}
.y26a{bottom:843.688320pt;}
.y16f{bottom:843.695360pt;}
.yf2{bottom:848.320000pt;}
.y270{bottom:848.800000pt;}
.ya2{bottom:849.609600pt;}
.y32{bottom:851.703040pt;}
.y9{bottom:852.325760pt;}
.y1dc{bottom:857.440000pt;}
.y5a{bottom:859.710720pt;}
.y21e{bottom:862.880000pt;}
.y269{bottom:862.883200pt;}
.y195{bottom:862.890240pt;}
.yed{bottom:864.800000pt;}
.y129{bottom:868.640000pt;}
.ya1{bottom:868.966400pt;}
.y8{bottom:870.240000pt;}
.y244{bottom:870.889600pt;}
.y31{bottom:870.897920pt;}
.yef{bottom:871.520000pt;}
.y59{bottom:878.905600pt;}
.y268{bottom:882.240000pt;}
.y21d{bottom:882.243200pt;}
.y194{bottom:882.247040pt;}
.y1db{bottom:887.200000pt;}
.ye9{bottom:888.000000pt;}
.y7{bottom:888.165760pt;}
.ya0{bottom:888.323200pt;}
.y243{bottom:890.246400pt;}
.y30{bottom:890.254720pt;}
.yeb{bottom:894.560000pt;}
.y58{bottom:898.262400pt;}
.y21c{bottom:901.600000pt;}
.y19e{bottom:901.603840pt;}
.y6{bottom:906.080000pt;}
.y9f{bottom:907.680000pt;}
.y267{bottom:909.600000pt;}
.y242{bottom:909.603200pt;}
.y2f{bottom:909.611520pt;}
.ye6{bottom:912.960000pt;}
.y57{bottom:917.619200pt;}
.y26f{bottom:924.168320pt;}
.y21b{bottom:928.960000pt;}
.y266{bottom:928.965120pt;}
.y16e{bottom:928.968320pt;}
.y9e{bottom:936.160000pt;}
.y2e{bottom:936.976000pt;}
.y5{bottom:940.960000pt;}
.y26e{bottom:943.525120pt;}
.y265{bottom:948.160000pt;}
.y193{bottom:948.163200pt;}
.y241{bottom:956.160000pt;}
.y2d{bottom:956.170880pt;}
.ye5{bottom:961.920000pt;}
.y26d{bottom:962.881920pt;}
.y4{bottom:965.280000pt;}
.y192{bottom:967.520000pt;}
.y240{bottom:975.520000pt;}
.y2c{bottom:975.527680pt;}
.y2b{bottom:994.884480pt;}
.y26c{bottom:1014.240000pt;}
.y2a{bottom:1014.241280pt;}
.y11b{bottom:1016.640000pt;}
.y2{bottom:1049.284000pt;}
.y1{bottom:1063.840000pt;}
.hb{height:23.040000pt;}
.hc{height:23.200000pt;}
.hd{height:23.201333pt;}
.h12{height:25.758667pt;}
.h13{height:25.760000pt;}
.h11{height:25.920000pt;}
.h9{height:33.187500pt;}
.h2{height:34.242188pt;}
.he{height:35.404688pt;}
.ha{height:35.840000pt;}
.h16{height:39.585938pt;}
.h7{height:42.003750pt;}
.h3{height:42.550000pt;}
.hf{height:45.656250pt;}
.h15{height:48.540830pt;}
.h6{height:48.558750pt;}
.h10{height:52.781250pt;}
.h5{height:53.417812pt;}
.h8{height:60.722813pt;}
.h4{height:68.484375pt;}
.h14{height:70.199062pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:90.560000pt;}
.w6{width:111.200000pt;}
.w7{width:112.000000pt;}
.w8{width:112.320000pt;}
.w2{width:155.040000pt;}
.w5{width:231.360000pt;}
.w3{width:321.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:9.120000pt;}
.x14{left:21.920000pt;}
.x13{left:24.160000pt;}
.x1a{left:26.720000pt;}
.x21{left:30.400000pt;}
.x17{left:45.280000pt;}
.x38{left:48.640000pt;}
.x37{left:52.320000pt;}
.x36{left:53.280000pt;}
.x35{left:55.520000pt;}
.xf{left:66.080000pt;}
.x20{left:88.640000pt;}
.x24{left:97.120000pt;}
.x19{left:111.040000pt;}
.xb{left:113.429120pt;}
.x3d{left:116.636160pt;}
.x3a{left:118.722560pt;}
.x3f{left:120.316160pt;}
.x3e{left:122.229760pt;}
.xc{left:124.765440pt;}
.x40{left:125.909760pt;}
.x41{left:130.237440pt;}
.xd{left:136.129280pt;}
.x11{left:146.400000pt;}
.x5{left:148.000000pt;}
.x1b{left:149.440000pt;}
.x1d{left:151.520000pt;}
.x23{left:156.320000pt;}
.x16{left:160.640000pt;}
.x1{left:164.320000pt;}
.x2b{left:172.320000pt;}
.x8{left:175.360000pt;}
.x2f{left:178.400000pt;}
.x18{left:180.480000pt;}
.xa{left:183.680000pt;}
.x6{left:190.880000pt;}
.xe{left:192.000000pt;}
.x1f{left:194.880000pt;}
.x15{left:197.120000pt;}
.x30{left:201.600000pt;}
.x1e{left:203.520000pt;}
.x9{left:212.645760pt;}
.x1c{left:214.720000pt;}
.x22{left:216.480000pt;}
.x2a{left:218.080000pt;}
.x3b{left:219.996160pt;}
.x2c{left:222.400000pt;}
.x7{left:224.161920pt;}
.x2e{left:225.600000pt;}
.x4{left:230.880000pt;}
.x3c{left:258.400000pt;}
.x28{left:260.160000pt;}
.x25{left:265.280000pt;}
.x10{left:268.480000pt;}
.x2{left:282.568000pt;}
.x27{left:298.080000pt;}
.x39{left:330.720000pt;}
.x31{left:344.800000pt;}
.x3{left:377.920000pt;}
.x43{left:420.472960pt;}
.x44{left:422.548480pt;}
.x48{left:424.484480pt;}
.x45{left:433.750400pt;}
.x47{left:441.280000pt;}
.x46{left:448.800000pt;}
.x33{left:456.000000pt;}
.x49{left:495.040000pt;}
.x29{left:562.880000pt;}
.x34{left:568.000000pt;}
.x12{left:589.920000pt;}
.x42{left:603.840000pt;}
.x2d{left:608.800000pt;}
.x26{left:623.840000pt;}
}




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