
    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_36ae588dcce867bbbb973bf3.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_c8e1856f69d6d41941a62474.woff')format("woff");}.ff2{font-family:ff2;line-height:1.132457;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_bfe3642526f502422120f728.woff')format("woff");}.ff3{font-family:ff3;line-height:1.132457;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_5158988c1e0efbc1eab0d41b.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_e22d9809a2bfe21cd20db754.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_2507ece28e2822f7ab23666a.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:-50.214000px;}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.002342px;}
.ls14{letter-spacing:0.013963px;}
.ls5{letter-spacing:0.054994px;}
.ls8{letter-spacing:2.507715px;}
.ls1{letter-spacing:3.006438px;}
.ls2{letter-spacing:3.010332px;}
.lsc{letter-spacing:3.695580px;}
.ls11{letter-spacing:10.705699px;}
.ls10{letter-spacing:11.328682px;}
.ls4{letter-spacing:11.383675px;}
.ls1c{letter-spacing:12.043598px;}
.ls18{letter-spacing:12.363144px;}
.ls13{letter-spacing:12.428554px;}
.ls1a{letter-spacing:12.923496px;}
.ls12{letter-spacing:13.802304px;}
.ls1d{letter-spacing:14.738285px;}
.ls6{letter-spacing:15.123240px;}
.ls17{letter-spacing:15.216470px;}
.ls16{letter-spacing:18.481848px;}
.ls19{letter-spacing:18.532843px;}
.ls1b{letter-spacing:19.412741px;}
.ls3{letter-spacing:26.286941px;}
.lsf{letter-spacing:29.861525px;}
.ls7{letter-spacing:32.394696px;}
.lsa{letter-spacing:35.040696px;}
.ls9{letter-spacing:133.452696px;}
.lse{letter-spacing:136.254696px;}
.lsb{letter-spacing:139.566696px;}
.lsd{letter-spacing:229.776696px;}
.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;}
}
.ws1b{word-spacing:-16.630110px;}
.ws7{word-spacing:-12.373560px;}
.ws2{word-spacing:-11.548656px;}
.ws4{word-spacing:-10.393866px;}
.ws1a{word-spacing:-9.898875px;}
.ws5f{word-spacing:-3.959550px;}
.ws86{word-spacing:-3.024648px;}
.ws85{word-spacing:-2.969654px;}
.ws2a{word-spacing:-2.859667px;}
.wsc1{word-spacing:-2.694686px;}
.wsdc{word-spacing:-2.584699px;}
.ws98{word-spacing:-2.529706px;}
.ws62{word-spacing:-2.419725px;}
.ws65{word-spacing:-2.331735px;}
.ws59{word-spacing:-2.287740px;}
.wscd{word-spacing:-2.144750px;}
.wsce{word-spacing:-2.089757px;}
.wsaa{word-spacing:-2.034763px;}
.wsa7{word-spacing:-1.924776px;}
.ws2d{word-spacing:-1.869782px;}
.wsa{word-spacing:-1.814789px;}
.wsa6{word-spacing:-1.810555px;}
.ws88{word-spacing:-1.721290px;}
.ws87{word-spacing:-1.704802px;}
.ws61{word-spacing:-1.671810px;}
.ws4c{word-spacing:-1.649808px;}
.wsd5{word-spacing:-1.594814px;}
.ws63{word-spacing:-1.583820px;}
.ws80{word-spacing:-1.539821px;}
.wsc4{word-spacing:-1.484827px;}
.wsc2{word-spacing:-1.429834px;}
.ws6c{word-spacing:-1.407840px;}
.wsc7{word-spacing:-1.374840px;}
.ws58{word-spacing:-1.363845px;}
.ws7d{word-spacing:-1.319846px;}
.ws79{word-spacing:-1.264853px;}
.wsa0{word-spacing:-1.209859px;}
.wsa2{word-spacing:-1.186555px;}
.ws91{word-spacing:-1.154866px;}
.ws81{word-spacing:-1.099872px;}
.ws60{word-spacing:-1.055880px;}
.ws4b{word-spacing:-1.044878px;}
.ws68{word-spacing:-1.011885px;}
.ws3c{word-spacing:-0.989885px;}
.ws84{word-spacing:-0.934891px;}
.ws18{word-spacing:-0.879898px;}
.wse{word-spacing:-0.824904px;}
.ws37{word-spacing:-0.769910px;}
.ws3a{word-spacing:-0.714917px;}
.ws9d{word-spacing:-0.659923px;}
.ws40{word-spacing:-0.604930px;}
.ws5a{word-spacing:-0.571935px;}
.ws17{word-spacing:-0.549936px;}
.ws57{word-spacing:-0.527940px;}
.wsa9{word-spacing:-0.494942px;}
.ws83{word-spacing:-0.448555px;}
.ws7e{word-spacing:-0.439949px;}
.ws27{word-spacing:-0.384955px;}
.ws89{word-spacing:-0.354744px;}
.wsb7{word-spacing:-0.329962px;}
.ws7b{word-spacing:-0.274968px;}
.ws48{word-spacing:-0.219974px;}
.ws19{word-spacing:-0.179327px;}
.ws36{word-spacing:-0.164981px;}
.wsbe{word-spacing:-0.109987px;}
.ws0{word-spacing:-0.095029px;}
.ws26{word-spacing:-0.079191px;}
.ws6{word-spacing:-0.065992px;}
.wsec{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.054994px;}
.ws5{word-spacing:-0.049495px;}
.wsa4{word-spacing:-0.022555px;}
.wsa5{word-spacing:-0.009730px;}
.ws1{word-spacing:0.000000px;}
.ws24{word-spacing:0.054994px;}
.wsa3{word-spacing:0.107304px;}
.wsb6{word-spacing:0.109987px;}
.ws82{word-spacing:0.164981px;}
.ws93{word-spacing:0.219974px;}
.wsd6{word-spacing:0.274968px;}
.wsb{word-spacing:0.329962px;}
.ws75{word-spacing:0.384955px;}
.ws8a{word-spacing:0.439949px;}
.ws8b{word-spacing:0.473189px;}
.ws3f{word-spacing:0.494942px;}
.ws3e{word-spacing:0.659923px;}
.ws28{word-spacing:0.714917px;}
.ws7f{word-spacing:0.769910px;}
.wsb3{word-spacing:0.788376px;}
.wsb1{word-spacing:0.794626px;}
.wsb2{word-spacing:0.803242px;}
.ws4f{word-spacing:0.824904px;}
.ws42{word-spacing:0.879898px;}
.wsb4{word-spacing:0.885072px;}
.wsd0{word-spacing:0.934891px;}
.wsd4{word-spacing:0.989885px;}
.wsd9{word-spacing:1.044878px;}
.ws5e{word-spacing:1.154866px;}
.wsa8{word-spacing:1.209859px;}
.ws32{word-spacing:1.264853px;}
.wsba{word-spacing:1.319846px;}
.ws8e{word-spacing:1.374840px;}
.ws8f{word-spacing:1.429834px;}
.ws15{word-spacing:1.484827px;}
.ws16{word-spacing:1.539821px;}
.ws76{word-spacing:1.594814px;}
.wsc9{word-spacing:1.649808px;}
.ws95{word-spacing:1.679962px;}
.ws2b{word-spacing:1.704802px;}
.ws7c{word-spacing:1.759795px;}
.ws3b{word-spacing:1.814789px;}
.ws9c{word-spacing:1.869782px;}
.ws8c{word-spacing:1.979770px;}
.ws73{word-spacing:2.023770px;}
.ws3d{word-spacing:2.034763px;}
.ws90{word-spacing:2.089757px;}
.ws99{word-spacing:2.144750px;}
.ws9a{word-spacing:2.199744px;}
.ws50{word-spacing:2.254738px;}
.ws6b{word-spacing:2.287740px;}
.ws7a{word-spacing:2.309731px;}
.ws12{word-spacing:2.364725px;}
.ws9b{word-spacing:2.419718px;}
.wsae{word-spacing:2.529706px;}
.wsad{word-spacing:2.584699px;}
.wsca{word-spacing:2.639693px;}
.ws4d{word-spacing:2.694686px;}
.ws4e{word-spacing:2.749680px;}
.ws35{word-spacing:2.804674px;}
.ws2e{word-spacing:2.859667px;}
.ws51{word-spacing:2.914661px;}
.wsbf{word-spacing:2.969654px;}
.wscf{word-spacing:3.079642px;}
.ws97{word-spacing:3.134635px;}
.wsc0{word-spacing:3.189629px;}
.ws52{word-spacing:3.244622px;}
.wsd3{word-spacing:3.299616px;}
.ws77{word-spacing:3.354610px;}
.wsc5{word-spacing:3.409603px;}
.ws45{word-spacing:3.464597px;}
.ws39{word-spacing:3.574584px;}
.ws30{word-spacing:3.629578px;}
.ws33{word-spacing:3.684571px;}
.ws9f{word-spacing:3.739565px;}
.ws69{word-spacing:3.739575px;}
.wsbb{word-spacing:3.794558px;}
.ws92{word-spacing:3.849552px;}
.wsc8{word-spacing:4.014533px;}
.ws13{word-spacing:4.124520px;}
.ws78{word-spacing:4.179514px;}
.wsac{word-spacing:4.454482px;}
.ws49{word-spacing:4.564469px;}
.wscc{word-spacing:4.619462px;}
.wsab{word-spacing:4.674456px;}
.wscb{word-spacing:4.729450px;}
.wsed{word-spacing:4.784443px;}
.ws2f{word-spacing:4.894430px;}
.wsc3{word-spacing:4.949424px;}
.wsd8{word-spacing:5.059411px;}
.wsd7{word-spacing:5.114405px;}
.ws5d{word-spacing:5.169398px;}
.ws9e{word-spacing:5.224392px;}
.ws31{word-spacing:5.334379px;}
.ws4a{word-spacing:5.389373px;}
.wsd1{word-spacing:5.444366px;}
.wsb9{word-spacing:5.499360px;}
.wsb8{word-spacing:5.554354px;}
.wsb5{word-spacing:5.719334px;}
.ws34{word-spacing:5.829322px;}
.ws47{word-spacing:5.884315px;}
.ws8{word-spacing:5.916610px;}
.ws11{word-spacing:5.951996px;}
.ws9{word-spacing:5.958405px;}
.ws38{word-spacing:5.994302px;}
.ws96{word-spacing:6.049296px;}
.ws41{word-spacing:6.104290px;}
.wsa1{word-spacing:6.159283px;}
.wsd2{word-spacing:6.324264px;}
.ws53{word-spacing:6.544238px;}
.ws54{word-spacing:6.599232px;}
.ws55{word-spacing:6.654226px;}
.ws94{word-spacing:7.039181px;}
.wsc6{word-spacing:7.149168px;}
.ws22{word-spacing:7.204162px;}
.ws46{word-spacing:7.314149px;}
.wsda{word-spacing:7.424136px;}
.wsd{word-spacing:7.534123px;}
.wsf{word-spacing:7.589117px;}
.wsdb{word-spacing:7.919078px;}
.wsaf{word-spacing:8.524008px;}
.ws10{word-spacing:9.513893px;}
.ws14{word-spacing:12.868502px;}
.ws56{word-spacing:12.890535px;}
.ws1e{word-spacing:13.913381px;}
.ws29{word-spacing:13.968374px;}
.ws20{word-spacing:16.333099px;}
.ws8d{word-spacing:17.487965px;}
.wsb0{word-spacing:17.550528px;}
.ws6f{word-spacing:17.554005px;}
.wseb{word-spacing:18.311909px;}
.wse3{word-spacing:18.334574px;}
.wsea{word-spacing:18.339101px;}
.wse9{word-spacing:18.353880px;}
.ws1d{word-spacing:18.367862px;}
.ws6e{word-spacing:19.665765px;}
.ws21{word-spacing:20.017670px;}
.ws5c{word-spacing:22.569435px;}
.ws71{word-spacing:25.033155px;}
.wsdf{word-spacing:29.283034px;}
.ws74{word-spacing:29.688612px;}
.ws1f{word-spacing:30.136493px;}
.ws23{word-spacing:33.271128px;}
.wse5{word-spacing:36.102240px;}
.ws2c{word-spacing:36.185789px;}
.ws1c{word-spacing:36.570744px;}
.wse2{word-spacing:46.331050px;}
.ws44{word-spacing:49.296173px;}
.ws43{word-spacing:59.076486px;}
.wsbd{word-spacing:61.759819px;}
.wse0{word-spacing:63.269078px;}
.wsdd{word-spacing:66.733675px;}
.wse1{word-spacing:74.982715px;}
.wse7{word-spacing:75.477658px;}
.wse8{word-spacing:90.105955px;}
.wse4{word-spacing:95.330347px;}
.wse6{word-spacing:115.842960px;}
.wsde{word-spacing:122.277211px;}
.ws5b{word-spacing:127.278612px;}
.wsbc{word-spacing:127.333819px;}
.ws72{word-spacing:130.686612px;}
.ws6a{word-spacing:130.794612px;}
.ws64{word-spacing:133.392612px;}
.ws70{word-spacing:224.292612px;}
.ws6d{word-spacing:226.674612px;}
.ws66{word-spacing:230.862612px;}
.ws67{word-spacing:335.388612px;}
.wsc{word-spacing:451.607443px;}
.ws25{word-spacing:2538.851856px;}
._2f{margin-left:-25.672777px;}
._44{margin-left:-7.047999px;}
._29{margin-left:-5.499360px;}
._1{margin-left:-3.913780px;}
._4{margin-left:-2.896432px;}
._0{margin-left:-1.805555px;}
._3{width:1.090638px;}
._4a{width:2.111760px;}
._4b{width:3.128758px;}
._6{width:4.132040px;}
._49{width:5.293358px;}
._48{width:6.863220px;}
._4f{width:8.556516px;}
._4c{width:9.557164px;}
._3c{width:10.769512px;}
._11{width:12.428554px;}
._5{width:13.808993px;}
._2{width:15.398208px;}
._3e{width:17.194768px;}
._22{width:18.519677px;}
._20{width:20.145163px;}
._1f{width:21.704243px;}
._23{width:23.262293px;}
._33{width:25.187069px;}
._40{width:26.717656px;}
._21{width:28.074267px;}
._3f{width:29.311589px;}
._43{width:30.447986px;}
._31{width:31.456339px;}
._3a{width:33.051154px;}
._2b{width:35.021689px;}
._47{width:36.112567px;}
._46{width:37.597154px;}
._36{width:39.036222px;}
._32{width:40.530283px;}
._50{width:41.620921px;}
._4e{width:42.732506px;}
._3b{width:44.434829px;}
._27{width:48.119400px;}
._42{width:50.685631px;}
._2e{width:51.748978px;}
._2c{width:53.499778px;}
._4d{width:58.017037px;}
._3d{width:62.692704px;}
._34{width:65.414853px;}
._37{width:66.817224px;}
._17{width:72.185749px;}
._1e{width:73.588705px;}
._75{width:75.706596px;}
._73{width:83.149100px;}
._39{width:91.839312px;}
._28{width:94.836429px;}
._2a{width:96.009592px;}
._12{width:119.389561px;}
._18{width:125.977259px;}
._19{width:183.889364px;}
._1b{width:204.081250px;}
._1d{width:213.466687px;}
._1c{width:215.675665px;}
._16{width:241.895999px;}
._1a{width:266.645738px;}
._72{width:286.590526px;}
._74{width:295.447486px;}
._60{width:319.025377px;}
._61{width:337.625899px;}
._14{width:339.649708px;}
._71{width:351.534568px;}
._52{width:366.657994px;}
._62{width:369.983377px;}
._15{width:374.167220px;}
._5e{width:376.529377px;}
._65{width:384.033725px;}
._63{width:388.846008px;}
._5f{width:395.058523px;}
._5a{width:401.999726px;}
._6a{width:405.222998px;}
._66{width:407.883566px;}
._13{width:415.137452px;}
._6f{width:416.729122px;}
._6b{width:417.742282px;}
._8{width:428.281466px;}
._6d{width:429.563184px;}
._64{width:433.102080px;}
._67{width:441.390743px;}
._55{width:444.873371px;}
._59{width:449.177252px;}
._5d{width:451.786282px;}
._53{width:454.647371px;}
._6e{width:457.002040px;}
._69{width:458.993688px;}
._70{width:460.656011px;}
._6c{width:469.410040px;}
._5c{width:477.370282px;}
._5b{width:481.089875px;}
._58{width:483.064944px;}
._68{width:490.093691px;}
._57{width:511.994802px;}
._56{width:525.384619px;}
._54{width:534.858379px;}
._f{width:645.235057px;}
._b{width:860.323955px;}
._a{width:883.684976px;}
._9{width:930.180501px;}
._10{width:951.771413px;}
._e{width:1088.314181px;}
._d{width:1104.553803px;}
._c{width:1185.116392px;}
._51{width:2030.752120px;}
._24{width:2041.030120px;}
._41{width:2045.338120px;}
._7{width:2057.050120px;}
._45{width:2059.924120px;}
._38{width:2135.968742px;}
._25{width:2350.479126px;}
._2d{width:2439.733739px;}
._26{width:2450.512484px;}
._30{width:2499.832749px;}
._35{width:2538.191933px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.496800px;}
.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;}
.fsa{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;}
.y16d{bottom:85.437000px;}
.y1bf{bottom:86.494500px;}
.y1df{bottom:87.973500px;}
.y70{bottom:89.217000px;}
.y3b{bottom:89.379000px;}
.yd9{bottom:94.477500px;}
.y3a{bottom:104.238000px;}
.y1be{bottom:104.427000px;}
.y153{bottom:104.473500px;}
.y1de{bottom:105.906000px;}
.y6f{bottom:107.149500px;}
.y141{bottom:107.202000px;}
.y16c{bottom:112.336500px;}
.yd8{bottom:112.410000px;}
.y104{bottom:116.347500px;}
.y152{bottom:122.406000px;}
.y1e9{bottom:122.407500px;}
.y1dd{bottom:123.838500px;}
.y6e{bottom:125.082000px;}
.y140{bottom:125.134500px;}
.y39{bottom:125.440500px;}
.y1bd{bottom:131.326500px;}
.y1e3{bottom:131.880000px;}
.y120{bottom:132.130500px;}
.y103{bottom:134.280000px;}
.y16b{bottom:139.236000px;}
.yd7{bottom:140.206500px;}
.y1e8{bottom:140.341500px;}
.y1dc{bottom:141.771000px;}
.y6d{bottom:143.016000px;}
.y13f{bottom:143.067000px;}
.y1bc{bottom:149.259000px;}
.y1e2{bottom:149.812500px;}
.y11f{bottom:150.064500px;}
.y151{bottom:150.201000px;}
.y1e7{bottom:158.274000px;}
.y20b{bottom:158.557500px;}
.ye{bottom:158.563500px;}
.y1db{bottom:159.703500px;}
.y6c{bottom:160.948500px;}
.y102{bottom:161.179500px;}
.y16a{bottom:166.135500px;}
.y1bb{bottom:167.191500px;}
.y13e{bottom:169.966500px;}
.y38{bottom:170.535000px;}
.y20a{bottom:176.490000px;}
.yd{bottom:176.496000px;}
.y11e{bottom:176.962500px;}
.y1da{bottom:177.636000px;}
.y6b{bottom:178.881000px;}
.yd6{bottom:182.497500px;}
.y1ba{bottom:185.124000px;}
.y13d{bottom:187.899000px;}
.y101{bottom:188.077500px;}
.y37{bottom:188.467500px;}
.y150{bottom:189.504000px;}
.y1a2{bottom:192.183000px;}
.y169{bottom:193.033500px;}
.yc{bottom:194.428500px;}
.y11d{bottom:194.895000px;}
.y1d9{bottom:195.570000px;}
.y6a{bottom:196.813500px;}
.yd5{bottom:200.430000px;}
.y1b9{bottom:203.056500px;}
.y13c{bottom:205.831500px;}
.y36{bottom:206.400000px;}
.y14f{bottom:207.436500px;}
.y209{bottom:209.545500px;}
.y1a1{bottom:210.115500px;}
.y168{bottom:210.966000px;}
.yb{bottom:212.362500px;}
.y11c{bottom:212.829000px;}
.y69{bottom:214.746000px;}
.y100{bottom:214.977000px;}
.yd4{bottom:218.362500px;}
.y1b8{bottom:220.990500px;}
.y1d8{bottom:222.468000px;}
.y35{bottom:224.332500px;}
.y1a0{bottom:228.048000px;}
.ya{bottom:228.799500px;}
.y11b{bottom:230.761500px;}
.y68{bottom:232.680000px;}
.y13b{bottom:232.731000px;}
.y14e{bottom:234.336000px;}
.yd3{bottom:236.296500px;}
.y167{bottom:237.865500px;}
.y1d7{bottom:240.400500px;}
.yff{bottom:241.876500px;}
.y34{bottom:242.265000px;}
.y9{bottom:245.238000px;}
.y1b7{bottom:247.888500px;}
.y11a{bottom:248.694000px;}
.y67{bottom:250.612500px;}
.y13a{bottom:250.663500px;}
.y14d{bottom:252.268500px;}
.y166{bottom:255.798000px;}
.y1d6{bottom:258.334500px;}
.y208{bottom:259.459500px;}
.y8{bottom:261.676500px;}
.y66{bottom:268.545000px;}
.y139{bottom:268.596000px;}
.yfe{bottom:268.776000px;}
.y33{bottom:269.164500px;}
.yd2{bottom:272.161500px;}
.y1b6{bottom:274.788000px;}
.y119{bottom:275.593500px;}
.y18d{bottom:276.141000px;}
.y1d5{bottom:276.267000px;}
.y207{bottom:277.392000px;}
.y14c{bottom:279.168000px;}
.y165{bottom:282.697500px;}
.yd1{bottom:286.357500px;}
.y65{bottom:286.477500px;}
.y138{bottom:286.530000px;}
.y32{bottom:287.097000px;}
.y1b5{bottom:292.720500px;}
.y118{bottom:293.526000px;}
.y18c{bottom:294.073500px;}
.y1d4{bottom:294.199500px;}
.yfd{bottom:295.674000px;}
.yd0{bottom:300.555000px;}
.y206{bottom:304.291500px;}
.y64{bottom:304.410000px;}
.y31{bottom:305.029500px;}
.y14b{bottom:306.067500px;}
.y164{bottom:309.597000px;}
.y1b4{bottom:310.654500px;}
.y117{bottom:311.458500px;}
.y18b{bottom:312.006000px;}
.y137{bottom:314.325000px;}
.ycf{bottom:314.752500px;}
.y1d3{bottom:321.099000px;}
.y205{bottom:322.224000px;}
.y63{bottom:322.342500px;}
.yfc{bottom:322.573500px;}
.y30{bottom:322.963500px;}
.yce{bottom:328.948500px;}
.y116{bottom:329.391000px;}
.y14a{bottom:332.967000px;}
.y163{bottom:336.496500px;}
.y1b3{bottom:337.552500px;}
.y1d2{bottom:339.031500px;}
.y18a{bottom:339.802500px;}
.y62{bottom:340.276500px;}
.y136{bottom:342.121500px;}
.ycd{bottom:343.146000px;}
.y115{bottom:347.323500px;}
.y204{bottom:349.122000px;}
.yfb{bottom:349.473000px;}
.y1b2{bottom:355.485000px;}
.y1d1{bottom:356.964000px;}
.ycc{bottom:357.342000px;}
.y61{bottom:358.209000px;}
.y149{bottom:359.865000px;}
.y162{bottom:363.394500px;}
.y114{bottom:365.257500px;}
.y203{bottom:367.056000px;}
.ycb{bottom:371.539500px;}
.y1b1{bottom:373.419000px;}
.y60{bottom:376.141500px;}
.yfa{bottom:376.372500px;}
.y189{bottom:382.093500px;}
.y1d0{bottom:383.863500px;}
.y135{bottom:384.412500px;}
.y202{bottom:384.988500px;}
.yca{bottom:385.735500px;}
.y148{bottom:386.764500px;}
.y161{bottom:390.294000px;}
.y113{bottom:392.155500px;}
.y5f{bottom:394.074000px;}
.yf9{bottom:394.305000px;}
.yc9{bottom:399.933000px;}
.y188{bottom:400.026000px;}
.y134{bottom:402.345000px;}
.y201{bottom:402.921000px;}
.y147{bottom:404.697000px;}
.y112{bottom:410.089500px;}
.y1cf{bottom:410.763000px;}
.y1b0{bottom:411.577500px;}
.y5e{bottom:412.006500px;}
.yf8{bottom:412.237500px;}
.yc8{bottom:414.129000px;}
.y160{bottom:417.193500px;}
.y187{bottom:417.958500px;}
.y200{bottom:420.853500px;}
.y2f{bottom:422.380500px;}
.y111{bottom:428.022000px;}
.yc7{bottom:428.326500px;}
.y1ce{bottom:428.695500px;}
.y133{bottom:429.244500px;}
.y1af{bottom:429.510000px;}
.y5d{bottom:429.939000px;}
.yf7{bottom:430.170000px;}
.y146{bottom:431.596500px;}
.y15f{bottom:435.126000px;}
.y1ff{bottom:438.786000px;}
.y2e{bottom:440.313000px;}
.yc6{bottom:442.522500px;}
.y110{bottom:445.954500px;}
.y1cd{bottom:446.628000px;}
.y132{bottom:447.177000px;}
.y5c{bottom:447.873000px;}
.y145{bottom:449.529000px;}
.y15e{bottom:453.058500px;}
.yc5{bottom:456.720000px;}
.yf6{bottom:457.069500px;}
.y2d{bottom:458.844000px;}
.y1cc{bottom:464.560500px;}
.y131{bottom:465.109500px;}
.y5b{bottom:465.805500px;}
.y144{bottom:467.461500px;}
.y186{bottom:468.171000px;}
.yc4{bottom:470.916000px;}
.y15d{bottom:470.991000px;}
.y10f{bottom:473.749500px;}
.y1fe{bottom:474.652500px;}
.yf5{bottom:475.002000px;}
.y130{bottom:483.042000px;}
.y5a{bottom:483.738000px;}
.yc3{bottom:485.113500px;}
.y15c{bottom:488.925000px;}
.y1cb{bottom:492.357000px;}
.y1fd{bottom:492.585000px;}
.yf4{bottom:492.934500px;}
.yc2{bottom:499.309500px;}
.y185{bottom:501.048000px;}
.y12f{bottom:509.941500px;}
.yf3{bottom:510.867000px;}
.y7{bottom:511.408500px;}
.yc1{bottom:513.507000px;}
.y10e{bottom:516.042000px;}
.y15b{bottom:516.720000px;}
.y59{bottom:516.793500px;}
.y143{bottom:517.674000px;}
.y184{bottom:518.980500px;}
.y1fc{bottom:519.484500px;}
.yc0{bottom:527.703000px;}
.y12e{bottom:527.874000px;}
.y6{bottom:529.341000px;}
.y10d{bottom:533.974500px;}
.y1ca{bottom:534.648000px;}
.y183{bottom:536.913000px;}
.y1fb{bottom:537.417000px;}
.yf2{bottom:537.766500px;}
.ybf{bottom:541.900500px;}
.y12d{bottom:545.806500px;}
.y5{bottom:547.273500px;}
.y1c9{bottom:552.580500px;}
.y182{bottom:554.845500px;}
.y1fa{bottom:555.349500px;}
.yf1{bottom:555.699000px;}
.y15a{bottom:556.023000px;}
.ybe{bottom:556.096500px;}
.y10c{bottom:560.874000px;}
.y58{bottom:566.707500px;}
.ybd{bottom:570.294000px;}
.y1c8{bottom:570.513000px;}
.y12c{bottom:572.706000px;}
.y181{bottom:572.778000px;}
.y2c{bottom:572.875500px;}
.y1f9{bottom:573.282000px;}
.y159{bottom:573.955500px;}
.y10b{bottom:578.806500px;}
.yf0{bottom:582.598500px;}
.y1c7{bottom:588.445500px;}
.y12b{bottom:590.638500px;}
.y180{bottom:590.712000px;}
.y2b{bottom:590.808000px;}
.y158{bottom:591.888000px;}
.ybc{bottom:593.457000px;}
.y10a{bottom:596.739000px;}
.y57{bottom:597.790500px;}
.y1f8{bottom:600.181500px;}
.yef{bottom:600.531000px;}
.y1c6{bottom:606.379500px;}
.y12a{bottom:608.572500px;}
.y17f{bottom:608.644500px;}
.y2a{bottom:608.740500px;}
.ybb{bottom:611.389500px;}
.y1f7{bottom:618.114000px;}
.y157{bottom:618.787500px;}
.y109{bottom:623.638500px;}
.y1c5{bottom:624.312000px;}
.y129{bottom:626.505000px;}
.y17e{bottom:626.577000px;}
.y29{bottom:626.673000px;}
.yee{bottom:627.430500px;}
.y56{bottom:628.873500px;}
.yba{bottom:629.322000px;}
.y26{bottom:635.640000px;}
.y1f6{bottom:636.046500px;}
.y156{bottom:636.720000px;}
.ya5{bottom:637.690500px;}
.y108{bottom:641.571000px;}
.y1c4{bottom:642.244500px;}
.y128{bottom:644.437500px;}
.y17d{bottom:644.509500px;}
.y28{bottom:644.605500px;}
.y55{bottom:646.806000px;}
.yb9{bottom:647.254500px;}
.y1f5{bottom:653.979000px;}
.yed{bottom:654.330000px;}
.ya4{bottom:655.623000px;}
.y1c3{bottom:660.177000px;}
.y17c{bottom:662.442000px;}
.y27{bottom:662.538000px;}
.y54{bottom:664.738500px;}
.y127{bottom:671.337000px;}
.y1f4{bottom:671.913000px;}
.yec{bottom:672.262500px;}
.ya3{bottom:673.555500px;}
.ye9{bottom:674.334000px;}
.y1e6{bottom:674.763000px;}
.y19f{bottom:677.590500px;}
.y17b{bottom:680.374500px;}
.y25{bottom:681.069000px;}
.y53{bottom:682.672500px;}
.yb8{bottom:683.121000px;}
.y1e1{bottom:684.033000px;}
.y4{bottom:686.826000px;}
.y155{bottom:686.932500px;}
.y126{bottom:689.269500px;}
.y1f3{bottom:689.845500px;}
.y107{bottom:691.782000px;}
.ye8{bottom:692.266500px;}
.y1e5{bottom:692.697000px;}
.y19e{bottom:695.523000px;}
.yb7{bottom:697.317000px;}
.y17a{bottom:698.308500px;}
.y52{bottom:700.605000px;}
.ya2{bottom:701.352000px;}
.y1e0{bottom:701.965500px;}
.y3{bottom:704.758500px;}
.y125{bottom:707.202000px;}
.y1f2{bottom:707.778000px;}
.y106{bottom:709.714500px;}
.y1c2{bottom:710.389500px;}
.y1e4{bottom:710.629500px;}
.yb6{bottom:711.514500px;}
.y24{bottom:712.152000px;}
.yeb{bottom:713.122500px;}
.y19d{bottom:713.457000px;}
.y179{bottom:716.241000px;}
.y51{bottom:718.537500px;}
.ye7{bottom:719.164500px;}
.y2{bottom:722.691000px;}
.y124{bottom:725.134500px;}
.yb5{bottom:725.710500px;}
.y105{bottom:727.648500px;}
.y1c1{bottom:728.322000px;}
.y19c{bottom:731.389500px;}
.y178{bottom:734.173500px;}
.y1f1{bottom:735.573000px;}
.yb4{bottom:739.908000px;}
.y23{bottom:742.638000px;}
.ya1{bottom:743.643000px;}
.y8f{bottom:744.241500px;}
.ye6{bottom:746.064000px;}
.y1c0{bottom:746.254500px;}
.y19b{bottom:749.322000px;}
.y50{bottom:749.620500px;}
.y177{bottom:752.106000px;}
.y123{bottom:752.931000px;}
.yb3{bottom:754.104000px;}
.y22{bottom:760.570500px;}
.ya0{bottom:761.575500px;}
.y8e{bottom:762.174000px;}
.y19a{bottom:767.254500px;}
.y4f{bottom:767.553000px;}
.yb2{bottom:768.301500px;}
.y1f0{bottom:768.898500px;}
.y1e{bottom:769.537500px;}
.y176{bottom:770.038500px;}
.ye5{bottom:772.963500px;}
.y21{bottom:778.503000px;}
.y9f{bottom:779.509500px;}
.yb1{bottom:782.497500px;}
.y199{bottom:785.187000px;}
.y4e{bottom:785.487000px;}
.y1ef{bottom:786.831000px;}
.y175{bottom:787.971000px;}
.y8d{bottom:789.073500px;}
.y20{bottom:796.437000px;}
.yb0{bottom:796.695000px;}
.y9e{bottom:797.442000px;}
.ye4{bottom:799.863000px;}
.y122{bottom:803.142000px;}
.y4d{bottom:803.419500px;}
.y1ee{bottom:804.763500px;}
.y174{bottom:805.905000px;}
.y1{bottom:805.917000px;}
.y8c{bottom:807.006000px;}
.yaf{bottom:810.891000px;}
.y198{bottom:812.086500px;}
.y1f{bottom:814.369500px;}
.y9d{bottom:815.374500px;}
.y121{bottom:821.074500px;}
.y4c{bottom:821.352000px;}
.y173{bottom:823.837500px;}
.y8b{bottom:824.938500px;}
.yae{bottom:825.088500px;}
.ye3{bottom:826.761000px;}
.y197{bottom:830.019000px;}
.y1ed{bottom:832.560000px;}
.y1d{bottom:832.899000px;}
.y4b{bottom:839.284500px;}
.y172{bottom:841.770000px;}
.y8a{bottom:842.871000px;}
.y9c{bottom:843.169500px;}
.y142{bottom:843.250500px;}
.y196{bottom:847.951500px;}
.ye2{bottom:853.660500px;}
.y4a{bottom:857.217000px;}
.y171{bottom:859.702500px;}
.y89{bottom:860.803500px;}
.yad{bottom:862.447500px;}
.y195{bottom:865.885500px;}
.y49{bottom:875.149500px;}
.y170{bottom:877.635000px;}
.y88{bottom:878.736000px;}
.yac{bottom:880.380000px;}
.ye1{bottom:880.560000px;}
.y194{bottom:883.818000px;}
.y9b{bottom:885.462000px;}
.y48{bottom:893.083500px;}
.y16f{bottom:896.166000px;}
.y87{bottom:896.670000px;}
.y1ae{bottom:897.595500px;}
.y193{bottom:901.750500px;}
.y9a{bottom:903.394500px;}
.yab{bottom:907.279500px;}
.ye0{bottom:907.459500px;}
.y47{bottom:911.016000px;}
.y7b{bottom:918.487500px;}
.y192{bottom:919.683000px;}
.y99{bottom:921.327000px;}
.y86{bottom:923.568000px;}
.yaa{bottom:925.212000px;}
.y154{bottom:930.157500px;}
.y16e{bottom:932.629500px;}
.ydf{bottom:934.357500px;}
.y1ad{bottom:936.898500px;}
.y1ec{bottom:937.615500px;}
.y85{bottom:941.502000px;}
.y46{bottom:942.099000px;}
.ya9{bottom:943.146000px;}
.y191{bottom:946.582500px;}
.y1c{bottom:946.930500px;}
.y98{bottom:949.123500px;}
.y7a{bottom:951.543000px;}
.yde{bottom:952.291500px;}
.y1ac{bottom:954.831000px;}
.y1eb{bottom:955.548000px;}
.y84{bottom:959.434500px;}
.y45{bottom:960.031500px;}
.y190{bottom:964.515000px;}
.y1b{bottom:964.863000px;}
.yea{bottom:967.056000px;}
.ydd{bottom:970.224000px;}
.ya8{bottom:970.941000px;}
.y1ab{bottom:972.763500px;}
.y1ea{bottom:973.482000px;}
.y83{bottom:977.367000px;}
.y44{bottom:977.964000px;}
.y18f{bottom:982.447500px;}
.y1a{bottom:982.795500px;}
.ydc{bottom:988.156500px;}
.y1aa{bottom:990.697500px;}
.y97{bottom:991.414500px;}
.y82{bottom:995.299500px;}
.y43{bottom:995.898000px;}
.y18e{bottom:1000.380000px;}
.y19{bottom:1001.326500px;}
.y79{bottom:1001.457000px;}
.ydb{bottom:1006.089000px;}
.y1a9{bottom:1008.630000px;}
.y96{bottom:1009.347000px;}
.ya7{bottom:1013.232000px;}
.y78{bottom:1019.389500px;}
.y18{bottom:1019.922000px;}
.y81{bottom:1022.199000px;}
.y1a8{bottom:1026.562500px;}
.y42{bottom:1026.981000px;}
.y95{bottom:1027.279500px;}
.yda{bottom:1033.885500px;}
.y77{bottom:1037.322000px;}
.y17{bottom:1038.517500px;}
.y80{bottom:1040.131500px;}
.y41{bottom:1044.913500px;}
.y94{bottom:1045.212000px;}
.y1a7{bottom:1053.462000px;}
.y76{bottom:1055.254500px;}
.y16{bottom:1056.450000px;}
.y7f{bottom:1058.064000px;}
.y40{bottom:1062.846000px;}
.y93{bottom:1063.144500px;}
.ya6{bottom:1067.031000px;}
.y1a6{bottom:1071.394500px;}
.y75{bottom:1073.187000px;}
.y15{bottom:1074.382500px;}
.y7e{bottom:1075.996500px;}
.y3f{bottom:1080.778500px;}
.y92{bottom:1081.078500px;}
.y1a5{bottom:1089.327000px;}
.y74{bottom:1091.121000px;}
.y14{bottom:1092.913500px;}
.y7d{bottom:1093.930500px;}
.y3e{bottom:1098.712500px;}
.y91{bottom:1099.011000px;}
.y1a4{bottom:1107.259500px;}
.y73{bottom:1109.053500px;}
.y13{bottom:1110.846000px;}
.y7c{bottom:1111.863000px;}
.y90{bottom:1126.806000px;}
.y72{bottom:1126.986000px;}
.y12{bottom:1128.778500px;}
.y3d{bottom:1129.795500px;}
.y1a3{bottom:1135.056000px;}
.y71{bottom:1144.918500px;}
.y11{bottom:1146.712500px;}
.y3c{bottom:1162.851000px;}
.y10{bottom:1165.242000px;}
.yf{bottom:1220.535000px;}
.hb{height:33.299179px;}
.h5{height:36.724993px;}
.hd{height:39.175662px;}
.h4{height:40.805251px;}
.he{height:41.544042px;}
.h6{height:44.072820px;}
.h7{height:48.966212px;}
.h3{height:48.969444px;}
.hc{height:58.759722px;}
.h8{height:58.913012px;}
.h9{height:58.919012px;}
.h2{height:70.511666px;}
.ha{height:125.529180px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:70.275000px;}
.x20{left:73.921500px;}
.x8{left:85.039500px;}
.x1d{left:98.269500px;}
.x18{left:100.878000px;}
.x11{left:102.142500px;}
.x1e{left:104.766000px;}
.x13{left:109.122000px;}
.x17{left:113.647500px;}
.xd{left:115.249500px;}
.x24{left:118.116000px;}
.x12{left:119.262000px;}
.x23{left:122.400000px;}
.x10{left:127.122000px;}
.xf{left:132.210000px;}
.x1f{left:135.012000px;}
.xc{left:142.641000px;}
.xe{left:145.809000px;}
.xa{left:153.340500px;}
.xb{left:155.358000px;}
.x1a{left:171.241500px;}
.x16{left:189.166500px;}
.x28{left:213.502500px;}
.x31{left:223.426500px;}
.x29{left:229.732500px;}
.x2e{left:231.660000px;}
.x2d{left:232.780500px;}
.x2c{left:235.030500px;}
.x2a{left:237.048000px;}
.x27{left:238.459500px;}
.x2f{left:239.856000px;}
.x26{left:244.198500px;}
.x30{left:245.379000px;}
.x2b{left:246.850500px;}
.x1{left:249.025500px;}
.x1b{left:253.956000px;}
.x14{left:301.794000px;}
.x9{left:307.020000px;}
.x25{left:318.865500px;}
.x15{left:324.801000px;}
.x6{left:339.054000px;}
.x22{left:347.394000px;}
.x2{left:362.314500px;}
.x19{left:366.324000px;}
.x3{left:369.727500px;}
.x4{left:375.256500px;}
.x7{left:378.148500px;}
.x1c{left:403.866000px;}
.x5{left:410.434500px;}
@media print{
.v2{vertical-align:-44.634667pt;}
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.002082pt;}
.ls14{letter-spacing:0.012412pt;}
.ls5{letter-spacing:0.048883pt;}
.ls8{letter-spacing:2.229080pt;}
.ls1{letter-spacing:2.672389pt;}
.ls2{letter-spacing:2.675851pt;}
.lsc{letter-spacing:3.284960pt;}
.ls11{letter-spacing:9.516177pt;}
.ls10{letter-spacing:10.069939pt;}
.ls4{letter-spacing:10.118822pt;}
.ls1c{letter-spacing:10.705421pt;}
.ls18{letter-spacing:10.989461pt;}
.ls13{letter-spacing:11.047603pt;}
.ls1a{letter-spacing:11.487552pt;}
.ls12{letter-spacing:12.268715pt;}
.ls1d{letter-spacing:13.100698pt;}
.ls6{letter-spacing:13.442880pt;}
.ls17{letter-spacing:13.525751pt;}
.ls16{letter-spacing:16.428309pt;}
.ls19{letter-spacing:16.473638pt;}
.ls1b{letter-spacing:17.255770pt;}
.ls3{letter-spacing:23.366170pt;}
.lsf{letter-spacing:26.543578pt;}
.ls7{letter-spacing:28.795285pt;}
.lsa{letter-spacing:31.147285pt;}
.ls9{letter-spacing:118.624619pt;}
.lse{letter-spacing:121.115285pt;}
.lsb{letter-spacing:124.059285pt;}
.lsd{letter-spacing:204.245952pt;}
.ws1b{word-spacing:-14.782320pt;}
.ws7{word-spacing:-10.998720pt;}
.ws2{word-spacing:-10.265472pt;}
.ws4{word-spacing:-9.238992pt;}
.ws1a{word-spacing:-8.799000pt;}
.ws5f{word-spacing:-3.519600pt;}
.ws86{word-spacing:-2.688576pt;}
.ws85{word-spacing:-2.639693pt;}
.ws2a{word-spacing:-2.541926pt;}
.wsc1{word-spacing:-2.395277pt;}
.wsdc{word-spacing:-2.297510pt;}
.ws98{word-spacing:-2.248627pt;}
.ws62{word-spacing:-2.150867pt;}
.ws65{word-spacing:-2.072653pt;}
.ws59{word-spacing:-2.033547pt;}
.wscd{word-spacing:-1.906445pt;}
.wsce{word-spacing:-1.857562pt;}
.wsaa{word-spacing:-1.808678pt;}
.wsa7{word-spacing:-1.710912pt;}
.ws2d{word-spacing:-1.662029pt;}
.wsa{word-spacing:-1.613146pt;}
.wsa6{word-spacing:-1.609382pt;}
.ws88{word-spacing:-1.530035pt;}
.ws87{word-spacing:-1.515379pt;}
.ws61{word-spacing:-1.486053pt;}
.ws4c{word-spacing:-1.466496pt;}
.wsd5{word-spacing:-1.417613pt;}
.ws63{word-spacing:-1.407840pt;}
.ws80{word-spacing:-1.368730pt;}
.wsc4{word-spacing:-1.319846pt;}
.wsc2{word-spacing:-1.270963pt;}
.ws6c{word-spacing:-1.251413pt;}
.wsc7{word-spacing:-1.222080pt;}
.ws58{word-spacing:-1.212307pt;}
.ws7d{word-spacing:-1.173197pt;}
.ws79{word-spacing:-1.124314pt;}
.wsa0{word-spacing:-1.075430pt;}
.wsa2{word-spacing:-1.054716pt;}
.ws91{word-spacing:-1.026547pt;}
.ws81{word-spacing:-0.977664pt;}
.ws60{word-spacing:-0.938560pt;}
.ws4b{word-spacing:-0.928781pt;}
.ws68{word-spacing:-0.899453pt;}
.ws3c{word-spacing:-0.879898pt;}
.ws84{word-spacing:-0.831014pt;}
.ws18{word-spacing:-0.782131pt;}
.wse{word-spacing:-0.733248pt;}
.ws37{word-spacing:-0.684365pt;}
.ws3a{word-spacing:-0.635482pt;}
.ws9d{word-spacing:-0.586598pt;}
.ws40{word-spacing:-0.537715pt;}
.ws5a{word-spacing:-0.508387pt;}
.ws17{word-spacing:-0.488832pt;}
.ws57{word-spacing:-0.469280pt;}
.wsa9{word-spacing:-0.439949pt;}
.ws83{word-spacing:-0.398716pt;}
.ws7e{word-spacing:-0.391066pt;}
.ws27{word-spacing:-0.342182pt;}
.ws89{word-spacing:-0.315328pt;}
.wsb7{word-spacing:-0.293299pt;}
.ws7b{word-spacing:-0.244416pt;}
.ws48{word-spacing:-0.195533pt;}
.ws19{word-spacing:-0.159402pt;}
.ws36{word-spacing:-0.146650pt;}
.wsbe{word-spacing:-0.097766pt;}
.ws0{word-spacing:-0.084470pt;}
.ws26{word-spacing:-0.070392pt;}
.ws6{word-spacing:-0.058660pt;}
.wsec{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.048883pt;}
.ws5{word-spacing:-0.043995pt;}
.wsa4{word-spacing:-0.020049pt;}
.wsa5{word-spacing:-0.008649pt;}
.ws1{word-spacing:0.000000pt;}
.ws24{word-spacing:0.048883pt;}
.wsa3{word-spacing:0.095381pt;}
.wsb6{word-spacing:0.097766pt;}
.ws82{word-spacing:0.146650pt;}
.ws93{word-spacing:0.195533pt;}
.wsd6{word-spacing:0.244416pt;}
.wsb{word-spacing:0.293299pt;}
.ws75{word-spacing:0.342182pt;}
.ws8a{word-spacing:0.391066pt;}
.ws8b{word-spacing:0.420612pt;}
.ws3f{word-spacing:0.439949pt;}
.ws3e{word-spacing:0.586598pt;}
.ws28{word-spacing:0.635482pt;}
.ws7f{word-spacing:0.684365pt;}
.wsb3{word-spacing:0.700779pt;}
.wsb1{word-spacing:0.706334pt;}
.wsb2{word-spacing:0.713993pt;}
.ws4f{word-spacing:0.733248pt;}
.ws42{word-spacing:0.782131pt;}
.wsb4{word-spacing:0.786731pt;}
.wsd0{word-spacing:0.831014pt;}
.wsd4{word-spacing:0.879898pt;}
.wsd9{word-spacing:0.928781pt;}
.ws5e{word-spacing:1.026547pt;}
.wsa8{word-spacing:1.075430pt;}
.ws32{word-spacing:1.124314pt;}
.wsba{word-spacing:1.173197pt;}
.ws8e{word-spacing:1.222080pt;}
.ws8f{word-spacing:1.270963pt;}
.ws15{word-spacing:1.319846pt;}
.ws16{word-spacing:1.368730pt;}
.ws76{word-spacing:1.417613pt;}
.wsc9{word-spacing:1.466496pt;}
.ws95{word-spacing:1.493299pt;}
.ws2b{word-spacing:1.515379pt;}
.ws7c{word-spacing:1.564262pt;}
.ws3b{word-spacing:1.613146pt;}
.ws9c{word-spacing:1.662029pt;}
.ws8c{word-spacing:1.759795pt;}
.ws73{word-spacing:1.798907pt;}
.ws3d{word-spacing:1.808678pt;}
.ws90{word-spacing:1.857562pt;}
.ws99{word-spacing:1.906445pt;}
.ws9a{word-spacing:1.955328pt;}
.ws50{word-spacing:2.004211pt;}
.ws6b{word-spacing:2.033547pt;}
.ws7a{word-spacing:2.053094pt;}
.ws12{word-spacing:2.101978pt;}
.ws9b{word-spacing:2.150861pt;}
.wsae{word-spacing:2.248627pt;}
.wsad{word-spacing:2.297510pt;}
.wsca{word-spacing:2.346394pt;}
.ws4d{word-spacing:2.395277pt;}
.ws4e{word-spacing:2.444160pt;}
.ws35{word-spacing:2.493043pt;}
.ws2e{word-spacing:2.541926pt;}
.ws51{word-spacing:2.590810pt;}
.wsbf{word-spacing:2.639693pt;}
.wscf{word-spacing:2.737459pt;}
.ws97{word-spacing:2.786342pt;}
.wsc0{word-spacing:2.835226pt;}
.ws52{word-spacing:2.884109pt;}
.wsd3{word-spacing:2.932992pt;}
.ws77{word-spacing:2.981875pt;}
.wsc5{word-spacing:3.030758pt;}
.ws45{word-spacing:3.079642pt;}
.ws39{word-spacing:3.177408pt;}
.ws30{word-spacing:3.226291pt;}
.ws33{word-spacing:3.275174pt;}
.ws9f{word-spacing:3.324058pt;}
.ws69{word-spacing:3.324067pt;}
.wsbb{word-spacing:3.372941pt;}
.ws92{word-spacing:3.421824pt;}
.wsc8{word-spacing:3.568474pt;}
.ws13{word-spacing:3.666240pt;}
.ws78{word-spacing:3.715123pt;}
.wsac{word-spacing:3.959539pt;}
.ws49{word-spacing:4.057306pt;}
.wscc{word-spacing:4.106189pt;}
.wsab{word-spacing:4.155072pt;}
.wscb{word-spacing:4.203955pt;}
.wsed{word-spacing:4.252838pt;}
.ws2f{word-spacing:4.350605pt;}
.wsc3{word-spacing:4.399488pt;}
.wsd8{word-spacing:4.497254pt;}
.wsd7{word-spacing:4.546138pt;}
.ws5d{word-spacing:4.595021pt;}
.ws9e{word-spacing:4.643904pt;}
.ws31{word-spacing:4.741670pt;}
.ws4a{word-spacing:4.790554pt;}
.wsd1{word-spacing:4.839437pt;}
.wsb9{word-spacing:4.888320pt;}
.wsb8{word-spacing:4.937203pt;}
.wsb5{word-spacing:5.083853pt;}
.ws34{word-spacing:5.181619pt;}
.ws47{word-spacing:5.230502pt;}
.ws8{word-spacing:5.259209pt;}
.ws11{word-spacing:5.290663pt;}
.ws9{word-spacing:5.296360pt;}
.ws38{word-spacing:5.328269pt;}
.ws96{word-spacing:5.377152pt;}
.ws41{word-spacing:5.426035pt;}
.wsa1{word-spacing:5.474918pt;}
.wsd2{word-spacing:5.621568pt;}
.ws53{word-spacing:5.817101pt;}
.ws54{word-spacing:5.865984pt;}
.ws55{word-spacing:5.914867pt;}
.ws94{word-spacing:6.257050pt;}
.wsc6{word-spacing:6.354816pt;}
.ws22{word-spacing:6.403699pt;}
.ws46{word-spacing:6.501466pt;}
.wsda{word-spacing:6.599232pt;}
.wsd{word-spacing:6.696998pt;}
.wsf{word-spacing:6.745882pt;}
.wsdb{word-spacing:7.039181pt;}
.wsaf{word-spacing:7.576896pt;}
.ws10{word-spacing:8.456794pt;}
.ws14{word-spacing:11.438669pt;}
.ws56{word-spacing:11.458253pt;}
.ws1e{word-spacing:12.367450pt;}
.ws29{word-spacing:12.416333pt;}
.ws20{word-spacing:14.518310pt;}
.ws8d{word-spacing:15.544858pt;}
.wsb0{word-spacing:15.600469pt;}
.ws6f{word-spacing:15.603560pt;}
.wseb{word-spacing:16.277252pt;}
.wse3{word-spacing:16.297399pt;}
.wsea{word-spacing:16.301423pt;}
.wse9{word-spacing:16.314560pt;}
.ws1d{word-spacing:16.326989pt;}
.ws6e{word-spacing:17.480680pt;}
.ws21{word-spacing:17.793485pt;}
.ws5c{word-spacing:20.061720pt;}
.ws71{word-spacing:22.251693pt;}
.wsdf{word-spacing:26.029363pt;}
.ws74{word-spacing:26.389877pt;}
.ws1f{word-spacing:26.787994pt;}
.ws23{word-spacing:29.574336pt;}
.wse5{word-spacing:32.090880pt;}
.ws2c{word-spacing:32.165146pt;}
.ws1c{word-spacing:32.507328pt;}
.wse2{word-spacing:41.183155pt;}
.ws44{word-spacing:43.818821pt;}
.ws43{word-spacing:52.512432pt;}
.wsbd{word-spacing:54.897617pt;}
.wse0{word-spacing:56.239181pt;}
.wsdd{word-spacing:59.318822pt;}
.wse1{word-spacing:66.651302pt;}
.wse7{word-spacing:67.091251pt;}
.wse8{word-spacing:80.094182pt;}
.wse4{word-spacing:84.738086pt;}
.wse6{word-spacing:102.971520pt;}
.wsde{word-spacing:108.690854pt;}
.ws5b{word-spacing:113.136544pt;}
.wsbc{word-spacing:113.185617pt;}
.ws72{word-spacing:116.165877pt;}
.ws6a{word-spacing:116.261877pt;}
.ws64{word-spacing:118.571211pt;}
.ws70{word-spacing:199.371211pt;}
.ws6d{word-spacing:201.488544pt;}
.ws66{word-spacing:205.211211pt;}
.ws67{word-spacing:298.123211pt;}
.wsc{word-spacing:401.428838pt;}
.ws25{word-spacing:2256.757205pt;}
._2f{margin-left:-22.820246pt;}
._44{margin-left:-6.264888pt;}
._29{margin-left:-4.888320pt;}
._1{margin-left:-3.478915pt;}
._4{margin-left:-2.574606pt;}
._0{margin-left:-1.604938pt;}
._3{width:0.969456pt;}
._4a{width:1.877120pt;}
._4b{width:2.781118pt;}
._6{width:3.672925pt;}
._49{width:4.705207pt;}
._48{width:6.100640pt;}
._4f{width:7.605792pt;}
._4c{width:8.495257pt;}
._3c{width:9.572899pt;}
._11{width:11.047603pt;}
._5{width:12.274661pt;}
._2{width:13.687296pt;}
._3e{width:15.284238pt;}
._22{width:16.461935pt;}
._20{width:17.906812pt;}
._1f{width:19.292661pt;}
._23{width:20.677594pt;}
._33{width:22.388506pt;}
._40{width:23.749027pt;}
._21{width:24.954904pt;}
._3f{width:26.054746pt;}
._43{width:27.064877pt;}
._31{width:27.961190pt;}
._3a{width:29.378803pt;}
._2b{width:31.130390pt;}
._47{width:32.100059pt;}
._46{width:33.419693pt;}
._36{width:34.698864pt;}
._32{width:36.026918pt;}
._50{width:36.996374pt;}
._4e{width:37.984450pt;}
._3b{width:39.497626pt;}
._27{width:42.772800pt;}
._42{width:45.053894pt;}
._2e{width:45.999091pt;}
._2c{width:47.555358pt;}
._4d{width:51.570700pt;}
._3d{width:55.726848pt;}
._34{width:58.146536pt;}
._37{width:59.393088pt;}
._17{width:64.165110pt;}
._1e{width:65.412182pt;}
._75{width:67.294752pt;}
._73{width:73.910311pt;}
._39{width:81.634944pt;}
._28{width:84.299048pt;}
._2a{width:85.341859pt;}
._12{width:106.124054pt;}
._18{width:111.979786pt;}
._19{width:163.457213pt;}
._1b{width:181.405555pt;}
._1d{width:189.748166pt;}
._1c{width:191.711702pt;}
._16{width:215.018666pt;}
._1a{width:237.018434pt;}
._72{width:254.747134pt;}
._74{width:262.619987pt;}
._60{width:283.578113pt;}
._61{width:300.111910pt;}
._14{width:301.910851pt;}
._71{width:312.475171pt;}
._52{width:325.918217pt;}
._62{width:328.874113pt;}
._15{width:332.593085pt;}
._5e{width:334.692780pt;}
._65{width:341.363311pt;}
._63{width:345.640896pt;}
._5f{width:351.163132pt;}
._5a{width:357.333090pt;}
._6a{width:360.198221pt;}
._66{width:362.563170pt;}
._13{width:369.011069pt;}
._6f{width:370.425886pt;}
._6b{width:371.326473pt;}
._8{width:380.694636pt;}
._6d{width:381.833941pt;}
._64{width:384.979627pt;}
._67{width:392.347327pt;}
._55{width:395.442996pt;}
._59{width:399.268669pt;}
._5d{width:401.587806pt;}
._53{width:404.130996pt;}
._6e{width:406.224035pt;}
._69{width:407.994389pt;}
._70{width:409.472010pt;}
._6c{width:417.253369pt;}
._5c{width:424.329139pt;}
._5b{width:427.635444pt;}
._58{width:429.391061pt;}
._68{width:435.638836pt;}
._57{width:455.106491pt;}
._56{width:467.008550pt;}
._54{width:475.429670pt;}
._f{width:573.542273pt;}
._b{width:764.732404pt;}
._a{width:785.497757pt;}
._9{width:826.827112pt;}
._10{width:846.019034pt;}
._e{width:967.390383pt;}
._d{width:981.825603pt;}
._c{width:1053.436793pt;}
._51{width:1805.112996pt;}
._24{width:1814.248996pt;}
._41{width:1818.078329pt;}
._7{width:1828.488996pt;}
._45{width:1831.043662pt;}
._38{width:1898.638882pt;}
._25{width:2089.314779pt;}
._2d{width:2168.652212pt;}
._26{width:2178.233319pt;}
._30{width:2222.073555pt;}
._35{width:2256.170607pt;}
.fs9{font-size:24.441600pt;}
.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;}
.fsa{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;}
.y16d{bottom:75.944000pt;}
.y1bf{bottom:76.884000pt;}
.y1df{bottom:78.198667pt;}
.y70{bottom:79.304000pt;}
.y3b{bottom:79.448000pt;}
.yd9{bottom:83.980000pt;}
.y3a{bottom:92.656000pt;}
.y1be{bottom:92.824000pt;}
.y153{bottom:92.865333pt;}
.y1de{bottom:94.138667pt;}
.y6f{bottom:95.244000pt;}
.y141{bottom:95.290667pt;}
.y16c{bottom:99.854667pt;}
.yd8{bottom:99.920000pt;}
.y104{bottom:103.420000pt;}
.y152{bottom:108.805333pt;}
.y1e9{bottom:108.806667pt;}
.y1dd{bottom:110.078667pt;}
.y6e{bottom:111.184000pt;}
.y140{bottom:111.230667pt;}
.y39{bottom:111.502667pt;}
.y1bd{bottom:116.734667pt;}
.y1e3{bottom:117.226667pt;}
.y120{bottom:117.449333pt;}
.y103{bottom:119.360000pt;}
.y16b{bottom:123.765333pt;}
.yd7{bottom:124.628000pt;}
.y1e8{bottom:124.748000pt;}
.y1dc{bottom:126.018667pt;}
.y6d{bottom:127.125333pt;}
.y13f{bottom:127.170667pt;}
.y1bc{bottom:132.674667pt;}
.y1e2{bottom:133.166667pt;}
.y11f{bottom:133.390667pt;}
.y151{bottom:133.512000pt;}
.y1e7{bottom:140.688000pt;}
.y20b{bottom:140.940000pt;}
.ye{bottom:140.945333pt;}
.y1db{bottom:141.958667pt;}
.y6c{bottom:143.065333pt;}
.y102{bottom:143.270667pt;}
.y16a{bottom:147.676000pt;}
.y1bb{bottom:148.614667pt;}
.y13e{bottom:151.081333pt;}
.y38{bottom:151.586667pt;}
.y20a{bottom:156.880000pt;}
.yd{bottom:156.885333pt;}
.y11e{bottom:157.300000pt;}
.y1da{bottom:157.898667pt;}
.y6b{bottom:159.005333pt;}
.yd6{bottom:162.220000pt;}
.y1ba{bottom:164.554667pt;}
.y13d{bottom:167.021333pt;}
.y101{bottom:167.180000pt;}
.y37{bottom:167.526667pt;}
.y150{bottom:168.448000pt;}
.y1a2{bottom:170.829333pt;}
.y169{bottom:171.585333pt;}
.yc{bottom:172.825333pt;}
.y11d{bottom:173.240000pt;}
.y1d9{bottom:173.840000pt;}
.y6a{bottom:174.945333pt;}
.yd5{bottom:178.160000pt;}
.y1b9{bottom:180.494667pt;}
.y13c{bottom:182.961333pt;}
.y36{bottom:183.466667pt;}
.y14f{bottom:184.388000pt;}
.y209{bottom:186.262667pt;}
.y1a1{bottom:186.769333pt;}
.y168{bottom:187.525333pt;}
.yb{bottom:188.766667pt;}
.y11c{bottom:189.181333pt;}
.y69{bottom:190.885333pt;}
.y100{bottom:191.090667pt;}
.yd4{bottom:194.100000pt;}
.y1b8{bottom:196.436000pt;}
.y1d8{bottom:197.749333pt;}
.y35{bottom:199.406667pt;}
.y1a0{bottom:202.709333pt;}
.ya{bottom:203.377333pt;}
.y11b{bottom:205.121333pt;}
.y68{bottom:206.826667pt;}
.y13b{bottom:206.872000pt;}
.y14e{bottom:208.298667pt;}
.yd3{bottom:210.041333pt;}
.y167{bottom:211.436000pt;}
.y1d7{bottom:213.689333pt;}
.yff{bottom:215.001333pt;}
.y34{bottom:215.346667pt;}
.y9{bottom:217.989333pt;}
.y1b7{bottom:220.345333pt;}
.y11a{bottom:221.061333pt;}
.y67{bottom:222.766667pt;}
.y13a{bottom:222.812000pt;}
.y14d{bottom:224.238667pt;}
.y166{bottom:227.376000pt;}
.y1d6{bottom:229.630667pt;}
.y208{bottom:230.630667pt;}
.y8{bottom:232.601333pt;}
.y66{bottom:238.706667pt;}
.y139{bottom:238.752000pt;}
.yfe{bottom:238.912000pt;}
.y33{bottom:239.257333pt;}
.yd2{bottom:241.921333pt;}
.y1b6{bottom:244.256000pt;}
.y119{bottom:244.972000pt;}
.y18d{bottom:245.458667pt;}
.y1d5{bottom:245.570667pt;}
.y207{bottom:246.570667pt;}
.y14c{bottom:248.149333pt;}
.y165{bottom:251.286667pt;}
.yd1{bottom:254.540000pt;}
.y65{bottom:254.646667pt;}
.y138{bottom:254.693333pt;}
.y32{bottom:255.197333pt;}
.y1b5{bottom:260.196000pt;}
.y118{bottom:260.912000pt;}
.y18c{bottom:261.398667pt;}
.y1d4{bottom:261.510667pt;}
.yfd{bottom:262.821333pt;}
.yd0{bottom:267.160000pt;}
.y206{bottom:270.481333pt;}
.y64{bottom:270.586667pt;}
.y31{bottom:271.137333pt;}
.y14b{bottom:272.060000pt;}
.y164{bottom:275.197333pt;}
.y1b4{bottom:276.137333pt;}
.y117{bottom:276.852000pt;}
.y18b{bottom:277.338667pt;}
.y137{bottom:279.400000pt;}
.ycf{bottom:279.780000pt;}
.y1d3{bottom:285.421333pt;}
.y205{bottom:286.421333pt;}
.y63{bottom:286.526667pt;}
.yfc{bottom:286.732000pt;}
.y30{bottom:287.078667pt;}
.yce{bottom:292.398667pt;}
.y116{bottom:292.792000pt;}
.y14a{bottom:295.970667pt;}
.y163{bottom:299.108000pt;}
.y1b3{bottom:300.046667pt;}
.y1d2{bottom:301.361333pt;}
.y18a{bottom:302.046667pt;}
.y62{bottom:302.468000pt;}
.y136{bottom:304.108000pt;}
.ycd{bottom:305.018667pt;}
.y115{bottom:308.732000pt;}
.y204{bottom:310.330667pt;}
.yfb{bottom:310.642667pt;}
.y1b2{bottom:315.986667pt;}
.y1d1{bottom:317.301333pt;}
.ycc{bottom:317.637333pt;}
.y61{bottom:318.408000pt;}
.y149{bottom:319.880000pt;}
.y162{bottom:323.017333pt;}
.y114{bottom:324.673333pt;}
.y203{bottom:326.272000pt;}
.ycb{bottom:330.257333pt;}
.y1b1{bottom:331.928000pt;}
.y60{bottom:334.348000pt;}
.yfa{bottom:334.553333pt;}
.y189{bottom:339.638667pt;}
.y1d0{bottom:341.212000pt;}
.y135{bottom:341.700000pt;}
.y202{bottom:342.212000pt;}
.yca{bottom:342.876000pt;}
.y148{bottom:343.790667pt;}
.y161{bottom:346.928000pt;}
.y113{bottom:348.582667pt;}
.y5f{bottom:350.288000pt;}
.yf9{bottom:350.493333pt;}
.yc9{bottom:355.496000pt;}
.y188{bottom:355.578667pt;}
.y134{bottom:357.640000pt;}
.y201{bottom:358.152000pt;}
.y147{bottom:359.730667pt;}
.y112{bottom:364.524000pt;}
.y1cf{bottom:365.122667pt;}
.y1b0{bottom:365.846667pt;}
.y5e{bottom:366.228000pt;}
.yf8{bottom:366.433333pt;}
.yc8{bottom:368.114667pt;}
.y160{bottom:370.838667pt;}
.y187{bottom:371.518667pt;}
.y200{bottom:374.092000pt;}
.y2f{bottom:375.449333pt;}
.y111{bottom:380.464000pt;}
.yc7{bottom:380.734667pt;}
.y1ce{bottom:381.062667pt;}
.y133{bottom:381.550667pt;}
.y1af{bottom:381.786667pt;}
.y5d{bottom:382.168000pt;}
.yf7{bottom:382.373333pt;}
.y146{bottom:383.641333pt;}
.y15f{bottom:386.778667pt;}
.y1ff{bottom:390.032000pt;}
.y2e{bottom:391.389333pt;}
.yc6{bottom:393.353333pt;}
.y110{bottom:396.404000pt;}
.y1cd{bottom:397.002667pt;}
.y132{bottom:397.490667pt;}
.y5c{bottom:398.109333pt;}
.y145{bottom:399.581333pt;}
.y15e{bottom:402.718667pt;}
.yc5{bottom:405.973333pt;}
.yf6{bottom:406.284000pt;}
.y2d{bottom:407.861333pt;}
.y1cc{bottom:412.942667pt;}
.y131{bottom:413.430667pt;}
.y5b{bottom:414.049333pt;}
.y144{bottom:415.521333pt;}
.y186{bottom:416.152000pt;}
.yc4{bottom:418.592000pt;}
.y15d{bottom:418.658667pt;}
.y10f{bottom:421.110667pt;}
.y1fe{bottom:421.913333pt;}
.yf5{bottom:422.224000pt;}
.y130{bottom:429.370667pt;}
.y5a{bottom:429.989333pt;}
.yc3{bottom:431.212000pt;}
.y15c{bottom:434.600000pt;}
.y1cb{bottom:437.650667pt;}
.y1fd{bottom:437.853333pt;}
.yf4{bottom:438.164000pt;}
.yc2{bottom:443.830667pt;}
.y185{bottom:445.376000pt;}
.y12f{bottom:453.281333pt;}
.yf3{bottom:454.104000pt;}
.y7{bottom:454.585333pt;}
.yc1{bottom:456.450667pt;}
.y10e{bottom:458.704000pt;}
.y15b{bottom:459.306667pt;}
.y59{bottom:459.372000pt;}
.y143{bottom:460.154667pt;}
.y184{bottom:461.316000pt;}
.y1fc{bottom:461.764000pt;}
.yc0{bottom:469.069333pt;}
.y12e{bottom:469.221333pt;}
.y6{bottom:470.525333pt;}
.y10d{bottom:474.644000pt;}
.y1ca{bottom:475.242667pt;}
.y183{bottom:477.256000pt;}
.y1fb{bottom:477.704000pt;}
.yf2{bottom:478.014667pt;}
.ybf{bottom:481.689333pt;}
.y12d{bottom:485.161333pt;}
.y5{bottom:486.465333pt;}
.y1c9{bottom:491.182667pt;}
.y182{bottom:493.196000pt;}
.y1fa{bottom:493.644000pt;}
.yf1{bottom:493.954667pt;}
.y15a{bottom:494.242667pt;}
.ybe{bottom:494.308000pt;}
.y10c{bottom:498.554667pt;}
.y58{bottom:503.740000pt;}
.ybd{bottom:506.928000pt;}
.y1c8{bottom:507.122667pt;}
.y12c{bottom:509.072000pt;}
.y181{bottom:509.136000pt;}
.y2c{bottom:509.222667pt;}
.y1f9{bottom:509.584000pt;}
.y159{bottom:510.182667pt;}
.y10b{bottom:514.494667pt;}
.yf0{bottom:517.865333pt;}
.y1c7{bottom:523.062667pt;}
.y12b{bottom:525.012000pt;}
.y180{bottom:525.077333pt;}
.y2b{bottom:525.162667pt;}
.y158{bottom:526.122667pt;}
.ybc{bottom:527.517333pt;}
.y10a{bottom:530.434667pt;}
.y57{bottom:531.369333pt;}
.y1f8{bottom:533.494667pt;}
.yef{bottom:533.805333pt;}
.y1c6{bottom:539.004000pt;}
.y12a{bottom:540.953333pt;}
.y17f{bottom:541.017333pt;}
.y2a{bottom:541.102667pt;}
.ybb{bottom:543.457333pt;}
.y1f7{bottom:549.434667pt;}
.y157{bottom:550.033333pt;}
.y109{bottom:554.345333pt;}
.y1c5{bottom:554.944000pt;}
.y129{bottom:556.893333pt;}
.y17e{bottom:556.957333pt;}
.y29{bottom:557.042667pt;}
.yee{bottom:557.716000pt;}
.y56{bottom:558.998667pt;}
.yba{bottom:559.397333pt;}
.y26{bottom:565.013333pt;}
.y1f6{bottom:565.374667pt;}
.y156{bottom:565.973333pt;}
.ya5{bottom:566.836000pt;}
.y108{bottom:570.285333pt;}
.y1c4{bottom:570.884000pt;}
.y128{bottom:572.833333pt;}
.y17d{bottom:572.897333pt;}
.y28{bottom:572.982667pt;}
.y55{bottom:574.938667pt;}
.yb9{bottom:575.337333pt;}
.y1f5{bottom:581.314667pt;}
.yed{bottom:581.626667pt;}
.ya4{bottom:582.776000pt;}
.y1c3{bottom:586.824000pt;}
.y17c{bottom:588.837333pt;}
.y27{bottom:588.922667pt;}
.y54{bottom:590.878667pt;}
.y127{bottom:596.744000pt;}
.y1f4{bottom:597.256000pt;}
.yec{bottom:597.566667pt;}
.ya3{bottom:598.716000pt;}
.ye9{bottom:599.408000pt;}
.y1e6{bottom:599.789333pt;}
.y19f{bottom:602.302667pt;}
.y17b{bottom:604.777333pt;}
.y25{bottom:605.394667pt;}
.y53{bottom:606.820000pt;}
.yb8{bottom:607.218667pt;}
.y1e1{bottom:608.029333pt;}
.y4{bottom:610.512000pt;}
.y155{bottom:610.606667pt;}
.y126{bottom:612.684000pt;}
.y1f3{bottom:613.196000pt;}
.y107{bottom:614.917333pt;}
.ye8{bottom:615.348000pt;}
.y1e5{bottom:615.730667pt;}
.y19e{bottom:618.242667pt;}
.yb7{bottom:619.837333pt;}
.y17a{bottom:620.718667pt;}
.y52{bottom:622.760000pt;}
.ya2{bottom:623.424000pt;}
.y1e0{bottom:623.969333pt;}
.y3{bottom:626.452000pt;}
.y125{bottom:628.624000pt;}
.y1f2{bottom:629.136000pt;}
.y106{bottom:630.857333pt;}
.y1c2{bottom:631.457333pt;}
.y1e4{bottom:631.670667pt;}
.yb6{bottom:632.457333pt;}
.y24{bottom:633.024000pt;}
.yeb{bottom:633.886667pt;}
.y19d{bottom:634.184000pt;}
.y179{bottom:636.658667pt;}
.y51{bottom:638.700000pt;}
.ye7{bottom:639.257333pt;}
.y2{bottom:642.392000pt;}
.y124{bottom:644.564000pt;}
.yb5{bottom:645.076000pt;}
.y105{bottom:646.798667pt;}
.y1c1{bottom:647.397333pt;}
.y19c{bottom:650.124000pt;}
.y178{bottom:652.598667pt;}
.y1f1{bottom:653.842667pt;}
.yb4{bottom:657.696000pt;}
.y23{bottom:660.122667pt;}
.ya1{bottom:661.016000pt;}
.y8f{bottom:661.548000pt;}
.ye6{bottom:663.168000pt;}
.y1c0{bottom:663.337333pt;}
.y19b{bottom:666.064000pt;}
.y50{bottom:666.329333pt;}
.y177{bottom:668.538667pt;}
.y123{bottom:669.272000pt;}
.yb3{bottom:670.314667pt;}
.y22{bottom:676.062667pt;}
.ya0{bottom:676.956000pt;}
.y8e{bottom:677.488000pt;}
.y19a{bottom:682.004000pt;}
.y4f{bottom:682.269333pt;}
.yb2{bottom:682.934667pt;}
.y1f0{bottom:683.465333pt;}
.y1e{bottom:684.033333pt;}
.y176{bottom:684.478667pt;}
.ye5{bottom:687.078667pt;}
.y21{bottom:692.002667pt;}
.y9f{bottom:692.897333pt;}
.yb1{bottom:695.553333pt;}
.y199{bottom:697.944000pt;}
.y4e{bottom:698.210667pt;}
.y1ef{bottom:699.405333pt;}
.y175{bottom:700.418667pt;}
.y8d{bottom:701.398667pt;}
.y20{bottom:707.944000pt;}
.yb0{bottom:708.173333pt;}
.y9e{bottom:708.837333pt;}
.ye4{bottom:710.989333pt;}
.y122{bottom:713.904000pt;}
.y4d{bottom:714.150667pt;}
.y1ee{bottom:715.345333pt;}
.y174{bottom:716.360000pt;}
.y1{bottom:716.370667pt;}
.y8c{bottom:717.338667pt;}
.yaf{bottom:720.792000pt;}
.y198{bottom:721.854667pt;}
.y1f{bottom:723.884000pt;}
.y9d{bottom:724.777333pt;}
.y121{bottom:729.844000pt;}
.y4c{bottom:730.090667pt;}
.y173{bottom:732.300000pt;}
.y8b{bottom:733.278667pt;}
.yae{bottom:733.412000pt;}
.ye3{bottom:734.898667pt;}
.y197{bottom:737.794667pt;}
.y1ed{bottom:740.053333pt;}
.y1d{bottom:740.354667pt;}
.y4b{bottom:746.030667pt;}
.y172{bottom:748.240000pt;}
.y8a{bottom:749.218667pt;}
.y9c{bottom:749.484000pt;}
.y142{bottom:749.556000pt;}
.y196{bottom:753.734667pt;}
.ye2{bottom:758.809333pt;}
.y4a{bottom:761.970667pt;}
.y171{bottom:764.180000pt;}
.y89{bottom:765.158667pt;}
.yad{bottom:766.620000pt;}
.y195{bottom:769.676000pt;}
.y49{bottom:777.910667pt;}
.y170{bottom:780.120000pt;}
.y88{bottom:781.098667pt;}
.yac{bottom:782.560000pt;}
.ye1{bottom:782.720000pt;}
.y194{bottom:785.616000pt;}
.y9b{bottom:787.077333pt;}
.y48{bottom:793.852000pt;}
.y16f{bottom:796.592000pt;}
.y87{bottom:797.040000pt;}
.y1ae{bottom:797.862667pt;}
.y193{bottom:801.556000pt;}
.y9a{bottom:803.017333pt;}
.yab{bottom:806.470667pt;}
.ye0{bottom:806.630667pt;}
.y47{bottom:809.792000pt;}
.y7b{bottom:816.433333pt;}
.y192{bottom:817.496000pt;}
.y99{bottom:818.957333pt;}
.y86{bottom:820.949333pt;}
.yaa{bottom:822.410667pt;}
.y154{bottom:826.806667pt;}
.y16e{bottom:829.004000pt;}
.ydf{bottom:830.540000pt;}
.y1ad{bottom:832.798667pt;}
.y1ec{bottom:833.436000pt;}
.y85{bottom:836.890667pt;}
.y46{bottom:837.421333pt;}
.ya9{bottom:838.352000pt;}
.y191{bottom:841.406667pt;}
.y1c{bottom:841.716000pt;}
.y98{bottom:843.665333pt;}
.y7a{bottom:845.816000pt;}
.yde{bottom:846.481333pt;}
.y1ac{bottom:848.738667pt;}
.y1eb{bottom:849.376000pt;}
.y84{bottom:852.830667pt;}
.y45{bottom:853.361333pt;}
.y190{bottom:857.346667pt;}
.y1b{bottom:857.656000pt;}
.yea{bottom:859.605333pt;}
.ydd{bottom:862.421333pt;}
.ya8{bottom:863.058667pt;}
.y1ab{bottom:864.678667pt;}
.y1ea{bottom:865.317333pt;}
.y83{bottom:868.770667pt;}
.y44{bottom:869.301333pt;}
.y18f{bottom:873.286667pt;}
.y1a{bottom:873.596000pt;}
.ydc{bottom:878.361333pt;}
.y1aa{bottom:880.620000pt;}
.y97{bottom:881.257333pt;}
.y82{bottom:884.710667pt;}
.y43{bottom:885.242667pt;}
.y18e{bottom:889.226667pt;}
.y19{bottom:890.068000pt;}
.y79{bottom:890.184000pt;}
.ydb{bottom:894.301333pt;}
.y1a9{bottom:896.560000pt;}
.y96{bottom:897.197333pt;}
.ya7{bottom:900.650667pt;}
.y78{bottom:906.124000pt;}
.y18{bottom:906.597333pt;}
.y81{bottom:908.621333pt;}
.y1a8{bottom:912.500000pt;}
.y42{bottom:912.872000pt;}
.y95{bottom:913.137333pt;}
.yda{bottom:919.009333pt;}
.y77{bottom:922.064000pt;}
.y17{bottom:923.126667pt;}
.y80{bottom:924.561333pt;}
.y41{bottom:928.812000pt;}
.y94{bottom:929.077333pt;}
.y1a7{bottom:936.410667pt;}
.y76{bottom:938.004000pt;}
.y16{bottom:939.066667pt;}
.y7f{bottom:940.501333pt;}
.y40{bottom:944.752000pt;}
.y93{bottom:945.017333pt;}
.ya6{bottom:948.472000pt;}
.y1a6{bottom:952.350667pt;}
.y75{bottom:953.944000pt;}
.y15{bottom:955.006667pt;}
.y7e{bottom:956.441333pt;}
.y3f{bottom:960.692000pt;}
.y92{bottom:960.958667pt;}
.y1a5{bottom:968.290667pt;}
.y74{bottom:969.885333pt;}
.y14{bottom:971.478667pt;}
.y7d{bottom:972.382667pt;}
.y3e{bottom:976.633333pt;}
.y91{bottom:976.898667pt;}
.y1a4{bottom:984.230667pt;}
.y73{bottom:985.825333pt;}
.y13{bottom:987.418667pt;}
.y7c{bottom:988.322667pt;}
.y90{bottom:1001.605333pt;}
.y72{bottom:1001.765333pt;}
.y12{bottom:1003.358667pt;}
.y3d{bottom:1004.262667pt;}
.y1a3{bottom:1008.938667pt;}
.y71{bottom:1017.705333pt;}
.y11{bottom:1019.300000pt;}
.y3c{bottom:1033.645333pt;}
.y10{bottom:1035.770667pt;}
.yf{bottom:1084.920000pt;}
.hb{height:29.599270pt;}
.h5{height:32.644438pt;}
.hd{height:34.822811pt;}
.h4{height:36.271334pt;}
.he{height:36.928037pt;}
.h6{height:39.175840pt;}
.h7{height:43.525522pt;}
.h3{height:43.528395pt;}
.hc{height:52.230864pt;}
.h8{height:52.367122pt;}
.h9{height:52.372456pt;}
.h2{height:62.677037pt;}
.ha{height:111.581493pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:62.466667pt;}
.x20{left:65.708000pt;}
.x8{left:75.590667pt;}
.x1d{left:87.350667pt;}
.x18{left:89.669333pt;}
.x11{left:90.793333pt;}
.x1e{left:93.125333pt;}
.x13{left:96.997333pt;}
.x17{left:101.020000pt;}
.xd{left:102.444000pt;}
.x24{left:104.992000pt;}
.x12{left:106.010667pt;}
.x23{left:108.800000pt;}
.x10{left:112.997333pt;}
.xf{left:117.520000pt;}
.x1f{left:120.010667pt;}
.xc{left:126.792000pt;}
.xe{left:129.608000pt;}
.xa{left:136.302667pt;}
.xb{left:138.096000pt;}
.x1a{left:152.214667pt;}
.x16{left:168.148000pt;}
.x28{left:189.780000pt;}
.x31{left:198.601333pt;}
.x29{left:204.206667pt;}
.x2e{left:205.920000pt;}
.x2d{left:206.916000pt;}
.x2c{left:208.916000pt;}
.x2a{left:210.709333pt;}
.x27{left:211.964000pt;}
.x2f{left:213.205333pt;}
.x26{left:217.065333pt;}
.x30{left:218.114667pt;}
.x2b{left:219.422667pt;}
.x1{left:221.356000pt;}
.x1b{left:225.738667pt;}
.x14{left:268.261333pt;}
.x9{left:272.906667pt;}
.x25{left:283.436000pt;}
.x15{left:288.712000pt;}
.x6{left:301.381333pt;}
.x22{left:308.794667pt;}
.x2{left:322.057333pt;}
.x19{left:325.621333pt;}
.x3{left:328.646667pt;}
.x4{left:333.561333pt;}
.x7{left:336.132000pt;}
.x1c{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; }
  