
    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_39d939a1a80f4dafcf430e1f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.984000;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_cce9876788cc1898e4488c56.woff')format("woff");}.ff2{font-family:ff2;line-height:1.132000;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_9b8acddac4546df1f5ee15a7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.130000;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_fefbbcc92b9fbd8848742f1b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.984000;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_a1f0ec61d6d63de89ed0ce7e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.900000;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_cef18fcecc49156bb832fc16.woff')format("woff");}.ff6{font-family:ff6;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.054994px;}
.ls10{letter-spacing:2.991660px;}
.ls1{letter-spacing:3.006438px;}
.lse{letter-spacing:3.006509px;}
.ls2{letter-spacing:3.010332px;}
.lsf{letter-spacing:3.012509px;}
.ls12{letter-spacing:7.424136px;}
.lsa{letter-spacing:12.373560px;}
.ls6{letter-spacing:12.428554px;}
.ls11{letter-spacing:13.363445px;}
.lsb{letter-spacing:15.377496px;}
.ls9{letter-spacing:15.398088px;}
.lsc{letter-spacing:16.718054px;}
.ls3{letter-spacing:26.286941px;}
.lsd{letter-spacing:29.861525px;}
.ls5{letter-spacing:29.875618px;}
.ls8{letter-spacing:29.887200px;}
.ls4{letter-spacing:91.839312px;}
.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;}
}
.ws14{word-spacing:-16.630110px;}
.wsba{word-spacing:-13.858362px;}
.ws96{word-spacing:-12.890535px;}
.ws45{word-spacing:-12.428554px;}
.ws6{word-spacing:-12.373560px;}
.ws1{word-spacing:-11.548656px;}
.wse9{word-spacing:-10.437485px;}
.ws3{word-spacing:-10.393866px;}
.ws13{word-spacing:-9.898875px;}
.wsc2{word-spacing:-3.024648px;}
.ws9{word-spacing:-2.969654px;}
.ws8d{word-spacing:-2.914661px;}
.ws93{word-spacing:-2.859667px;}
.ws54{word-spacing:-2.694686px;}
.ws48{word-spacing:-2.639693px;}
.ws6b{word-spacing:-2.584699px;}
.wsd1{word-spacing:-2.529706px;}
.wsc0{word-spacing:-2.474712px;}
.ws80{word-spacing:-2.419718px;}
.ws87{word-spacing:-2.309731px;}
.ws52{word-spacing:-2.254738px;}
.ws8b{word-spacing:-2.199744px;}
.wsd8{word-spacing:-2.089757px;}
.ws36{word-spacing:-2.034763px;}
.wsc4{word-spacing:-2.029605px;}
.ws44{word-spacing:-1.979770px;}
.wsa1{word-spacing:-1.924776px;}
.ws6e{word-spacing:-1.869782px;}
.ws29{word-spacing:-1.814789px;}
.ws28{word-spacing:-1.759795px;}
.ws40{word-spacing:-1.704802px;}
.ws99{word-spacing:-1.649808px;}
.ws53{word-spacing:-1.594814px;}
.ws75{word-spacing:-1.539821px;}
.ws9c{word-spacing:-1.484827px;}
.ws42{word-spacing:-1.374840px;}
.ws6a{word-spacing:-1.319846px;}
.ws9e{word-spacing:-1.264853px;}
.wsbd{word-spacing:-1.209859px;}
.ws37{word-spacing:-1.154866px;}
.ws5f{word-spacing:-1.099872px;}
.wsd5{word-spacing:-0.989885px;}
.wsd6{word-spacing:-0.934891px;}
.ws43{word-spacing:-0.879898px;}
.ws46{word-spacing:-0.824904px;}
.ws78{word-spacing:-0.769910px;}
.ws89{word-spacing:-0.714917px;}
.ws57{word-spacing:-0.659923px;}
.ws49{word-spacing:-0.604930px;}
.ws6f{word-spacing:-0.549936px;}
.ws11{word-spacing:-0.494942px;}
.ws67{word-spacing:-0.439949px;}
.ws77{word-spacing:-0.384955px;}
.wsd0{word-spacing:-0.329962px;}
.ws56{word-spacing:-0.274968px;}
.ws70{word-spacing:-0.219974px;}
.ws12{word-spacing:-0.179327px;}
.ws1c{word-spacing:-0.164981px;}
.wsd2{word-spacing:-0.109987px;}
.ws1a{word-spacing:-0.079191px;}
.ws5{word-spacing:-0.065992px;}
.wse8{word-spacing:-0.059776px;}
.ws2{word-spacing:-0.054994px;}
.ws4{word-spacing:-0.049495px;}
.ws0{word-spacing:0.000000px;}
.wsb{word-spacing:0.054994px;}
.ws5b{word-spacing:0.109987px;}
.ws20{word-spacing:0.164981px;}
.ws21{word-spacing:0.219974px;}
.wsc9{word-spacing:0.274968px;}
.ws41{word-spacing:0.329962px;}
.ws26{word-spacing:0.384955px;}
.ws25{word-spacing:0.439949px;}
.ws5d{word-spacing:0.494942px;}
.ws65{word-spacing:0.549936px;}
.ws62{word-spacing:0.604930px;}
.wsb7{word-spacing:0.714917px;}
.ws24{word-spacing:0.769910px;}
.ws5a{word-spacing:0.778483px;}
.ws27{word-spacing:0.824904px;}
.ws58{word-spacing:0.850622px;}
.ws73{word-spacing:0.879898px;}
.ws2a{word-spacing:0.934891px;}
.ws3c{word-spacing:0.989885px;}
.ws39{word-spacing:1.044878px;}
.ws50{word-spacing:1.099872px;}
.ws3e{word-spacing:1.154866px;}
.ws64{word-spacing:1.264853px;}
.ws38{word-spacing:1.319846px;}
.wsbb{word-spacing:1.374840px;}
.wsa4{word-spacing:1.429834px;}
.ws5c{word-spacing:1.484827px;}
.ws84{word-spacing:1.539821px;}
.ws30{word-spacing:1.594814px;}
.ws7d{word-spacing:1.649808px;}
.wsb6{word-spacing:1.704802px;}
.wsb2{word-spacing:1.759795px;}
.ws60{word-spacing:1.814789px;}
.wsa0{word-spacing:1.869782px;}
.wsb8{word-spacing:1.924776px;}
.ws35{word-spacing:1.979770px;}
.wsb4{word-spacing:2.034763px;}
.ws69{word-spacing:2.089757px;}
.wsc8{word-spacing:2.144750px;}
.ws1b{word-spacing:2.199744px;}
.ws2b{word-spacing:2.254738px;}
.ws1e{word-spacing:2.309731px;}
.wsd{word-spacing:2.364725px;}
.ws3f{word-spacing:2.419718px;}
.ws6c{word-spacing:2.474712px;}
.ws4b{word-spacing:2.584699px;}
.ws33{word-spacing:2.694686px;}
.ws23{word-spacing:2.749680px;}
.wsc5{word-spacing:2.804674px;}
.ws7f{word-spacing:2.859667px;}
.wsb5{word-spacing:2.914661px;}
.ws7e{word-spacing:2.969654px;}
.wsca{word-spacing:2.974147px;}
.wscb{word-spacing:2.986680px;}
.wsa7{word-spacing:3.024648px;}
.wsce{word-spacing:3.025651px;}
.ws1d{word-spacing:3.079642px;}
.ws4d{word-spacing:3.134635px;}
.ws7a{word-spacing:3.189629px;}
.ws79{word-spacing:3.244622px;}
.ws4a{word-spacing:3.299616px;}
.ws82{word-spacing:3.354610px;}
.ws61{word-spacing:3.409603px;}
.ws94{word-spacing:3.442190px;}
.ws8f{word-spacing:3.464597px;}
.wsad{word-spacing:3.574584px;}
.ws31{word-spacing:3.629578px;}
.ws2c{word-spacing:3.684571px;}
.ws63{word-spacing:3.739565px;}
.ws4c{word-spacing:3.794558px;}
.ws74{word-spacing:3.904546px;}
.ws90{word-spacing:3.959539px;}
.ws8c{word-spacing:4.014533px;}
.wse{word-spacing:4.124520px;}
.ws47{word-spacing:4.179514px;}
.ws3a{word-spacing:4.234507px;}
.ws4f{word-spacing:4.289501px;}
.ws51{word-spacing:4.344494px;}
.ws98{word-spacing:4.399488px;}
.ws88{word-spacing:4.454482px;}
.ws9f{word-spacing:4.509475px;}
.wsb0{word-spacing:4.564469px;}
.ws8a{word-spacing:4.619462px;}
.wsa9{word-spacing:4.674456px;}
.ws66{word-spacing:4.729450px;}
.ws7b{word-spacing:4.784443px;}
.ws3d{word-spacing:4.839437px;}
.wsac{word-spacing:4.894430px;}
.ws6d{word-spacing:4.949424px;}
.ws71{word-spacing:5.004418px;}
.wsa6{word-spacing:5.114405px;}
.ws83{word-spacing:5.169398px;}
.ws91{word-spacing:5.224392px;}
.ws68{word-spacing:5.279386px;}
.ws97{word-spacing:5.334379px;}
.ws10{word-spacing:5.389373px;}
.ws95{word-spacing:5.432616px;}
.wsaa{word-spacing:5.444366px;}
.ws1f{word-spacing:5.499360px;}
.wsa8{word-spacing:5.554354px;}
.ws81{word-spacing:5.609347px;}
.ws72{word-spacing:5.664341px;}
.wsb1{word-spacing:5.719334px;}
.wsa3{word-spacing:5.774328px;}
.ws5e{word-spacing:5.829322px;}
.wsa5{word-spacing:5.840400px;}
.ws59{word-spacing:5.884315px;}
.ws7{word-spacing:5.916610px;}
.wsd7{word-spacing:5.939309px;}
.wsc{word-spacing:5.951996px;}
.ws8{word-spacing:5.958405px;}
.ws76{word-spacing:5.994302px;}
.wscc{word-spacing:6.049296px;}
.ws2e{word-spacing:6.104290px;}
.ws2f{word-spacing:6.159283px;}
.ws92{word-spacing:6.214277px;}
.wsbf{word-spacing:6.269270px;}
.ws32{word-spacing:6.324264px;}
.wscf{word-spacing:6.489245px;}
.wsc1{word-spacing:6.599232px;}
.wsb3{word-spacing:6.709219px;}
.ws8e{word-spacing:6.764213px;}
.ws22{word-spacing:6.874200px;}
.wsab{word-spacing:6.929194px;}
.ws7c{word-spacing:6.984187px;}
.wsbc{word-spacing:7.039181px;}
.ws34{word-spacing:7.094174px;}
.ws4e{word-spacing:7.149168px;}
.wscd{word-spacing:7.204162px;}
.wsd3{word-spacing:7.314149px;}
.ws86{word-spacing:7.369142px;}
.wsb9{word-spacing:7.457119px;}
.ws85{word-spacing:7.479130px;}
.ws2d{word-spacing:7.644110px;}
.ws3b{word-spacing:7.864085px;}
.wsbe{word-spacing:8.304034px;}
.wsa2{word-spacing:8.633995px;}
.wsec{word-spacing:8.853970px;}
.wsc3{word-spacing:9.073944px;}
.wseb{word-spacing:9.953842px;}
.ws9a{word-spacing:10.943726px;}
.ws9b{word-spacing:12.813509px;}
.wsae{word-spacing:12.868502px;}
.wsaf{word-spacing:12.923496px;}
.ws9d{word-spacing:13.253458px;}
.ws16{word-spacing:13.913381px;}
.ws18{word-spacing:13.968374px;}
.wsea{word-spacing:15.508195px;}
.wsf{word-spacing:16.498080px;}
.wsc6{word-spacing:17.487965px;}
.wse7{word-spacing:18.305376px;}
.wse6{word-spacing:18.353880px;}
.wsdc{word-spacing:18.373186px;}
.wsed{word-spacing:19.577722px;}
.wse5{word-spacing:29.283034px;}
.ws17{word-spacing:30.136493px;}
.ws15{word-spacing:36.570744px;}
.wsd4{word-spacing:41.080219px;}
.wsc7{word-spacing:49.296173px;}
.ws55{word-spacing:59.076486px;}
.wsdb{word-spacing:63.269078px;}
.wse0{word-spacing:65.193854px;}
.wse3{word-spacing:65.358835px;}
.wsde{word-spacing:77.292446px;}
.wse1{word-spacing:78.172344px;}
.wse4{word-spacing:78.282331px;}
.wsdf{word-spacing:91.315814px;}
.wsdd{word-spacing:94.230475px;}
.wsd9{word-spacing:100.664726px;}
.wse2{word-spacing:107.923882px;}
.wsda{word-spacing:122.277211px;}
.wsa{word-spacing:1329.195312px;}
.ws19{word-spacing:2538.851856px;}
._32{margin-left:-26.462484px;}
._2f{margin-left:-25.323259px;}
._4e{margin-left:-10.202846px;}
._50{margin-left:-9.142152px;}
._2{margin-left:-7.317248px;}
._14{margin-left:-5.411997px;}
._3{margin-left:-3.913780px;}
._5{margin-left:-2.896432px;}
._0{margin-left:-1.805555px;}
._1{width:1.330409px;}
._4b{width:2.699570px;}
._7{width:3.892270px;}
._4a{width:6.599164px;}
._49{width:8.249108px;}
._46{width:9.957998px;}
._48{width:11.363879px;}
._12{width:12.428554px;}
._6{width:13.808993px;}
._4{width:15.398208px;}
._3e{width:16.800579px;}
._25{width:17.932740px;}
._47{width:19.009318px;}
._21{width:20.145163px;}
._41{width:21.227530px;}
._3d{width:22.364167px;}
._24{width:23.592254px;}
._40{width:24.728891px;}
._23{width:26.268197px;}
._22{width:28.074267px;}
._31{width:29.100848px;}
._2a{width:30.709053px;}
._3b{width:32.436990px;}
._39{width:33.656083px;}
._2c{width:35.021689px;}
._42{width:36.130624px;}
._43{width:37.340654px;}
._36{width:40.081100px;}
._4f{width:41.909209px;}
._51{width:43.059989px;}
._3a{width:44.709797px;}
._34{width:46.240384px;}
._29{width:48.119400px;}
._33{width:51.748978px;}
._2d{width:53.260007px;}
._44{width:63.154535px;}
._37{width:65.194879px;}
._35{width:66.570510px;}
._20{width:73.588705px;}
._45{width:75.706596px;}
._3c{width:91.839312px;}
._2b{width:94.671448px;}
._13{width:119.389561px;}
._1a{width:125.977259px;}
._4c{width:269.794608px;}
._15{width:415.137452px;}
._9{width:428.281466px;}
._19{width:580.886834px;}
._10{width:645.235057px;}
._18{width:670.271231px;}
._1d{width:697.483829px;}
._1e{width:858.660836px;}
._c{width:860.323955px;}
._b{width:883.684976px;}
._17{width:903.700595px;}
._a{width:930.180501px;}
._1f{width:939.582385px;}
._11{width:951.531642px;}
._1c{width:981.837506px;}
._1b{width:1000.489331px;}
._16{width:1080.908442px;}
._f{width:1088.314181px;}
._e{width:1104.553803px;}
._d{width:1185.116392px;}
._30{width:1834.474177px;}
._2e{width:1851.568192px;}
._4d{width:2030.752120px;}
._26{width:2041.030120px;}
._8{width:2057.050120px;}
._3f{width:2059.924120px;}
._38{width:2107.559675px;}
._27{width:2350.239355px;}
._28{width:2450.512484px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:37.395600px;}
.fs4{font-size:41.795400px;}
.fs7{font-size:43.995000px;}
.fs2{font-size:49.494600px;}
.fs1{font-size:54.993600px;}
.fs9{font-size:59.775600px;}
.fs3{font-size:65.992200px;}
.fs8{font-size:79.191000px;}
.fs0{font-size:95.029200px;}
.fs5{font-size:179.327400px;}
.y0{bottom:0.000000px;}
.y291{bottom:85.039500px;}
.y18f{bottom:85.339500px;}
.y11a{bottom:88.530000px;}
.y35{bottom:89.379000px;}
.yef{bottom:91.339500px;}
.y97{bottom:98.662500px;}
.y1db{bottom:98.797500px;}
.y290{bottom:102.972000px;}
.y18e{bottom:103.272000px;}
.y25a{bottom:104.938500px;}
.y119{bottom:106.462500px;}
.yee{bottom:109.272000px;}
.y34{bottom:110.583000px;}
.y96{bottom:116.595000px;}
.y1da{bottom:117.327000px;}
.y27b{bottom:117.522000px;}
.y15a{bottom:118.492500px;}
.y28f{bottom:120.904500px;}
.y259{bottom:122.871000px;}
.y27e{bottom:122.929500px;}
.y118{bottom:124.395000px;}
.y2c9{bottom:124.963500px;}
.y18d{bottom:130.171500px;}
.y95{bottom:134.527500px;}
.y1d9{bottom:135.858000px;}
.yed{bottom:136.171500px;}
.y159{bottom:137.023500px;}
.y117{bottom:142.327500px;}
.y2c8{bottom:142.896000px;}
.y1a5{bottom:143.181000px;}
.y27a{bottom:144.420000px;}
.y18c{bottom:148.104000px;}
.y28e{bottom:148.701000px;}
.y1ee{bottom:149.352000px;}
.y258{bottom:149.770500px;}
.y94{bottom:152.460000px;}
.y1d8{bottom:154.389000px;}
.y158{bottom:155.554500px;}
.y33{bottom:155.676000px;}
.ye{bottom:158.563500px;}
.y116{bottom:160.261500px;}
.y2c7{bottom:160.828500px;}
.yec{bottom:163.071000px;}
.y1ed{bottom:167.284500px;}
.y12f{bottom:169.227000px;}
.y1a4{bottom:170.080500px;}
.y279{bottom:171.319500px;}
.y1d7{bottom:172.918500px;}
.y32{bottom:173.608500px;}
.y157{bottom:174.084000px;}
.y18b{bottom:175.900500px;}
.yd{bottom:176.496000px;}
.y257{bottom:176.670000px;}
.y115{bottom:178.194000px;}
.y2c6{bottom:178.761000px;}
.y93{bottom:179.359500px;}
.y63{bottom:180.793500px;}
.yeb{bottom:181.003500px;}
.y28d{bottom:187.696500px;}
.y1a3{bottom:188.013000px;}
.y278{bottom:189.252000px;}
.y1d6{bottom:191.449500px;}
.y31{bottom:191.541000px;}
.y156{bottom:192.615000px;}
.yc{bottom:194.428500px;}
.y114{bottom:196.126500px;}
.y2c5{bottom:196.695000px;}
.y92{bottom:197.292000px;}
.y62{bottom:198.726000px;}
.y256{bottom:203.568000px;}
.y28c{bottom:205.629000px;}
.y1a2{bottom:205.947000px;}
.y277{bottom:207.184500px;}
.yea{bottom:207.903000px;}
.y1d5{bottom:209.382000px;}
.y30{bottom:209.475000px;}
.y155{bottom:211.146000px;}
.yb{bottom:212.362500px;}
.y12e{bottom:214.059000px;}
.y2c4{bottom:214.627500px;}
.y18a{bottom:215.203500px;}
.y91{bottom:215.224500px;}
.y255{bottom:221.502000px;}
.y113{bottom:223.026000px;}
.y28b{bottom:223.563000px;}
.y1a1{bottom:223.879500px;}
.y1d4{bottom:227.913000px;}
.ya{bottom:228.799500px;}
.y154{bottom:229.078500px;}
.y61{bottom:231.783000px;}
.y12d{bottom:231.991500px;}
.y189{bottom:233.136000px;}
.y90{bottom:233.157000px;}
.y276{bottom:234.084000px;}
.ye9{bottom:234.801000px;}
.y2f{bottom:236.373000px;}
.y2c3{bottom:241.525500px;}
.y1a0{bottom:241.812000px;}
.y9{bottom:245.238000px;}
.y1d3{bottom:246.444000px;}
.y153{bottom:247.609500px;}
.y254{bottom:248.400000px;}
.y112{bottom:249.924000px;}
.y28a{bottom:250.461000px;}
.y188{bottom:251.068500px;}
.y8f{bottom:251.089500px;}
.y275{bottom:252.016500px;}
.y2e{bottom:254.305500px;}
.y2c2{bottom:259.459500px;}
.y19f{bottom:259.744500px;}
.y8{bottom:261.676500px;}
.ye8{bottom:261.700500px;}
.y1d2{bottom:264.973500px;}
.y152{bottom:265.542000px;}
.y111{bottom:267.858000px;}
.y289{bottom:268.395000px;}
.y8e{bottom:269.023500px;}
.y274{bottom:269.950500px;}
.y2d{bottom:272.239500px;}
.y253{bottom:275.299500px;}
.y2c1{bottom:277.392000px;}
.y187{bottom:277.968000px;}
.y60{bottom:281.695500px;}
.y1d1{bottom:283.504500px;}
.y151{bottom:284.071500px;}
.y110{bottom:285.790500px;}
.y288{bottom:286.327500px;}
.y19e{bottom:286.644000px;}
.y8d{bottom:286.956000px;}
.ye7{bottom:288.600000px;}
.y2c{bottom:290.172000px;}
.y252{bottom:293.232000px;}
.y186{bottom:295.900500px;}
.y273{bottom:296.848500px;}
.y5f{bottom:299.628000px;}
.y1d0{bottom:302.035500px;}
.y150{bottom:302.602500px;}
.y10f{bottom:303.723000px;}
.y287{bottom:304.260000px;}
.y2c0{bottom:304.291500px;}
.y19d{bottom:304.576500px;}
.y12c{bottom:312.688500px;}
.y185{bottom:313.833000px;}
.y8c{bottom:313.855500px;}
.ye6{bottom:315.499500px;}
.y5e{bottom:317.560500px;}
.y2d5{bottom:317.740500px;}
.y251{bottom:320.131500px;}
.y1cf{bottom:320.565000px;}
.y14f{bottom:321.133500px;}
.y2bf{bottom:322.224000px;}
.y272{bottom:323.748000px;}
.y10e{bottom:330.622500px;}
.y19c{bottom:331.476000px;}
.y8b{bottom:331.788000px;}
.y286{bottom:332.055000px;}
.ye5{bottom:333.432000px;}
.y5d{bottom:335.494500px;}
.y2d4{bottom:335.673000px;}
.y1ce{bottom:339.096000px;}
.y12b{bottom:339.588000px;}
.y14e{bottom:339.663000px;}
.y2be{bottom:340.156500px;}
.y250{bottom:347.031000px;}
.y19b{bottom:349.408500px;}
.y8a{bottom:349.720500px;}
.y271{bottom:350.647500px;}
.ye4{bottom:351.364500px;}
.y5c{bottom:353.427000px;}
.y1cd{bottom:357.028500px;}
.y10d{bottom:357.520500px;}
.y14d{bottom:358.194000px;}
.y184{bottom:361.257000px;}
.y2d3{bottom:362.572500px;}
.y2bd{bottom:367.056000px;}
.y89{bottom:367.653000px;}
.y23d{bottom:367.879500px;}
.y270{bottom:368.580000px;}
.y285{bottom:371.052000px;}
.y5b{bottom:371.359500px;}
.y24f{bottom:373.930500px;}
.y10c{bottom:375.454500px;}
.y1cc{bottom:375.559500px;}
.y19a{bottom:376.308000px;}
.y14c{bottom:376.725000px;}
.ye3{bottom:378.264000px;}
.y183{bottom:379.788000px;}
.y2d2{bottom:380.505000px;}
.y2bc{bottom:384.988500px;}
.y88{bottom:385.585500px;}
.y23c{bottom:385.812000px;}
.y284{bottom:388.984500px;}
.y5a{bottom:389.292000px;}
.y10b{bottom:393.387000px;}
.y1cb{bottom:394.089000px;}
.y199{bottom:394.240500px;}
.y14b{bottom:395.254500px;}
.y26f{bottom:395.479500px;}
.ye2{bottom:396.196500px;}
.y182{bottom:398.319000px;}
.y2d1{bottom:398.437500px;}
.y24e{bottom:400.828500px;}
.y2bb{bottom:402.921000px;}
.y87{bottom:403.518000px;}
.y23b{bottom:403.744500px;}
.y59{bottom:407.224500px;}
.y1ca{bottom:412.023000px;}
.y26e{bottom:413.412000px;}
.ye1{bottom:414.129000px;}
.y2d0{bottom:416.370000px;}
.y283{bottom:416.781000px;}
.y181{bottom:416.848500px;}
.y24d{bottom:418.761000px;}
.y12a{bottom:420.285000px;}
.y10a{bottom:420.286500px;}
.y2ba{bottom:420.853500px;}
.y198{bottom:421.140000px;}
.y86{bottom:421.452000px;}
.y23a{bottom:421.677000px;}
.y58{bottom:425.157000px;}
.y14a{bottom:429.723000px;}
.y1c9{bottom:430.552500px;}
.y20d{bottom:431.344500px;}
.y180{bottom:434.782500px;}
.y2b9{bottom:438.786000px;}
.y197{bottom:439.072500px;}
.y26d{bottom:440.311500px;}
.ye0{bottom:441.028500px;}
.y57{bottom:443.091000px;}
.y2cf{bottom:443.269500px;}
.y24c{bottom:445.660500px;}
.y109{bottom:447.184500px;}
.y149{bottom:447.655500px;}
.y85{bottom:448.350000px;}
.y1c8{bottom:449.083500px;}
.y20c{bottom:449.277000px;}
.y17f{bottom:453.312000px;}
.y196{bottom:457.005000px;}
.y26c{bottom:458.244000px;}
.y282{bottom:458.766000px;}
.y2ce{bottom:461.202000px;}
.y108{bottom:465.117000px;}
.y2b8{bottom:465.685500px;}
.y84{bottom:466.284000px;}
.y239{bottom:466.509000px;}
.y20b{bottom:467.209500px;}
.y1c7{bottom:467.614500px;}
.ydf{bottom:467.926500px;}
.y22e{bottom:468.555000px;}
.y27d{bottom:469.003500px;}
.y17e{bottom:471.244500px;}
.y24b{bottom:472.560000px;}
.y56{bottom:476.146500px;}
.y26b{bottom:476.176500px;}
.y281{bottom:476.698500px;}
.y148{bottom:481.525500px;}
.y2b7{bottom:483.618000px;}
.y195{bottom:483.904500px;}
.y83{bottom:484.216500px;}
.y20a{bottom:485.142000px;}
.yde{bottom:485.860500px;}
.y1c6{bottom:486.144000px;}
.y17d{bottom:489.775500px;}
.y136{bottom:490.372500px;}
.y24a{bottom:490.492500px;}
.y107{bottom:492.913500px;}
.y2cd{bottom:494.259000px;}
.y280{bottom:494.631000px;}
.y22d{bottom:495.454500px;}
.y147{bottom:499.459500px;}
.y2b6{bottom:501.550500px;}
.y194{bottom:501.837000px;}
.y82{bottom:502.149000px;}
.y26a{bottom:503.076000px;}
.ydd{bottom:503.793000px;}
.y1c5{bottom:504.675000px;}
.yc4{bottom:507.081000px;}
.y27c{bottom:508.305000px;}
.y135{bottom:508.306500px;}
.y7{bottom:511.408500px;}
.y209{bottom:512.041500px;}
.y22c{bottom:513.387000px;}
.y146{bottom:517.392000px;}
.y2b{bottom:519.217500px;}
.y81{bottom:520.081500px;}
.ydc{bottom:521.725500px;}
.y1c4{bottom:523.206000px;}
.yc3{bottom:525.013500px;}
.y55{bottom:526.059000px;}
.y134{bottom:526.239000px;}
.y17c{bottom:526.836000px;}
.y2b5{bottom:528.450000px;}
.y6{bottom:529.341000px;}
.y208{bottom:529.974000px;}
.y22b{bottom:531.319500px;}
.y106{bottom:535.204500px;}
.y145{bottom:535.324500px;}
.y2a{bottom:537.748500px;}
.y80{bottom:538.014000px;}
.ydb{bottom:539.658000px;}
.y27f{bottom:541.455000px;}
.y1c3{bottom:541.735500px;}
.y133{bottom:544.171500px;}
.y17b{bottom:545.367000px;}
.y2b4{bottom:546.382500px;}
.y5{bottom:547.273500px;}
.y207{bottom:547.906500px;}
.y22a{bottom:549.252000px;}
.y193{bottom:550.053000px;}
.yc2{bottom:552.808500px;}
.y105{bottom:553.137000px;}
.y144{bottom:553.257000px;}
.y269{bottom:556.873500px;}
.y54{bottom:557.142000px;}
.yda{bottom:557.590500px;}
.y1c2{bottom:560.266500px;}
.y129{bottom:562.104000px;}
.y249{bottom:562.224000px;}
.y17a{bottom:563.898000px;}
.y7f{bottom:564.913500px;}
.y206{bottom:565.840500px;}
.y229{bottom:567.184500px;}
.y192{bottom:567.985500px;}
.y104{bottom:571.071000px;}
.y2b3{bottom:573.282000px;}
.y268{bottom:574.806000px;}
.y53{bottom:575.076000px;}
.yd9{bottom:575.523000px;}
.y1c1{bottom:578.797500px;}
.y128{bottom:580.036500px;}
.y143{bottom:581.053500px;}
.y179{bottom:581.830500px;}
.y7e{bottom:582.846000px;}
.y205{bottom:583.773000px;}
.y191{bottom:585.919500px;}
.y248{bottom:589.123500px;}
.y2b2{bottom:591.214500px;}
.y267{bottom:592.740000px;}
.y52{bottom:593.008500px;}
.yd8{bottom:593.457000px;}
.y228{bottom:594.084000px;}
.yc1{bottom:595.101000px;}
.y1c0{bottom:597.327000px;}
.y103{bottom:597.969000px;}
.y178{bottom:600.361500px;}
.y7d{bottom:600.778500px;}
.y204{bottom:601.705500px;}
.y190{bottom:603.852000px;}
.y2b1{bottom:609.147000px;}
.y266{bottom:610.672500px;}
.y51{bottom:610.941000px;}
.yd7{bottom:611.389500px;}
.y227{bottom:612.016500px;}
.y1bf{bottom:615.858000px;}
.y2cc{bottom:615.901500px;}
.y102{bottom:615.903000px;}
.y247{bottom:616.021500px;}
.y177{bottom:618.891000px;}
.y203{bottom:619.638000px;}
.y142{bottom:620.355000px;}
.yc0{bottom:621.999000px;}
.y127{bottom:624.868500px;}
.y2b0{bottom:627.081000px;}
.y7c{bottom:627.678000px;}
.y50{bottom:628.873500px;}
.y226{bottom:629.949000px;}
.y132{bottom:633.835500px;}
.y1be{bottom:634.389000px;}
.y176{bottom:637.422000px;}
.y265{bottom:637.570500px;}
.yd6{bottom:638.289000px;}
.y101{bottom:642.801000px;}
.y246{bottom:642.921000px;}
.y202{bottom:646.537500px;}
.y4f{bottom:646.806000px;}
.ybf{bottom:648.898500px;}
.y126{bottom:651.768000px;}
.y29{bottom:651.778500px;}
.y1bd{bottom:652.321500px;}
.y2af{bottom:653.979000px;}
.y7b{bottom:654.577500px;}
.y175{bottom:655.354500px;}
.y264{bottom:655.504500px;}
.y225{bottom:656.848500px;}
.y100{bottom:660.733500px;}
.y201{bottom:664.470000px;}
.y4e{bottom:664.738500px;}
.yd5{bottom:665.187000px;}
.y125{bottom:669.700500px;}
.y28{bottom:669.711000px;}
.y245{bottom:669.820500px;}
.y1bc{bottom:670.851000px;}
.y2ae{bottom:671.913000px;}
.y7a{bottom:672.510000px;}
.y174{bottom:673.885500px;}
.y224{bottom:674.781000px;}
.ybe{bottom:675.798000px;}
.yae{bottom:678.667500px;}
.y25{bottom:678.678000px;}
.y200{bottom:682.402500px;}
.y4d{bottom:682.672500px;}
.yd4{bottom:683.119500px;}
.y4{bottom:686.826000px;}
.y124{bottom:687.633000px;}
.y27{bottom:687.645000px;}
.y1bb{bottom:689.382000px;}
.y2ad{bottom:689.845500px;}
.y79{bottom:690.442500px;}
.y173{bottom:692.415000px;}
.y223{bottom:692.715000px;}
.yff{bottom:696.600000px;}
.y244{bottom:697.615500px;}
.y1ff{bottom:700.335000px;}
.y4c{bottom:700.605000px;}
.yd3{bottom:701.053500px;}
.ybd{bottom:702.697500px;}
.y3{bottom:704.758500px;}
.yad{bottom:705.565500px;}
.y26{bottom:705.577500px;}
.y2ac{bottom:707.778000px;}
.y1ba{bottom:707.913000px;}
.y78{bottom:708.375000px;}
.y263{bottom:709.302000px;}
.y172{bottom:710.946000px;}
.yfe{bottom:714.532500px;}
.y1fe{bottom:718.269000px;}
.y4b{bottom:718.537500px;}
.yd2{bottom:718.986000px;}
.y222{bottom:719.613000px;}
.y2{bottom:722.691000px;}
.y2cb{bottom:723.498000px;}
.y131{bottom:723.499500px;}
.y24{bottom:724.107000px;}
.y2ab{bottom:725.710500px;}
.y1b9{bottom:726.442500px;}
.y171{bottom:728.878500px;}
.ybc{bottom:729.595500px;}
.yac{bottom:732.465000px;}
.y77{bottom:735.274500px;}
.y1fd{bottom:736.201500px;}
.yd1{bottom:736.918500px;}
.y221{bottom:737.547000px;}
.y130{bottom:741.432000px;}
.y1ec{bottom:742.276500px;}
.y23{bottom:742.638000px;}
.y2aa{bottom:743.643000px;}
.y1b8{bottom:744.973500px;}
.y170{bottom:747.409500px;}
.y4a{bottom:749.620500px;}
.y76{bottom:753.207000px;}
.yd0{bottom:754.851000px;}
.y220{bottom:755.479500px;}
.ybb{bottom:756.495000px;}
.yab{bottom:759.364500px;}
.y1eb{bottom:760.209000px;}
.y22{bottom:760.570500px;}
.y262{bottom:763.101000px;}
.y1b7{bottom:763.504500px;}
.y1fc{bottom:763.996500px;}
.y16f{bottom:765.342000px;}
.y238{bottom:767.434500px;}
.y49{bottom:767.553000px;}
.y75{bottom:771.139500px;}
.y2a9{bottom:771.439500px;}
.ycf{bottom:772.783500px;}
.y123{bottom:777.297000px;}
.y21{bottom:778.503000px;}
.y261{bottom:781.033500px;}
.y141{bottom:781.750500px;}
.y1b6{bottom:782.034000px;}
.y21f{bottom:782.377500px;}
.yba{bottom:783.394500px;}
.y16e{bottom:783.873000px;}
.y237{bottom:785.367000px;}
.y48{bottom:785.487000px;}
.yaa{bottom:786.264000px;}
.y1d{bottom:787.470000px;}
.y1ea{bottom:788.004000px;}
.y74{bottom:789.073500px;}
.yce{bottom:790.717500px;}
.y122{bottom:795.229500px;}
.y20{bottom:796.437000px;}
.y140{bottom:799.683000px;}
.y21e{bottom:800.311500px;}
.y1b5{bottom:800.565000px;}
.y16d{bottom:802.402500px;}
.y1fb{bottom:803.299500px;}
.y47{bottom:803.419500px;}
.ya9{bottom:804.196500px;}
.y2a8{bottom:804.763500px;}
.y1{bottom:805.917000px;}
.y73{bottom:807.006000px;}
.ycd{bottom:808.650000px;}
.y260{bottom:808.828500px;}
.yb9{bottom:810.294000px;}
.y236{bottom:812.266500px;}
.y121{bottom:813.162000px;}
.y1f{bottom:814.369500px;}
.y13f{bottom:817.615500px;}
.y21d{bottom:818.244000px;}
.y243{bottom:818.512500px;}
.y1b4{bottom:819.096000px;}
.y16c{bottom:820.336500px;}
.y1fa{bottom:821.232000px;}
.y46{bottom:821.352000px;}
.yfd{bottom:822.129000px;}
.y2a7{bottom:822.697500px;}
.y72{bottom:824.938500px;}
.y1e9{bottom:827.307000px;}
.y235{bottom:830.199000px;}
.ya8{bottom:831.096000px;}
.y1e{bottom:832.302000px;}
.ycc{bottom:835.548000px;}
.yb8{bottom:837.192000px;}
.y1b3{bottom:837.625500px;}
.y16b{bottom:838.866000px;}
.y1f9{bottom:839.164500px;}
.y45{bottom:839.284500px;}
.yfc{bottom:840.061500px;}
.y2a6{bottom:840.630000px;}
.y21c{bottom:845.143500px;}
.y1e8{bottom:845.239500px;}
.y234{bottom:848.131500px;}
.ya7{bottom:849.028500px;}
.y1c{bottom:850.833000px;}
.y71{bottom:851.838000px;}
.y13e{bottom:853.482000px;}
.y1b2{bottom:856.156500px;}
.y16a{bottom:856.798500px;}
.y1f8{bottom:857.098500px;}
.y44{bottom:857.217000px;}
.yfb{bottom:857.994000px;}
.y242{bottom:860.803500px;}
.ycb{bottom:862.447500px;}
.y21b{bottom:863.076000px;}
.yb7{bottom:864.091500px;}
.y233{bottom:866.064000px;}
.ya6{bottom:866.961000px;}
.y2a5{bottom:868.425000px;}
.y70{bottom:869.770500px;}
.y1f7{bottom:875.031000px;}
.y43{bottom:875.149500px;}
.y169{bottom:875.329500px;}
.yfa{bottom:875.926500px;}
.y241{bottom:878.737500px;}
.yca{bottom:880.380000px;}
.y21a{bottom:881.008500px;}
.yb6{bottom:882.024000px;}
.y25f{bottom:883.996500px;}
.ya5{bottom:884.893500px;}
.y6f{bottom:887.703000px;}
.y1b1{bottom:890.625000px;}
.y1e7{bottom:892.665000px;}
.y232{bottom:892.963500px;}
.y42{bottom:893.083500px;}
.yf9{bottom:893.860500px;}
.y13d{bottom:898.314000px;}
.y2a4{bottom:901.750500px;}
.y1f6{bottom:901.929000px;}
.ya4{bottom:902.826000px;}
.y6e{bottom:905.635500px;}
.y297{bottom:907.459500px;}
.y219{bottom:907.908000px;}
.yc9{bottom:908.176500px;}
.yb5{bottom:908.923500px;}
.y25e{bottom:910.896000px;}
.y41{bottom:911.016000px;}
.y1e6{bottom:911.194500px;}
.yf8{bottom:911.793000px;}
.y168{bottom:912.390000px;}
.y13c{bottom:916.246500px;}
.y2a3{bottom:919.683000px;}
.y1f5{bottom:919.863000px;}
.ya3{bottom:920.758500px;}
.y6d{bottom:923.568000px;}
.y1b0{bottom:924.495000px;}
.y296{bottom:925.392000px;}
.y218{bottom:925.840500px;}
.y40{bottom:928.948500px;}
.yf7{bottom:929.725500px;}
.y167{bottom:930.324000px;}
.y240{bottom:932.535000px;}
.y13b{bottom:934.179000px;}
.yb4{bottom:935.823000px;}
.y2a2{bottom:937.615500px;}
.y1f4{bottom:937.795500px;}
.ya2{bottom:938.692500px;}
.y6c{bottom:941.502000px;}
.y1af{bottom:942.427500px;}
.y231{bottom:946.761000px;}
.yf6{bottom:947.658000px;}
.y166{bottom:948.853500px;}
.yc8{bottom:950.467500px;}
.y13a{bottom:952.111500px;}
.y295{bottom:952.291500px;}
.y217{bottom:952.740000px;}
.y2a1{bottom:955.548000px;}
.ya1{bottom:956.625000px;}
.y23f{bottom:959.434500px;}
.y3f{bottom:960.031500px;}
.yb3{bottom:963.618000px;}
.y1f3{bottom:964.695000px;}
.y1b{bottom:964.863000px;}
.y120{bottom:965.590500px;}
.y1e5{bottom:966.189000px;}
.y165{bottom:966.786000px;}
.y6b{bottom:968.400000px;}
.y139{bottom:970.044000px;}
.y1ae{bottom:970.224000px;}
.y216{bottom:970.672500px;}
.y2a0{bottom:973.482000px;}
.y230{bottom:973.660500px;}
.yf5{bottom:974.557500px;}
.y3e{bottom:977.964000px;}
.y1f2{bottom:982.627500px;}
.y1a{bottom:982.795500px;}
.y2ca{bottom:983.523000px;}
.ya0{bottom:983.524500px;}
.y1e4{bottom:984.720000px;}
.y164{bottom:985.317000px;}
.y6a{bottom:986.334000px;}
.y138{bottom:987.976500px;}
.y29f{bottom:991.414500px;}
.y25d{bottom:991.593000px;}
.y11f{bottom:992.490000px;}
.y3d{bottom:995.898000px;}
.y294{bottom:997.123500px;}
.y215{bottom:997.570500px;}
.y1f1{bottom:1000.560000px;}
.y19{bottom:1001.326500px;}
.y9f{bottom:1001.457000px;}
.y1e3{bottom:1003.249500px;}
.y163{bottom:1003.848000px;}
.y69{bottom:1004.266500px;}
.yb2{bottom:1005.910500px;}
.y29e{bottom:1009.347000px;}
.y1ad{bottom:1009.527000px;}
.y11e{bottom:1010.422500px;}
.y23e{bottom:1013.232000px;}
.y3c{bottom:1013.830500px;}
.y293{bottom:1015.056000px;}
.y214{bottom:1015.504500px;}
.y1f0{bottom:1018.492500px;}
.y9e{bottom:1019.389500px;}
.y18{bottom:1019.922000px;}
.y1e2{bottom:1021.182000px;}
.y68{bottom:1022.199000px;}
.y162{bottom:1022.377500px;}
.yb1{bottom:1023.843000px;}
.y29d{bottom:1027.279500px;}
.y1ac{bottom:1027.459500px;}
.y11d{bottom:1028.355000px;}
.yc7{bottom:1031.164500px;}
.y213{bottom:1033.437000px;}
.y137{bottom:1033.705500px;}
.y1ef{bottom:1036.425000px;}
.yf4{bottom:1037.322000px;}
.y17{bottom:1038.517500px;}
.y1e1{bottom:1039.713000px;}
.y67{bottom:1040.131500px;}
.y161{bottom:1040.311500px;}
.yb0{bottom:1041.775500px;}
.y292{bottom:1042.851000px;}
.y3b{bottom:1044.913500px;}
.y29c{bottom:1045.212000px;}
.y1ab{bottom:1045.392000px;}
.y9d{bottom:1046.289000px;}
.yc6{bottom:1049.098500px;}
.y212{bottom:1051.369500px;}
.y22f{bottom:1054.357500px;}
.yf3{bottom:1055.254500px;}
.y16{bottom:1056.450000px;}
.y1e0{bottom:1057.645500px;}
.y160{bottom:1058.841000px;}
.y3a{bottom:1062.846000px;}
.y29b{bottom:1063.144500px;}
.y1aa{bottom:1063.324500px;}
.y9c{bottom:1064.221500px;}
.y66{bottom:1067.031000px;}
.yaf{bottom:1069.570500px;}
.y25c{bottom:1072.291500px;}
.yf2{bottom:1073.187000px;}
.y15{bottom:1074.382500px;}
.yc5{bottom:1075.996500px;}
.y1df{bottom:1076.176500px;}
.y15f{bottom:1077.372000px;}
.y211{bottom:1078.269000px;}
.y39{bottom:1080.778500px;}
.y29a{bottom:1081.078500px;}
.y1a9{bottom:1081.257000px;}
.y9b{bottom:1082.154000px;}
.y25b{bottom:1090.224000px;}
.yf1{bottom:1091.121000px;}
.y14{bottom:1092.913500px;}
.y65{bottom:1093.930500px;}
.y1de{bottom:1094.707500px;}
.y15e{bottom:1095.903000px;}
.y210{bottom:1096.201500px;}
.y38{bottom:1098.712500px;}
.y299{bottom:1099.011000px;}
.y1a8{bottom:1099.189500px;}
.y11c{bottom:1100.086500px;}
.y9a{bottom:1109.053500px;}
.y13{bottom:1110.846000px;}
.y64{bottom:1111.863000px;}
.y1dd{bottom:1113.237000px;}
.y15d{bottom:1113.835500px;}
.y20f{bottom:1114.134000px;}
.y1a7{bottom:1117.123500px;}
.yf0{bottom:1118.019000px;}
.y298{bottom:1126.806000px;}
.y99{bottom:1126.986000px;}
.y12{bottom:1128.778500px;}
.y37{bottom:1129.795500px;}
.y1dc{bottom:1131.768000px;}
.y15c{bottom:1132.365000px;}
.y1a6{bottom:1135.056000px;}
.y11b{bottom:1135.951500px;}
.y20e{bottom:1141.930500px;}
.y98{bottom:1144.918500px;}
.y11{bottom:1146.712500px;}
.y15b{bottom:1150.299000px;}
.y36{bottom:1162.851000px;}
.y10{bottom:1165.242000px;}
.yf{bottom:1220.535000px;}
.hc{height:32.982919px;}
.h5{height:36.724993px;}
.h4{height:40.805251px;}
.he{height:41.484266px;}
.h6{height:43.654237px;}
.h3{height:48.504355px;}
.ha{height:48.834317px;}
.h7{height:48.966212px;}
.h8{height:58.559543px;}
.hd{height:58.759722px;}
.h9{height:58.810315px;}
.h2{height:70.511666px;}
.hb{height:125.529180px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:85.039500px;}
.x1{left:87.682500px;}
.x23{left:94.603500px;}
.x1c{left:98.269500px;}
.x18{left:100.878000px;}
.x11{left:102.142500px;}
.x1d{left:104.766000px;}
.x13{left:109.122000px;}
.x17{left:113.647500px;}
.xd{left:115.249500px;}
.x12{left:119.262000px;}
.x1f{left:122.400000px;}
.x26{left:123.918000px;}
.x10{left:127.122000px;}
.xf{left:132.210000px;}
.x1e{left:135.012000px;}
.x20{left:140.929500px;}
.xc{left:142.641000px;}
.xe{left:145.809000px;}
.xa{left:153.340500px;}
.xb{left:155.358000px;}
.x27{left:167.304000px;}
.x1a{left:171.241500px;}
.x28{left:177.885000px;}
.x16{left:189.166500px;}
.x21{left:205.219500px;}
.x25{left:233.770500px;}
.x24{left:240.693000px;}
.x14{left:301.794000px;}
.x9{left:307.020000px;}
.x15{left:324.801000px;}
.x6{left:339.054000px;}
.x2{left:362.314500px;}
.x19{left:366.324000px;}
.x3{left:369.727500px;}
.x4{left:375.256500px;}
.x7{left:378.148500px;}
.x22{left:393.439500px;}
.x1b{left:403.866000px;}
.x5{left:410.434500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.048883pt;}
.ls10{letter-spacing:2.659253pt;}
.ls1{letter-spacing:2.672389pt;}
.lse{letter-spacing:2.672452pt;}
.ls2{letter-spacing:2.675851pt;}
.lsf{letter-spacing:2.677786pt;}
.ls12{letter-spacing:6.599232pt;}
.lsa{letter-spacing:10.998720pt;}
.ls6{letter-spacing:11.047603pt;}
.ls11{letter-spacing:11.878618pt;}
.lsb{letter-spacing:13.668885pt;}
.ls9{letter-spacing:13.687189pt;}
.lsc{letter-spacing:14.860493pt;}
.ls3{letter-spacing:23.366170pt;}
.lsd{letter-spacing:26.543578pt;}
.ls5{letter-spacing:26.556105pt;}
.ls8{letter-spacing:26.566400pt;}
.ls4{letter-spacing:81.634944pt;}
.ws14{word-spacing:-14.782320pt;}
.wsba{word-spacing:-12.318544pt;}
.ws96{word-spacing:-11.458253pt;}
.ws45{word-spacing:-11.047603pt;}
.ws6{word-spacing:-10.998720pt;}
.ws1{word-spacing:-10.265472pt;}
.wse9{word-spacing:-9.277764pt;}
.ws3{word-spacing:-9.238992pt;}
.ws13{word-spacing:-8.799000pt;}
.wsc2{word-spacing:-2.688576pt;}
.ws9{word-spacing:-2.639693pt;}
.ws8d{word-spacing:-2.590810pt;}
.ws93{word-spacing:-2.541926pt;}
.ws54{word-spacing:-2.395277pt;}
.ws48{word-spacing:-2.346394pt;}
.ws6b{word-spacing:-2.297510pt;}
.wsd1{word-spacing:-2.248627pt;}
.wsc0{word-spacing:-2.199744pt;}
.ws80{word-spacing:-2.150861pt;}
.ws87{word-spacing:-2.053094pt;}
.ws52{word-spacing:-2.004211pt;}
.ws8b{word-spacing:-1.955328pt;}
.wsd8{word-spacing:-1.857562pt;}
.ws36{word-spacing:-1.808678pt;}
.wsc4{word-spacing:-1.804093pt;}
.ws44{word-spacing:-1.759795pt;}
.wsa1{word-spacing:-1.710912pt;}
.ws6e{word-spacing:-1.662029pt;}
.ws29{word-spacing:-1.613146pt;}
.ws28{word-spacing:-1.564262pt;}
.ws40{word-spacing:-1.515379pt;}
.ws99{word-spacing:-1.466496pt;}
.ws53{word-spacing:-1.417613pt;}
.ws75{word-spacing:-1.368730pt;}
.ws9c{word-spacing:-1.319846pt;}
.ws42{word-spacing:-1.222080pt;}
.ws6a{word-spacing:-1.173197pt;}
.ws9e{word-spacing:-1.124314pt;}
.wsbd{word-spacing:-1.075430pt;}
.ws37{word-spacing:-1.026547pt;}
.ws5f{word-spacing:-0.977664pt;}
.wsd5{word-spacing:-0.879898pt;}
.wsd6{word-spacing:-0.831014pt;}
.ws43{word-spacing:-0.782131pt;}
.ws46{word-spacing:-0.733248pt;}
.ws78{word-spacing:-0.684365pt;}
.ws89{word-spacing:-0.635482pt;}
.ws57{word-spacing:-0.586598pt;}
.ws49{word-spacing:-0.537715pt;}
.ws6f{word-spacing:-0.488832pt;}
.ws11{word-spacing:-0.439949pt;}
.ws67{word-spacing:-0.391066pt;}
.ws77{word-spacing:-0.342182pt;}
.wsd0{word-spacing:-0.293299pt;}
.ws56{word-spacing:-0.244416pt;}
.ws70{word-spacing:-0.195533pt;}
.ws12{word-spacing:-0.159402pt;}
.ws1c{word-spacing:-0.146650pt;}
.wsd2{word-spacing:-0.097766pt;}
.ws1a{word-spacing:-0.070392pt;}
.ws5{word-spacing:-0.058660pt;}
.wse8{word-spacing:-0.053134pt;}
.ws2{word-spacing:-0.048883pt;}
.ws4{word-spacing:-0.043995pt;}
.ws0{word-spacing:0.000000pt;}
.wsb{word-spacing:0.048883pt;}
.ws5b{word-spacing:0.097766pt;}
.ws20{word-spacing:0.146650pt;}
.ws21{word-spacing:0.195533pt;}
.wsc9{word-spacing:0.244416pt;}
.ws41{word-spacing:0.293299pt;}
.ws26{word-spacing:0.342182pt;}
.ws25{word-spacing:0.391066pt;}
.ws5d{word-spacing:0.439949pt;}
.ws65{word-spacing:0.488832pt;}
.ws62{word-spacing:0.537715pt;}
.wsb7{word-spacing:0.635482pt;}
.ws24{word-spacing:0.684365pt;}
.ws5a{word-spacing:0.691985pt;}
.ws27{word-spacing:0.733248pt;}
.ws58{word-spacing:0.756109pt;}
.ws73{word-spacing:0.782131pt;}
.ws2a{word-spacing:0.831014pt;}
.ws3c{word-spacing:0.879898pt;}
.ws39{word-spacing:0.928781pt;}
.ws50{word-spacing:0.977664pt;}
.ws3e{word-spacing:1.026547pt;}
.ws64{word-spacing:1.124314pt;}
.ws38{word-spacing:1.173197pt;}
.wsbb{word-spacing:1.222080pt;}
.wsa4{word-spacing:1.270963pt;}
.ws5c{word-spacing:1.319846pt;}
.ws84{word-spacing:1.368730pt;}
.ws30{word-spacing:1.417613pt;}
.ws7d{word-spacing:1.466496pt;}
.wsb6{word-spacing:1.515379pt;}
.wsb2{word-spacing:1.564262pt;}
.ws60{word-spacing:1.613146pt;}
.wsa0{word-spacing:1.662029pt;}
.wsb8{word-spacing:1.710912pt;}
.ws35{word-spacing:1.759795pt;}
.wsb4{word-spacing:1.808678pt;}
.ws69{word-spacing:1.857562pt;}
.wsc8{word-spacing:1.906445pt;}
.ws1b{word-spacing:1.955328pt;}
.ws2b{word-spacing:2.004211pt;}
.ws1e{word-spacing:2.053094pt;}
.wsd{word-spacing:2.101978pt;}
.ws3f{word-spacing:2.150861pt;}
.ws6c{word-spacing:2.199744pt;}
.ws4b{word-spacing:2.297510pt;}
.ws33{word-spacing:2.395277pt;}
.ws23{word-spacing:2.444160pt;}
.wsc5{word-spacing:2.493043pt;}
.ws7f{word-spacing:2.541926pt;}
.wsb5{word-spacing:2.590810pt;}
.ws7e{word-spacing:2.639693pt;}
.wsca{word-spacing:2.643686pt;}
.wscb{word-spacing:2.654827pt;}
.wsa7{word-spacing:2.688576pt;}
.wsce{word-spacing:2.689468pt;}
.ws1d{word-spacing:2.737459pt;}
.ws4d{word-spacing:2.786342pt;}
.ws7a{word-spacing:2.835226pt;}
.ws79{word-spacing:2.884109pt;}
.ws4a{word-spacing:2.932992pt;}
.ws82{word-spacing:2.981875pt;}
.ws61{word-spacing:3.030758pt;}
.ws94{word-spacing:3.059725pt;}
.ws8f{word-spacing:3.079642pt;}
.wsad{word-spacing:3.177408pt;}
.ws31{word-spacing:3.226291pt;}
.ws2c{word-spacing:3.275174pt;}
.ws63{word-spacing:3.324058pt;}
.ws4c{word-spacing:3.372941pt;}
.ws74{word-spacing:3.470707pt;}
.ws90{word-spacing:3.519590pt;}
.ws8c{word-spacing:3.568474pt;}
.wse{word-spacing:3.666240pt;}
.ws47{word-spacing:3.715123pt;}
.ws3a{word-spacing:3.764006pt;}
.ws4f{word-spacing:3.812890pt;}
.ws51{word-spacing:3.861773pt;}
.ws98{word-spacing:3.910656pt;}
.ws88{word-spacing:3.959539pt;}
.ws9f{word-spacing:4.008422pt;}
.wsb0{word-spacing:4.057306pt;}
.ws8a{word-spacing:4.106189pt;}
.wsa9{word-spacing:4.155072pt;}
.ws66{word-spacing:4.203955pt;}
.ws7b{word-spacing:4.252838pt;}
.ws3d{word-spacing:4.301722pt;}
.wsac{word-spacing:4.350605pt;}
.ws6d{word-spacing:4.399488pt;}
.ws71{word-spacing:4.448371pt;}
.wsa6{word-spacing:4.546138pt;}
.ws83{word-spacing:4.595021pt;}
.ws91{word-spacing:4.643904pt;}
.ws68{word-spacing:4.692787pt;}
.ws97{word-spacing:4.741670pt;}
.ws10{word-spacing:4.790554pt;}
.ws95{word-spacing:4.828992pt;}
.wsaa{word-spacing:4.839437pt;}
.ws1f{word-spacing:4.888320pt;}
.wsa8{word-spacing:4.937203pt;}
.ws81{word-spacing:4.986086pt;}
.ws72{word-spacing:5.034970pt;}
.wsb1{word-spacing:5.083853pt;}
.wsa3{word-spacing:5.132736pt;}
.ws5e{word-spacing:5.181619pt;}
.wsa5{word-spacing:5.191467pt;}
.ws59{word-spacing:5.230502pt;}
.ws7{word-spacing:5.259209pt;}
.wsd7{word-spacing:5.279386pt;}
.wsc{word-spacing:5.290663pt;}
.ws8{word-spacing:5.296360pt;}
.ws76{word-spacing:5.328269pt;}
.wscc{word-spacing:5.377152pt;}
.ws2e{word-spacing:5.426035pt;}
.ws2f{word-spacing:5.474918pt;}
.ws92{word-spacing:5.523802pt;}
.wsbf{word-spacing:5.572685pt;}
.ws32{word-spacing:5.621568pt;}
.wscf{word-spacing:5.768218pt;}
.wsc1{word-spacing:5.865984pt;}
.wsb3{word-spacing:5.963750pt;}
.ws8e{word-spacing:6.012634pt;}
.ws22{word-spacing:6.110400pt;}
.wsab{word-spacing:6.159283pt;}
.ws7c{word-spacing:6.208166pt;}
.wsbc{word-spacing:6.257050pt;}
.ws34{word-spacing:6.305933pt;}
.ws4e{word-spacing:6.354816pt;}
.wscd{word-spacing:6.403699pt;}
.wsd3{word-spacing:6.501466pt;}
.ws86{word-spacing:6.550349pt;}
.wsb9{word-spacing:6.628550pt;}
.ws85{word-spacing:6.648115pt;}
.ws2d{word-spacing:6.794765pt;}
.ws3b{word-spacing:6.990298pt;}
.wsbe{word-spacing:7.381363pt;}
.wsa2{word-spacing:7.674662pt;}
.wsec{word-spacing:7.870195pt;}
.wsc3{word-spacing:8.065728pt;}
.wseb{word-spacing:8.847859pt;}
.ws9a{word-spacing:9.727757pt;}
.ws9b{word-spacing:11.389786pt;}
.wsae{word-spacing:11.438669pt;}
.wsaf{word-spacing:11.487552pt;}
.ws9d{word-spacing:11.780851pt;}
.ws16{word-spacing:12.367450pt;}
.ws18{word-spacing:12.416333pt;}
.wsea{word-spacing:13.785062pt;}
.wsf{word-spacing:14.664960pt;}
.wsc6{word-spacing:15.544858pt;}
.wse7{word-spacing:16.271445pt;}
.wse6{word-spacing:16.314560pt;}
.wsdc{word-spacing:16.331721pt;}
.wsed{word-spacing:17.402419pt;}
.wse5{word-spacing:26.029363pt;}
.ws17{word-spacing:26.787994pt;}
.ws15{word-spacing:32.507328pt;}
.wsd4{word-spacing:36.515750pt;}
.wsc7{word-spacing:43.818821pt;}
.ws55{word-spacing:52.512432pt;}
.wsdb{word-spacing:56.239181pt;}
.wse0{word-spacing:57.950093pt;}
.wse3{word-spacing:58.096742pt;}
.wsde{word-spacing:68.704397pt;}
.wse1{word-spacing:69.486528pt;}
.wse4{word-spacing:69.584294pt;}
.wsdf{word-spacing:81.169613pt;}
.wsdd{word-spacing:83.760422pt;}
.wsd9{word-spacing:89.479757pt;}
.wse2{word-spacing:95.932339pt;}
.wsda{word-spacing:108.690854pt;}
.wsa{word-spacing:1181.506944pt;}
.ws19{word-spacing:2256.757205pt;}
._32{margin-left:-23.522208pt;}
._2f{margin-left:-22.509563pt;}
._4e{margin-left:-9.069197pt;}
._50{margin-left:-8.126357pt;}
._2{margin-left:-6.504221pt;}
._14{margin-left:-4.810664pt;}
._3{margin-left:-3.478915pt;}
._5{margin-left:-2.574606pt;}
._0{margin-left:-1.604938pt;}
._1{width:1.182586pt;}
._4b{width:2.399618pt;}
._7{width:3.459795pt;}
._4a{width:5.865923pt;}
._49{width:7.332541pt;}
._46{width:8.851554pt;}
._48{width:10.101226pt;}
._12{width:11.047603pt;}
._6{width:12.274661pt;}
._4{width:13.687296pt;}
._3e{width:14.933848pt;}
._25{width:15.940213pt;}
._47{width:16.897171pt;}
._21{width:17.906812pt;}
._41{width:18.868915pt;}
._3d{width:19.879259pt;}
._24{width:20.970893pt;}
._40{width:21.981237pt;}
._23{width:23.349508pt;}
._22{width:24.954904pt;}
._31{width:25.867421pt;}
._2a{width:27.296936pt;}
._3b{width:28.832880pt;}
._39{width:29.916518pt;}
._2c{width:31.130390pt;}
._42{width:32.116110pt;}
._43{width:33.191693pt;}
._36{width:35.627645pt;}
._4f{width:37.252630pt;}
._51{width:38.275546pt;}
._3a{width:39.742042pt;}
._34{width:41.102563pt;}
._29{width:42.772800pt;}
._33{width:45.999091pt;}
._2d{width:47.342229pt;}
._44{width:56.137365pt;}
._37{width:57.951003pt;}
._35{width:59.173787pt;}
._20{width:65.412182pt;}
._45{width:67.294752pt;}
._3c{width:81.634944pt;}
._2b{width:84.152398pt;}
._13{width:106.124054pt;}
._1a{width:111.979786pt;}
._4c{width:239.817429pt;}
._15{width:369.011069pt;}
._9{width:380.694636pt;}
._19{width:516.343853pt;}
._10{width:573.542273pt;}
._18{width:595.796650pt;}
._1d{width:619.985626pt;}
._1e{width:763.254077pt;}
._c{width:764.732404pt;}
._b{width:785.497757pt;}
._17{width:803.289418pt;}
._a{width:826.827112pt;}
._1f{width:835.184342pt;}
._11{width:845.805904pt;}
._1c{width:872.744450pt;}
._1b{width:889.323850pt;}
._16{width:960.807504pt;}
._f{width:967.390383pt;}
._e{width:981.825603pt;}
._d{width:1053.436793pt;}
._30{width:1630.643713pt;}
._2e{width:1645.838393pt;}
._4d{width:1805.112996pt;}
._26{width:1814.248996pt;}
._8{width:1828.488996pt;}
._3f{width:1831.043662pt;}
._38{width:1873.386378pt;}
._27{width:2089.101649pt;}
._28{width:2178.233319pt;}
.fs6{font-size:33.240533pt;}
.fs4{font-size:37.151467pt;}
.fs7{font-size:39.106667pt;}
.fs2{font-size:43.995200pt;}
.fs1{font-size:48.883200pt;}
.fs9{font-size:53.133867pt;}
.fs3{font-size:58.659733pt;}
.fs8{font-size:70.392000pt;}
.fs0{font-size:84.470400pt;}
.fs5{font-size:159.402133pt;}
.y0{bottom:0.000000pt;}
.y291{bottom:75.590667pt;}
.y18f{bottom:75.857333pt;}
.y11a{bottom:78.693333pt;}
.y35{bottom:79.448000pt;}
.yef{bottom:81.190667pt;}
.y97{bottom:87.700000pt;}
.y1db{bottom:87.820000pt;}
.y290{bottom:91.530667pt;}
.y18e{bottom:91.797333pt;}
.y25a{bottom:93.278667pt;}
.y119{bottom:94.633333pt;}
.yee{bottom:97.130667pt;}
.y34{bottom:98.296000pt;}
.y96{bottom:103.640000pt;}
.y1da{bottom:104.290667pt;}
.y27b{bottom:104.464000pt;}
.y15a{bottom:105.326667pt;}
.y28f{bottom:107.470667pt;}
.y259{bottom:109.218667pt;}
.y27e{bottom:109.270667pt;}
.y118{bottom:110.573333pt;}
.y2c9{bottom:111.078667pt;}
.y18d{bottom:115.708000pt;}
.y95{bottom:119.580000pt;}
.y1d9{bottom:120.762667pt;}
.yed{bottom:121.041333pt;}
.y159{bottom:121.798667pt;}
.y117{bottom:126.513333pt;}
.y2c8{bottom:127.018667pt;}
.y1a5{bottom:127.272000pt;}
.y27a{bottom:128.373333pt;}
.y18c{bottom:131.648000pt;}
.y28e{bottom:132.178667pt;}
.y1ee{bottom:132.757333pt;}
.y258{bottom:133.129333pt;}
.y94{bottom:135.520000pt;}
.y1d8{bottom:137.234667pt;}
.y158{bottom:138.270667pt;}
.y33{bottom:138.378667pt;}
.ye{bottom:140.945333pt;}
.y116{bottom:142.454667pt;}
.y2c7{bottom:142.958667pt;}
.yec{bottom:144.952000pt;}
.y1ed{bottom:148.697333pt;}
.y12f{bottom:150.424000pt;}
.y1a4{bottom:151.182667pt;}
.y279{bottom:152.284000pt;}
.y1d7{bottom:153.705333pt;}
.y32{bottom:154.318667pt;}
.y157{bottom:154.741333pt;}
.y18b{bottom:156.356000pt;}
.yd{bottom:156.885333pt;}
.y257{bottom:157.040000pt;}
.y115{bottom:158.394667pt;}
.y2c6{bottom:158.898667pt;}
.y93{bottom:159.430667pt;}
.y63{bottom:160.705333pt;}
.yeb{bottom:160.892000pt;}
.y28d{bottom:166.841333pt;}
.y1a3{bottom:167.122667pt;}
.y278{bottom:168.224000pt;}
.y1d6{bottom:170.177333pt;}
.y31{bottom:170.258667pt;}
.y156{bottom:171.213333pt;}
.yc{bottom:172.825333pt;}
.y114{bottom:174.334667pt;}
.y2c5{bottom:174.840000pt;}
.y92{bottom:175.370667pt;}
.y62{bottom:176.645333pt;}
.y256{bottom:180.949333pt;}
.y28c{bottom:182.781333pt;}
.y1a2{bottom:183.064000pt;}
.y277{bottom:184.164000pt;}
.yea{bottom:184.802667pt;}
.y1d5{bottom:186.117333pt;}
.y30{bottom:186.200000pt;}
.y155{bottom:187.685333pt;}
.yb{bottom:188.766667pt;}
.y12e{bottom:190.274667pt;}
.y2c4{bottom:190.780000pt;}
.y18a{bottom:191.292000pt;}
.y91{bottom:191.310667pt;}
.y255{bottom:196.890667pt;}
.y113{bottom:198.245333pt;}
.y28b{bottom:198.722667pt;}
.y1a1{bottom:199.004000pt;}
.y1d4{bottom:202.589333pt;}
.ya{bottom:203.377333pt;}
.y154{bottom:203.625333pt;}
.y61{bottom:206.029333pt;}
.y12d{bottom:206.214667pt;}
.y189{bottom:207.232000pt;}
.y90{bottom:207.250667pt;}
.y276{bottom:208.074667pt;}
.ye9{bottom:208.712000pt;}
.y2f{bottom:210.109333pt;}
.y2c3{bottom:214.689333pt;}
.y1a0{bottom:214.944000pt;}
.y9{bottom:217.989333pt;}
.y1d3{bottom:219.061333pt;}
.y153{bottom:220.097333pt;}
.y254{bottom:220.800000pt;}
.y112{bottom:222.154667pt;}
.y28a{bottom:222.632000pt;}
.y188{bottom:223.172000pt;}
.y8f{bottom:223.190667pt;}
.y275{bottom:224.014667pt;}
.y2e{bottom:226.049333pt;}
.y2c2{bottom:230.630667pt;}
.y19f{bottom:230.884000pt;}
.y8{bottom:232.601333pt;}
.ye8{bottom:232.622667pt;}
.y1d2{bottom:235.532000pt;}
.y152{bottom:236.037333pt;}
.y111{bottom:238.096000pt;}
.y289{bottom:238.573333pt;}
.y8e{bottom:239.132000pt;}
.y274{bottom:239.956000pt;}
.y2d{bottom:241.990667pt;}
.y253{bottom:244.710667pt;}
.y2c1{bottom:246.570667pt;}
.y187{bottom:247.082667pt;}
.y60{bottom:250.396000pt;}
.y1d1{bottom:252.004000pt;}
.y151{bottom:252.508000pt;}
.y110{bottom:254.036000pt;}
.y288{bottom:254.513333pt;}
.y19e{bottom:254.794667pt;}
.y8d{bottom:255.072000pt;}
.ye7{bottom:256.533333pt;}
.y2c{bottom:257.930667pt;}
.y252{bottom:260.650667pt;}
.y186{bottom:263.022667pt;}
.y273{bottom:263.865333pt;}
.y5f{bottom:266.336000pt;}
.y1d0{bottom:268.476000pt;}
.y150{bottom:268.980000pt;}
.y10f{bottom:269.976000pt;}
.y287{bottom:270.453333pt;}
.y2c0{bottom:270.481333pt;}
.y19d{bottom:270.734667pt;}
.y12c{bottom:277.945333pt;}
.y185{bottom:278.962667pt;}
.y8c{bottom:278.982667pt;}
.ye6{bottom:280.444000pt;}
.y5e{bottom:282.276000pt;}
.y2d5{bottom:282.436000pt;}
.y251{bottom:284.561333pt;}
.y1cf{bottom:284.946667pt;}
.y14f{bottom:285.452000pt;}
.y2bf{bottom:286.421333pt;}
.y272{bottom:287.776000pt;}
.y10e{bottom:293.886667pt;}
.y19c{bottom:294.645333pt;}
.y8b{bottom:294.922667pt;}
.y286{bottom:295.160000pt;}
.ye5{bottom:296.384000pt;}
.y5d{bottom:298.217333pt;}
.y2d4{bottom:298.376000pt;}
.y1ce{bottom:301.418667pt;}
.y12b{bottom:301.856000pt;}
.y14e{bottom:301.922667pt;}
.y2be{bottom:302.361333pt;}
.y250{bottom:308.472000pt;}
.y19b{bottom:310.585333pt;}
.y8a{bottom:310.862667pt;}
.y271{bottom:311.686667pt;}
.ye4{bottom:312.324000pt;}
.y5c{bottom:314.157333pt;}
.y1cd{bottom:317.358667pt;}
.y10d{bottom:317.796000pt;}
.y14d{bottom:318.394667pt;}
.y184{bottom:321.117333pt;}
.y2d3{bottom:322.286667pt;}
.y2bd{bottom:326.272000pt;}
.y89{bottom:326.802667pt;}
.y23d{bottom:327.004000pt;}
.y270{bottom:327.626667pt;}
.y285{bottom:329.824000pt;}
.y5b{bottom:330.097333pt;}
.y24f{bottom:332.382667pt;}
.y10c{bottom:333.737333pt;}
.y1cc{bottom:333.830667pt;}
.y19a{bottom:334.496000pt;}
.y14c{bottom:334.866667pt;}
.ye3{bottom:336.234667pt;}
.y183{bottom:337.589333pt;}
.y2d2{bottom:338.226667pt;}
.y2bc{bottom:342.212000pt;}
.y88{bottom:342.742667pt;}
.y23c{bottom:342.944000pt;}
.y284{bottom:345.764000pt;}
.y5a{bottom:346.037333pt;}
.y10b{bottom:349.677333pt;}
.y1cb{bottom:350.301333pt;}
.y199{bottom:350.436000pt;}
.y14b{bottom:351.337333pt;}
.y26f{bottom:351.537333pt;}
.ye2{bottom:352.174667pt;}
.y182{bottom:354.061333pt;}
.y2d1{bottom:354.166667pt;}
.y24e{bottom:356.292000pt;}
.y2bb{bottom:358.152000pt;}
.y87{bottom:358.682667pt;}
.y23b{bottom:358.884000pt;}
.y59{bottom:361.977333pt;}
.y1ca{bottom:366.242667pt;}
.y26e{bottom:367.477333pt;}
.ye1{bottom:368.114667pt;}
.y2d0{bottom:370.106667pt;}
.y283{bottom:370.472000pt;}
.y181{bottom:370.532000pt;}
.y24d{bottom:372.232000pt;}
.y12a{bottom:373.586667pt;}
.y10a{bottom:373.588000pt;}
.y2ba{bottom:374.092000pt;}
.y198{bottom:374.346667pt;}
.y86{bottom:374.624000pt;}
.y23a{bottom:374.824000pt;}
.y58{bottom:377.917333pt;}
.y14a{bottom:381.976000pt;}
.y1c9{bottom:382.713333pt;}
.y20d{bottom:383.417333pt;}
.y180{bottom:386.473333pt;}
.y2b9{bottom:390.032000pt;}
.y197{bottom:390.286667pt;}
.y26d{bottom:391.388000pt;}
.ye0{bottom:392.025333pt;}
.y57{bottom:393.858667pt;}
.y2cf{bottom:394.017333pt;}
.y24c{bottom:396.142667pt;}
.y109{bottom:397.497333pt;}
.y149{bottom:397.916000pt;}
.y85{bottom:398.533333pt;}
.y1c8{bottom:399.185333pt;}
.y20c{bottom:399.357333pt;}
.y17f{bottom:402.944000pt;}
.y196{bottom:406.226667pt;}
.y26c{bottom:407.328000pt;}
.y282{bottom:407.792000pt;}
.y2ce{bottom:409.957333pt;}
.y108{bottom:413.437333pt;}
.y2b8{bottom:413.942667pt;}
.y84{bottom:414.474667pt;}
.y239{bottom:414.674667pt;}
.y20b{bottom:415.297333pt;}
.y1c7{bottom:415.657333pt;}
.ydf{bottom:415.934667pt;}
.y22e{bottom:416.493333pt;}
.y27d{bottom:416.892000pt;}
.y17e{bottom:418.884000pt;}
.y24b{bottom:420.053333pt;}
.y56{bottom:423.241333pt;}
.y26b{bottom:423.268000pt;}
.y281{bottom:423.732000pt;}
.y148{bottom:428.022667pt;}
.y2b7{bottom:429.882667pt;}
.y195{bottom:430.137333pt;}
.y83{bottom:430.414667pt;}
.y20a{bottom:431.237333pt;}
.yde{bottom:431.876000pt;}
.y1c6{bottom:432.128000pt;}
.y17d{bottom:435.356000pt;}
.y136{bottom:435.886667pt;}
.y24a{bottom:435.993333pt;}
.y107{bottom:438.145333pt;}
.y2cd{bottom:439.341333pt;}
.y280{bottom:439.672000pt;}
.y22d{bottom:440.404000pt;}
.y147{bottom:443.964000pt;}
.y2b6{bottom:445.822667pt;}
.y194{bottom:446.077333pt;}
.y82{bottom:446.354667pt;}
.y26a{bottom:447.178667pt;}
.ydd{bottom:447.816000pt;}
.y1c5{bottom:448.600000pt;}
.yc4{bottom:450.738667pt;}
.y27c{bottom:451.826667pt;}
.y135{bottom:451.828000pt;}
.y7{bottom:454.585333pt;}
.y209{bottom:455.148000pt;}
.y22c{bottom:456.344000pt;}
.y146{bottom:459.904000pt;}
.y2b{bottom:461.526667pt;}
.y81{bottom:462.294667pt;}
.ydc{bottom:463.756000pt;}
.y1c4{bottom:465.072000pt;}
.yc3{bottom:466.678667pt;}
.y55{bottom:467.608000pt;}
.y134{bottom:467.768000pt;}
.y17c{bottom:468.298667pt;}
.y2b5{bottom:469.733333pt;}
.y6{bottom:470.525333pt;}
.y208{bottom:471.088000pt;}
.y22b{bottom:472.284000pt;}
.y106{bottom:475.737333pt;}
.y145{bottom:475.844000pt;}
.y2a{bottom:477.998667pt;}
.y80{bottom:478.234667pt;}
.ydb{bottom:479.696000pt;}
.y27f{bottom:481.293333pt;}
.y1c3{bottom:481.542667pt;}
.y133{bottom:483.708000pt;}
.y17b{bottom:484.770667pt;}
.y2b4{bottom:485.673333pt;}
.y5{bottom:486.465333pt;}
.y207{bottom:487.028000pt;}
.y22a{bottom:488.224000pt;}
.y193{bottom:488.936000pt;}
.yc2{bottom:491.385333pt;}
.y105{bottom:491.677333pt;}
.y144{bottom:491.784000pt;}
.y269{bottom:494.998667pt;}
.y54{bottom:495.237333pt;}
.yda{bottom:495.636000pt;}
.y1c2{bottom:498.014667pt;}
.y129{bottom:499.648000pt;}
.y249{bottom:499.754667pt;}
.y17a{bottom:501.242667pt;}
.y7f{bottom:502.145333pt;}
.y206{bottom:502.969333pt;}
.y229{bottom:504.164000pt;}
.y192{bottom:504.876000pt;}
.y104{bottom:507.618667pt;}
.y2b3{bottom:509.584000pt;}
.y268{bottom:510.938667pt;}
.y53{bottom:511.178667pt;}
.yd9{bottom:511.576000pt;}
.y1c1{bottom:514.486667pt;}
.y128{bottom:515.588000pt;}
.y143{bottom:516.492000pt;}
.y179{bottom:517.182667pt;}
.y7e{bottom:518.085333pt;}
.y205{bottom:518.909333pt;}
.y191{bottom:520.817333pt;}
.y248{bottom:523.665333pt;}
.y2b2{bottom:525.524000pt;}
.y267{bottom:526.880000pt;}
.y52{bottom:527.118667pt;}
.yd8{bottom:527.517333pt;}
.y228{bottom:528.074667pt;}
.yc1{bottom:528.978667pt;}
.y1c0{bottom:530.957333pt;}
.y103{bottom:531.528000pt;}
.y178{bottom:533.654667pt;}
.y7d{bottom:534.025333pt;}
.y204{bottom:534.849333pt;}
.y190{bottom:536.757333pt;}
.y2b1{bottom:541.464000pt;}
.y266{bottom:542.820000pt;}
.y51{bottom:543.058667pt;}
.yd7{bottom:543.457333pt;}
.y227{bottom:544.014667pt;}
.y1bf{bottom:547.429333pt;}
.y2cc{bottom:547.468000pt;}
.y102{bottom:547.469333pt;}
.y247{bottom:547.574667pt;}
.y177{bottom:550.125333pt;}
.y203{bottom:550.789333pt;}
.y142{bottom:551.426667pt;}
.yc0{bottom:552.888000pt;}
.y127{bottom:555.438667pt;}
.y2b0{bottom:557.405333pt;}
.y7c{bottom:557.936000pt;}
.y50{bottom:558.998667pt;}
.y226{bottom:559.954667pt;}
.y132{bottom:563.409333pt;}
.y1be{bottom:563.901333pt;}
.y176{bottom:566.597333pt;}
.y265{bottom:566.729333pt;}
.yd6{bottom:567.368000pt;}
.y101{bottom:571.378667pt;}
.y246{bottom:571.485333pt;}
.y202{bottom:574.700000pt;}
.y4f{bottom:574.938667pt;}
.ybf{bottom:576.798667pt;}
.y126{bottom:579.349333pt;}
.y29{bottom:579.358667pt;}
.y1bd{bottom:579.841333pt;}
.y2af{bottom:581.314667pt;}
.y7b{bottom:581.846667pt;}
.y175{bottom:582.537333pt;}
.y264{bottom:582.670667pt;}
.y225{bottom:583.865333pt;}
.y100{bottom:587.318667pt;}
.y201{bottom:590.640000pt;}
.y4e{bottom:590.878667pt;}
.yd5{bottom:591.277333pt;}
.y125{bottom:595.289333pt;}
.y28{bottom:595.298667pt;}
.y245{bottom:595.396000pt;}
.y1bc{bottom:596.312000pt;}
.y2ae{bottom:597.256000pt;}
.y7a{bottom:597.786667pt;}
.y174{bottom:599.009333pt;}
.y224{bottom:599.805333pt;}
.ybe{bottom:600.709333pt;}
.yae{bottom:603.260000pt;}
.y25{bottom:603.269333pt;}
.y200{bottom:606.580000pt;}
.y4d{bottom:606.820000pt;}
.yd4{bottom:607.217333pt;}
.y4{bottom:610.512000pt;}
.y124{bottom:611.229333pt;}
.y27{bottom:611.240000pt;}
.y1bb{bottom:612.784000pt;}
.y2ad{bottom:613.196000pt;}
.y79{bottom:613.726667pt;}
.y173{bottom:615.480000pt;}
.y223{bottom:615.746667pt;}
.yff{bottom:619.200000pt;}
.y244{bottom:620.102667pt;}
.y1ff{bottom:622.520000pt;}
.y4c{bottom:622.760000pt;}
.yd3{bottom:623.158667pt;}
.ybd{bottom:624.620000pt;}
.y3{bottom:626.452000pt;}
.yad{bottom:627.169333pt;}
.y26{bottom:627.180000pt;}
.y2ac{bottom:629.136000pt;}
.y1ba{bottom:629.256000pt;}
.y78{bottom:629.666667pt;}
.y263{bottom:630.490667pt;}
.y172{bottom:631.952000pt;}
.yfe{bottom:635.140000pt;}
.y1fe{bottom:638.461333pt;}
.y4b{bottom:638.700000pt;}
.yd2{bottom:639.098667pt;}
.y222{bottom:639.656000pt;}
.y2{bottom:642.392000pt;}
.y2cb{bottom:643.109333pt;}
.y131{bottom:643.110667pt;}
.y24{bottom:643.650667pt;}
.y2ab{bottom:645.076000pt;}
.y1b9{bottom:645.726667pt;}
.y171{bottom:647.892000pt;}
.ybc{bottom:648.529333pt;}
.yac{bottom:651.080000pt;}
.y77{bottom:653.577333pt;}
.y1fd{bottom:654.401333pt;}
.yd1{bottom:655.038667pt;}
.y221{bottom:655.597333pt;}
.y130{bottom:659.050667pt;}
.y1ec{bottom:659.801333pt;}
.y23{bottom:660.122667pt;}
.y2aa{bottom:661.016000pt;}
.y1b8{bottom:662.198667pt;}
.y170{bottom:664.364000pt;}
.y4a{bottom:666.329333pt;}
.y76{bottom:669.517333pt;}
.yd0{bottom:670.978667pt;}
.y220{bottom:671.537333pt;}
.ybb{bottom:672.440000pt;}
.yab{bottom:674.990667pt;}
.y1eb{bottom:675.741333pt;}
.y22{bottom:676.062667pt;}
.y262{bottom:678.312000pt;}
.y1b7{bottom:678.670667pt;}
.y1fc{bottom:679.108000pt;}
.y16f{bottom:680.304000pt;}
.y238{bottom:682.164000pt;}
.y49{bottom:682.269333pt;}
.y75{bottom:685.457333pt;}
.y2a9{bottom:685.724000pt;}
.ycf{bottom:686.918667pt;}
.y123{bottom:690.930667pt;}
.y21{bottom:692.002667pt;}
.y261{bottom:694.252000pt;}
.y141{bottom:694.889333pt;}
.y1b6{bottom:695.141333pt;}
.y21f{bottom:695.446667pt;}
.yba{bottom:696.350667pt;}
.y16e{bottom:696.776000pt;}
.y237{bottom:698.104000pt;}
.y48{bottom:698.210667pt;}
.yaa{bottom:698.901333pt;}
.y1d{bottom:699.973333pt;}
.y1ea{bottom:700.448000pt;}
.y74{bottom:701.398667pt;}
.yce{bottom:702.860000pt;}
.y122{bottom:706.870667pt;}
.y20{bottom:707.944000pt;}
.y140{bottom:710.829333pt;}
.y21e{bottom:711.388000pt;}
.y1b5{bottom:711.613333pt;}
.y16d{bottom:713.246667pt;}
.y1fb{bottom:714.044000pt;}
.y47{bottom:714.150667pt;}
.ya9{bottom:714.841333pt;}
.y2a8{bottom:715.345333pt;}
.y1{bottom:716.370667pt;}
.y73{bottom:717.338667pt;}
.ycd{bottom:718.800000pt;}
.y260{bottom:718.958667pt;}
.yb9{bottom:720.261333pt;}
.y236{bottom:722.014667pt;}
.y121{bottom:722.810667pt;}
.y1f{bottom:723.884000pt;}
.y13f{bottom:726.769333pt;}
.y21d{bottom:727.328000pt;}
.y243{bottom:727.566667pt;}
.y1b4{bottom:728.085333pt;}
.y16c{bottom:729.188000pt;}
.y1fa{bottom:729.984000pt;}
.y46{bottom:730.090667pt;}
.yfd{bottom:730.781333pt;}
.y2a7{bottom:731.286667pt;}
.y72{bottom:733.278667pt;}
.y1e9{bottom:735.384000pt;}
.y235{bottom:737.954667pt;}
.ya8{bottom:738.752000pt;}
.y1e{bottom:739.824000pt;}
.ycc{bottom:742.709333pt;}
.yb8{bottom:744.170667pt;}
.y1b3{bottom:744.556000pt;}
.y16b{bottom:745.658667pt;}
.y1f9{bottom:745.924000pt;}
.y45{bottom:746.030667pt;}
.yfc{bottom:746.721333pt;}
.y2a6{bottom:747.226667pt;}
.y21c{bottom:751.238667pt;}
.y1e8{bottom:751.324000pt;}
.y234{bottom:753.894667pt;}
.ya7{bottom:754.692000pt;}
.y1c{bottom:756.296000pt;}
.y71{bottom:757.189333pt;}
.y13e{bottom:758.650667pt;}
.y1b2{bottom:761.028000pt;}
.y16a{bottom:761.598667pt;}
.y1f8{bottom:761.865333pt;}
.y44{bottom:761.970667pt;}
.yfb{bottom:762.661333pt;}
.y242{bottom:765.158667pt;}
.ycb{bottom:766.620000pt;}
.y21b{bottom:767.178667pt;}
.yb7{bottom:768.081333pt;}
.y233{bottom:769.834667pt;}
.ya6{bottom:770.632000pt;}
.y2a5{bottom:771.933333pt;}
.y70{bottom:773.129333pt;}
.y1f7{bottom:777.805333pt;}
.y43{bottom:777.910667pt;}
.y169{bottom:778.070667pt;}
.yfa{bottom:778.601333pt;}
.y241{bottom:781.100000pt;}
.yca{bottom:782.560000pt;}
.y21a{bottom:783.118667pt;}
.yb6{bottom:784.021333pt;}
.y25f{bottom:785.774667pt;}
.ya5{bottom:786.572000pt;}
.y6f{bottom:789.069333pt;}
.y1b1{bottom:791.666667pt;}
.y1e7{bottom:793.480000pt;}
.y232{bottom:793.745333pt;}
.y42{bottom:793.852000pt;}
.yf9{bottom:794.542667pt;}
.y13d{bottom:798.501333pt;}
.y2a4{bottom:801.556000pt;}
.y1f6{bottom:801.714667pt;}
.ya4{bottom:802.512000pt;}
.y6e{bottom:805.009333pt;}
.y297{bottom:806.630667pt;}
.y219{bottom:807.029333pt;}
.yc9{bottom:807.268000pt;}
.yb5{bottom:807.932000pt;}
.y25e{bottom:809.685333pt;}
.y41{bottom:809.792000pt;}
.y1e6{bottom:809.950667pt;}
.yf8{bottom:810.482667pt;}
.y168{bottom:811.013333pt;}
.y13c{bottom:814.441333pt;}
.y2a3{bottom:817.496000pt;}
.y1f5{bottom:817.656000pt;}
.ya3{bottom:818.452000pt;}
.y6d{bottom:820.949333pt;}
.y1b0{bottom:821.773333pt;}
.y296{bottom:822.570667pt;}
.y218{bottom:822.969333pt;}
.y40{bottom:825.732000pt;}
.yf7{bottom:826.422667pt;}
.y167{bottom:826.954667pt;}
.y240{bottom:828.920000pt;}
.y13b{bottom:830.381333pt;}
.yb4{bottom:831.842667pt;}
.y2a2{bottom:833.436000pt;}
.y1f4{bottom:833.596000pt;}
.ya2{bottom:834.393333pt;}
.y6c{bottom:836.890667pt;}
.y1af{bottom:837.713333pt;}
.y231{bottom:841.565333pt;}
.yf6{bottom:842.362667pt;}
.y166{bottom:843.425333pt;}
.yc8{bottom:844.860000pt;}
.y13a{bottom:846.321333pt;}
.y295{bottom:846.481333pt;}
.y217{bottom:846.880000pt;}
.y2a1{bottom:849.376000pt;}
.ya1{bottom:850.333333pt;}
.y23f{bottom:852.830667pt;}
.y3f{bottom:853.361333pt;}
.yb3{bottom:856.549333pt;}
.y1f3{bottom:857.506667pt;}
.y1b{bottom:857.656000pt;}
.y120{bottom:858.302667pt;}
.y1e5{bottom:858.834667pt;}
.y165{bottom:859.365333pt;}
.y6b{bottom:860.800000pt;}
.y139{bottom:862.261333pt;}
.y1ae{bottom:862.421333pt;}
.y216{bottom:862.820000pt;}
.y2a0{bottom:865.317333pt;}
.y230{bottom:865.476000pt;}
.yf5{bottom:866.273333pt;}
.y3e{bottom:869.301333pt;}
.y1f2{bottom:873.446667pt;}
.y1a{bottom:873.596000pt;}
.y2ca{bottom:874.242667pt;}
.ya0{bottom:874.244000pt;}
.y1e4{bottom:875.306667pt;}
.y164{bottom:875.837333pt;}
.y6a{bottom:876.741333pt;}
.y138{bottom:878.201333pt;}
.y29f{bottom:881.257333pt;}
.y25d{bottom:881.416000pt;}
.y11f{bottom:882.213333pt;}
.y3d{bottom:885.242667pt;}
.y294{bottom:886.332000pt;}
.y215{bottom:886.729333pt;}
.y1f1{bottom:889.386667pt;}
.y19{bottom:890.068000pt;}
.y9f{bottom:890.184000pt;}
.y1e3{bottom:891.777333pt;}
.y163{bottom:892.309333pt;}
.y69{bottom:892.681333pt;}
.yb2{bottom:894.142667pt;}
.y29e{bottom:897.197333pt;}
.y1ad{bottom:897.357333pt;}
.y11e{bottom:898.153333pt;}
.y23e{bottom:900.650667pt;}
.y3c{bottom:901.182667pt;}
.y293{bottom:902.272000pt;}
.y214{bottom:902.670667pt;}
.y1f0{bottom:905.326667pt;}
.y9e{bottom:906.124000pt;}
.y18{bottom:906.597333pt;}
.y1e2{bottom:907.717333pt;}
.y68{bottom:908.621333pt;}
.y162{bottom:908.780000pt;}
.yb1{bottom:910.082667pt;}
.y29d{bottom:913.137333pt;}
.y1ac{bottom:913.297333pt;}
.y11d{bottom:914.093333pt;}
.yc7{bottom:916.590667pt;}
.y213{bottom:918.610667pt;}
.y137{bottom:918.849333pt;}
.y1ef{bottom:921.266667pt;}
.yf4{bottom:922.064000pt;}
.y17{bottom:923.126667pt;}
.y1e1{bottom:924.189333pt;}
.y67{bottom:924.561333pt;}
.y161{bottom:924.721333pt;}
.yb0{bottom:926.022667pt;}
.y292{bottom:926.978667pt;}
.y3b{bottom:928.812000pt;}
.y29c{bottom:929.077333pt;}
.y1ab{bottom:929.237333pt;}
.y9d{bottom:930.034667pt;}
.yc6{bottom:932.532000pt;}
.y212{bottom:934.550667pt;}
.y22f{bottom:937.206667pt;}
.yf3{bottom:938.004000pt;}
.y16{bottom:939.066667pt;}
.y1e0{bottom:940.129333pt;}
.y160{bottom:941.192000pt;}
.y3a{bottom:944.752000pt;}
.y29b{bottom:945.017333pt;}
.y1aa{bottom:945.177333pt;}
.y9c{bottom:945.974667pt;}
.y66{bottom:948.472000pt;}
.yaf{bottom:950.729333pt;}
.y25c{bottom:953.148000pt;}
.yf2{bottom:953.944000pt;}
.y15{bottom:955.006667pt;}
.yc5{bottom:956.441333pt;}
.y1df{bottom:956.601333pt;}
.y15f{bottom:957.664000pt;}
.y211{bottom:958.461333pt;}
.y39{bottom:960.692000pt;}
.y29a{bottom:960.958667pt;}
.y1a9{bottom:961.117333pt;}
.y9b{bottom:961.914667pt;}
.y25b{bottom:969.088000pt;}
.yf1{bottom:969.885333pt;}
.y14{bottom:971.478667pt;}
.y65{bottom:972.382667pt;}
.y1de{bottom:973.073333pt;}
.y15e{bottom:974.136000pt;}
.y210{bottom:974.401333pt;}
.y38{bottom:976.633333pt;}
.y299{bottom:976.898667pt;}
.y1a8{bottom:977.057333pt;}
.y11c{bottom:977.854667pt;}
.y9a{bottom:985.825333pt;}
.y13{bottom:987.418667pt;}
.y64{bottom:988.322667pt;}
.y1dd{bottom:989.544000pt;}
.y15d{bottom:990.076000pt;}
.y20f{bottom:990.341333pt;}
.y1a7{bottom:992.998667pt;}
.yf0{bottom:993.794667pt;}
.y298{bottom:1001.605333pt;}
.y99{bottom:1001.765333pt;}
.y12{bottom:1003.358667pt;}
.y37{bottom:1004.262667pt;}
.y1dc{bottom:1006.016000pt;}
.y15c{bottom:1006.546667pt;}
.y1a6{bottom:1008.938667pt;}
.y11b{bottom:1009.734667pt;}
.y20e{bottom:1015.049333pt;}
.y98{bottom:1017.705333pt;}
.y11{bottom:1019.300000pt;}
.y15b{bottom:1022.488000pt;}
.y36{bottom:1033.645333pt;}
.y10{bottom:1035.770667pt;}
.yf{bottom:1084.920000pt;}
.hc{height:29.318150pt;}
.h5{height:32.644438pt;}
.h4{height:36.271334pt;}
.he{height:36.874903pt;}
.h6{height:38.803766pt;}
.h3{height:43.114982pt;}
.ha{height:43.408282pt;}
.h7{height:43.525522pt;}
.h8{height:52.052927pt;}
.hd{height:52.230864pt;}
.h9{height:52.275836pt;}
.h2{height:62.677037pt;}
.hb{height:111.581493pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:75.590667pt;}
.x1{left:77.940000pt;}
.x23{left:84.092000pt;}
.x1c{left:87.350667pt;}
.x18{left:89.669333pt;}
.x11{left:90.793333pt;}
.x1d{left:93.125333pt;}
.x13{left:96.997333pt;}
.x17{left:101.020000pt;}
.xd{left:102.444000pt;}
.x12{left:106.010667pt;}
.x1f{left:108.800000pt;}
.x26{left:110.149333pt;}
.x10{left:112.997333pt;}
.xf{left:117.520000pt;}
.x1e{left:120.010667pt;}
.x20{left:125.270667pt;}
.xc{left:126.792000pt;}
.xe{left:129.608000pt;}
.xa{left:136.302667pt;}
.xb{left:138.096000pt;}
.x27{left:148.714667pt;}
.x1a{left:152.214667pt;}
.x28{left:158.120000pt;}
.x16{left:168.148000pt;}
.x21{left:182.417333pt;}
.x25{left:207.796000pt;}
.x24{left:213.949333pt;}
.x14{left:268.261333pt;}
.x9{left:272.906667pt;}
.x15{left:288.712000pt;}
.x6{left:301.381333pt;}
.x2{left:322.057333pt;}
.x19{left:325.621333pt;}
.x3{left:328.646667pt;}
.x4{left:333.561333pt;}
.x7{left:336.132000pt;}
.x22{left:349.724000pt;}
.x1b{left:358.992000pt;}
.x5{left:364.830667pt;}
}




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