
    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_d03472b791002b3ac216c1c1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9e591ac22ec82b23fde83997.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_3037a9b3c44440ec693d618c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.680176;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_b02284a109fb21999a31f668.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_fdce3539d5c17d79902073b9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.213379;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_42c317bed0dd9992fffb8bbc.woff')format("woff");}.ff6{font-family:ff6;line-height:0.699707;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_23e8554cc94f1ed713af7495.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v5{vertical-align:20.880000px;}
.v3{vertical-align:23.561280px;}
.v1{vertical-align:27.360000px;}
.ls58{letter-spacing:-1.457280px;}
.ls16{letter-spacing:-1.254960px;}
.ls11{letter-spacing:-0.936000px;}
.ls59{letter-spacing:-0.861120px;}
.ls40{letter-spacing:-0.810000px;}
.ls1a{letter-spacing:-0.728640px;}
.ls2e{letter-spacing:-0.596160px;}
.ls42{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.537840px;}
.ls1d{letter-spacing:-0.511200px;}
.ls3c{letter-spacing:-0.463680px;}
.ls1b{letter-spacing:-0.434160px;}
.ls19{letter-spacing:-0.397440px;}
.ls41{letter-spacing:-0.378000px;}
.ls14{letter-spacing:-0.358560px;}
.ls1f{letter-spacing:-0.357840px;}
.lsb{letter-spacing:-0.337680px;}
.ls30{letter-spacing:-0.336960px;}
.ls3b{letter-spacing:-0.331200px;}
.ls49{letter-spacing:-0.289440px;}
.ls4f{letter-spacing:-0.264960px;}
.lsd{letter-spacing:-0.241200px;}
.ls15{letter-spacing:-0.239040px;}
.ls3f{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls4e{letter-spacing:-0.132480px;}
.lsf{letter-spacing:-0.119520px;}
.ls3e{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.084240px;}
.ls12{letter-spacing:-0.059760px;}
.lsc{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.059760px;}
.ls64{letter-spacing:0.084240px;}
.ls36{letter-spacing:0.108000px;}
.ls13{letter-spacing:0.119520px;}
.ls22{letter-spacing:0.132480px;}
.ls60{letter-spacing:0.143424px;}
.ls32{letter-spacing:0.152640px;}
.ls4c{letter-spacing:0.153360px;}
.ls35{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.179280px;}
.ls9{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.191232px;}
.ls1c{letter-spacing:0.192960px;}
.ls4d{letter-spacing:0.206640px;}
.ls39{letter-spacing:0.216000px;}
.ls43{letter-spacing:0.234000px;}
.ls0{letter-spacing:0.239040px;}
.ls5{letter-spacing:0.245016px;}
.ls29{letter-spacing:0.258336px;}
.ls26{letter-spacing:0.264960px;}
.ls6{letter-spacing:0.268920px;}
.ls2{letter-spacing:0.274896px;}
.lsa{letter-spacing:0.289440px;}
.ls65{letter-spacing:0.292320px;}
.ls2f{letter-spacing:0.331200px;}
.ls44{letter-spacing:0.332856px;}
.ls3d{letter-spacing:0.336960px;}
.ls1e{letter-spacing:0.357840px;}
.ls1{letter-spacing:0.358560px;}
.ls3{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.378000px;}
.lse{letter-spacing:0.385920px;}
.ls57{letter-spacing:0.669024px;}
.ls33{letter-spacing:0.728640px;}
.ls20{letter-spacing:0.896400px;}
.ls53{letter-spacing:1.232064px;}
.ls5e{letter-spacing:1.384416px;}
.ls2c{letter-spacing:1.457280px;}
.ls7{letter-spacing:1.613520px;}
.ls46{letter-spacing:2.185920px;}
.ls24{letter-spacing:2.848320px;}
.ls8{letter-spacing:3.047760px;}
.ls25{letter-spacing:3.576960px;}
.ls67{letter-spacing:3.764880px;}
.ls2b{letter-spacing:4.305600px;}
.ls2a{letter-spacing:5.034240px;}
.ls34{letter-spacing:5.073984px;}
.ls50{letter-spacing:5.093856px;}
.ls61{letter-spacing:5.597280px;}
.ls55{letter-spacing:5.762880px;}
.ls45{letter-spacing:6.405408px;}
.ls21{letter-spacing:6.491520px;}
.ls27{letter-spacing:7.220160px;}
.ls5d{letter-spacing:7.350480px;}
.ls4b{letter-spacing:7.882560px;}
.ls4a{letter-spacing:7.948800px;}
.ls47{letter-spacing:9.339840px;}
.ls63{letter-spacing:9.359712px;}
.ls48{letter-spacing:9.386208px;}
.ls5c{letter-spacing:10.068480px;}
.ls62{letter-spacing:10.790496px;}
.ls54{letter-spacing:10.797120px;}
.ls28{letter-spacing:12.254400px;}
.ls5a{letter-spacing:14.374080px;}
.ls51{letter-spacing:14.393952px;}
.ls52{letter-spacing:14.413824px;}
.ls5b{letter-spacing:15.831360px;}
.ls56{letter-spacing:20.136960px;}
.ls5f{letter-spacing:22.322880px;}
.ls23{letter-spacing:23.051520px;}
.ls66{letter-spacing:57.070800px;}
.ls69{letter-spacing:61.373520px;}
.ls37{letter-spacing:112.482000px;}
.ls38{letter-spacing:149.958000px;}
.ls68{letter-spacing:201.032640px;}
.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;}
}
.ws2{word-spacing:-23.940000px;}
.wsc5{word-spacing:-21.396960px;}
.wscb{word-spacing:-21.144240px;}
.wsb{word-spacing:-20.975760px;}
.ws46{word-spacing:-20.723040px;}
.ws3{word-spacing:-17.856000px;}
.ws72{word-spacing:-16.891200px;}
.wsa5{word-spacing:-16.824960px;}
.ws94{word-spacing:-16.692480px;}
.ws44{word-spacing:-16.560000px;}
.ws9c{word-spacing:-16.427520px;}
.ws9d{word-spacing:-16.295040px;}
.ws6f{word-spacing:-16.228800px;}
.wscd{word-spacing:-16.162560px;}
.ws71{word-spacing:-16.096320px;}
.wsa4{word-spacing:-15.963840px;}
.ws45{word-spacing:-15.831360px;}
.wsc6{word-spacing:-15.698880px;}
.ws0{word-spacing:-15.298560px;}
.wsa{word-spacing:-15.179040px;}
.ws7{word-spacing:-15.059520px;}
.ws43{word-spacing:-14.999760px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.880240px;}
.ws1{word-spacing:-14.820480px;}
.ws8{word-spacing:-14.700960px;}
.ws6{word-spacing:-14.581440px;}
.ws75{word-spacing:-13.878000px;}
.ws77{word-spacing:-13.716000px;}
.ws7b{word-spacing:-13.662000px;}
.ws73{word-spacing:-13.608000px;}
.ws7c{word-spacing:-13.500000px;}
.ws74{word-spacing:-13.392000px;}
.ws76{word-spacing:-13.284000px;}
.ws12{word-spacing:-13.137840px;}
.ws79{word-spacing:-13.122000px;}
.ws7a{word-spacing:-12.960000px;}
.ws11{word-spacing:-12.780000px;}
.ws78{word-spacing:-12.690000px;}
.wse{word-spacing:-12.445920px;}
.ws13{word-spacing:-12.422160px;}
.ws10{word-spacing:-12.268800px;}
.wsf{word-spacing:-12.252960px;}
.wsd{word-spacing:-12.060000px;}
.ws93{word-spacing:-11.770560px;}
.wsc{word-spacing:-11.722320px;}
.wscc{word-spacing:-10.732320px;}
.ws70{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws92{word-spacing:-9.000000px;}
.wsc9{word-spacing:-4.438080px;}
.wsc3{word-spacing:-4.305600px;}
.ws38{word-spacing:-3.764880px;}
.ws68{word-spacing:-3.709440px;}
.ws3b{word-spacing:-3.576960px;}
.ws37{word-spacing:-3.525840px;}
.ws39{word-spacing:-3.346560px;}
.ws3c{word-spacing:-3.179520px;}
.wsc8{word-spacing:-3.047760px;}
.ws84{word-spacing:-2.980800px;}
.ws3d{word-spacing:-2.848320px;}
.ws33{word-spacing:-2.629440px;}
.ws63{word-spacing:-2.517120px;}
.ws32{word-spacing:-2.330640px;}
.ws4c{word-spacing:-2.318400px;}
.ws4e{word-spacing:-2.185920px;}
.ws97{word-spacing:-2.119680px;}
.ws31{word-spacing:-2.091600px;}
.ws34{word-spacing:-1.912320px;}
.wsb3{word-spacing:-1.788480px;}
.wsa9{word-spacing:-1.722240px;}
.ws14{word-spacing:-1.640160px;}
.wsb6{word-spacing:-1.613520px;}
.ws4d{word-spacing:-1.589760px;}
.wsb7{word-spacing:-1.494000px;}
.ws64{word-spacing:-1.457280px;}
.wsb5{word-spacing:-1.374480px;}
.ws16{word-spacing:-1.013040px;}
.ws8f{word-spacing:-0.918000px;}
.ws17{word-spacing:-0.916560px;}
.ws23{word-spacing:-0.896400px;}
.ws83{word-spacing:-0.861120px;}
.ws40{word-spacing:-0.820080px;}
.wsc2{word-spacing:-0.776880px;}
.ws80{word-spacing:-0.728640px;}
.ws7e{word-spacing:-0.717120px;}
.wsa0{word-spacing:-0.657360px;}
.ws8e{word-spacing:-0.540000px;}
.ws88{word-spacing:-0.505440px;}
.ws41{word-spacing:-0.385920px;}
.ws22{word-spacing:-0.358560px;}
.ws52{word-spacing:-0.331200px;}
.ws42{word-spacing:-0.289440px;}
.ws1f{word-spacing:-0.239040px;}
.ws8d{word-spacing:-0.216000px;}
.ws96{word-spacing:-0.192960px;}
.ws18{word-spacing:-0.191520px;}
.ws1c{word-spacing:-0.179280px;}
.ws90{word-spacing:-0.162000px;}
.ws58{word-spacing:-0.132480px;}
.ws20{word-spacing:-0.119520px;}
.ws8c{word-spacing:-0.108000px;}
.wsd4{word-spacing:-0.084240px;}
.ws7d{word-spacing:-0.059760px;}
.ws15{word-spacing:0.000000px;}
.ws1d{word-spacing:0.059760px;}
.wsa2{word-spacing:0.132480px;}
.ws1a{word-spacing:0.144000px;}
.ws62{word-spacing:0.168480px;}
.ws7f{word-spacing:0.179280px;}
.ws1e{word-spacing:0.239040px;}
.ws47{word-spacing:0.298800px;}
.ws21{word-spacing:0.358560px;}
.ws95{word-spacing:0.378000px;}
.wsae{word-spacing:0.397440px;}
.wsa1{word-spacing:0.418320px;}
.ws3f{word-spacing:0.434160px;}
.wsb1{word-spacing:0.463680px;}
.ws3e{word-spacing:0.530640px;}
.ws2b{word-spacing:0.537840px;}
.ws91{word-spacing:0.540000px;}
.ws19{word-spacing:0.574560px;}
.ws9b{word-spacing:0.596160px;}
.ws54{word-spacing:0.728640px;}
.wsb2{word-spacing:0.861120px;}
.ws1b{word-spacing:0.936000px;}
.ws99{word-spacing:1.126080px;}
.ws26{word-spacing:1.254960px;}
.ws6b{word-spacing:1.324800px;}
.ws6c{word-spacing:1.457280px;}
.ws27{word-spacing:1.494000px;}
.wsc7{word-spacing:1.673280px;}
.wsb4{word-spacing:1.920960px;}
.ws2d{word-spacing:1.972080px;}
.ws4b{word-spacing:2.053440px;}
.ws4a{word-spacing:2.185920px;}
.ws2f{word-spacing:2.211120px;}
.ws2e{word-spacing:2.689200px;}
.ws82{word-spacing:2.782080px;}
.ws30{word-spacing:2.808720px;}
.ws48{word-spacing:2.914560px;}
.wsb8{word-spacing:2.928240px;}
.ws2c{word-spacing:3.107520px;}
.wsba{word-spacing:3.245760px;}
.ws8b{word-spacing:3.406320px;}
.ws57{word-spacing:3.576960px;}
.ws8a{word-spacing:3.645360px;}
.ws89{word-spacing:4.003920px;}
.ws50{word-spacing:4.173120px;}
.ws51{word-spacing:4.305600px;}
.wsd2{word-spacing:4.703040px;}
.ws25{word-spacing:4.840560px;}
.ws87{word-spacing:4.901760px;}
.ws69{word-spacing:5.034240px;}
.ws24{word-spacing:5.079600px;}
.ws98{word-spacing:5.431680px;}
.ws6a{word-spacing:5.630400px;}
.ws49{word-spacing:5.762880px;}
.ws86{word-spacing:6.160320px;}
.ws5c{word-spacing:6.359040px;}
.wsc1{word-spacing:6.394320px;}
.wsc0{word-spacing:6.454080px;}
.ws4f{word-spacing:6.491520px;}
.wscf{word-spacing:6.624000px;}
.wsbf{word-spacing:7.051680px;}
.ws61{word-spacing:7.087680px;}
.ws5b{word-spacing:7.220160px;}
.ws36{word-spacing:7.290720px;}
.ws35{word-spacing:7.470000px;}
.ws28{word-spacing:7.768800px;}
.ws9e{word-spacing:7.816320px;}
.ws5a{word-spacing:7.948800px;}
.wsce{word-spacing:8.346240px;}
.ws53{word-spacing:8.478720px;}
.ws29{word-spacing:8.485920px;}
.ws59{word-spacing:8.544960px;}
.wsa7{word-spacing:8.611200px;}
.ws9f{word-spacing:8.677440px;}
.ws2a{word-spacing:8.904240px;}
.wsd0{word-spacing:9.008640px;}
.wsd1{word-spacing:9.207360px;}
.ws9a{word-spacing:9.339840px;}
.wsd3{word-spacing:9.737280px;}
.wsa8{word-spacing:10.068480px;}
.wsaa{word-spacing:10.664640px;}
.ws3a{word-spacing:10.797120px;}
.ws60{word-spacing:11.393280px;}
.wsb9{word-spacing:11.525760px;}
.ws5d{word-spacing:12.121920px;}
.ws5e{word-spacing:12.254400px;}
.ws85{word-spacing:12.850560px;}
.ws5f{word-spacing:12.983040px;}
.wsac{word-spacing:13.711680px;}
.ws65{word-spacing:14.241600px;}
.wsab{word-spacing:14.374080px;}
.ws6d{word-spacing:15.500160px;}
.ws6e{word-spacing:15.831360px;}
.wsa6{word-spacing:16.560000px;}
.wsbd{word-spacing:17.156160px;}
.ws66{word-spacing:17.288640px;}
.ws67{word-spacing:18.017280px;}
.wsbe{word-spacing:18.613440px;}
.ws81{word-spacing:18.745920px;}
.wsb0{word-spacing:20.004480px;}
.wsad{word-spacing:20.136960px;}
.wsaf{word-spacing:20.534400px;}
.wsbc{word-spacing:21.594240px;}
.wsbb{word-spacing:22.190400px;}
.wsc4{word-spacing:22.322880px;}
.ws56{word-spacing:22.919040px;}
.ws55{word-spacing:23.051520px;}
.wsa3{word-spacing:24.508800px;}
.wsca{word-spacing:28.814400px;}
._1b{margin-left:-10.637280px;}
._b{margin-left:-5.079600px;}
._a{margin-left:-3.809088px;}
._10{margin-left:-2.642256px;}
._1{margin-left:-1.379664px;}
._0{width:1.090224px;}
._8{width:2.313360px;}
._e{width:3.368160px;}
._16{width:4.570560px;}
._7{width:5.662656px;}
._9{width:7.741296px;}
._c{width:9.424656px;}
._f{width:12.528720px;}
._18{width:18.060768px;}
._17{width:21.289536px;}
._d{width:22.654080px;}
._5{width:53.192592px;}
._6{width:54.203328px;}
._1a{width:66.968640px;}
._19{width:111.614400px;}
._11{width:178.583040px;}
._2{width:185.760000px;}
._3{width:193.680000px;}
._15{width:296.110800px;}
._12{width:333.520560px;}
._14{width:335.671920px;}
._13{width:350.074080px;}
._4{width:1605.591360px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(68,114,196);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(41,37,38);}
.fc5{color:rgb(34,34,34);}
.fc2{color:rgb(0,51,204);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fsb{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fsa{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fsc{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fse{font-size:131.760000px;}
.fsd{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:2.700000px;}
.yb2{bottom:2.879850px;}
.y77{bottom:2.880000px;}
.y7d{bottom:3.060000px;}
.yfb{bottom:3.240000px;}
.yfc{bottom:3.420000px;}
.yf6{bottom:3.600000px;}
.yf8{bottom:3.780000px;}
.ycf{bottom:4.500000px;}
.yd3{bottom:4.680000px;}
.yca{bottom:4.860000px;}
.y117{bottom:5.760000px;}
.y116{bottom:7.200000px;}
.y122{bottom:8.460000px;}
.y7b{bottom:8.820000px;}
.ycb{bottom:9.720000px;}
.y118{bottom:9.900000px;}
.y180{bottom:10.620000px;}
.y79{bottom:18.360000px;}
.ycd{bottom:20.340000px;}
.yd2{bottom:20.520000px;}
.yb7{bottom:21.419850px;}
.y7f{bottom:21.420000px;}
.y89{bottom:21.600000px;}
.y36{bottom:30.780000px;}
.y2{bottom:55.440000px;}
.y3b{bottom:56.160000px;}
.y1{bottom:69.300000px;}
.y3a{bottom:73.440000px;}
.y98{bottom:107.280000px;}
.y5e{bottom:111.240000px;}
.y1dc{bottom:111.315600px;}
.y213{bottom:112.104000px;}
.y1bb{bottom:113.113440px;}
.y1a5{bottom:117.185040px;}
.y16f{bottom:117.367920px;}
.y17e{bottom:118.283760px;}
.y172{bottom:120.054420px;}
.y33{bottom:122.047920px;}
.y107{bottom:124.200000px;}
.y5d{bottom:126.540000px;}
.ye8{bottom:128.222640px;}
.y1db{bottom:130.210560px;}
.y212{bottom:131.181120px;}
.y5c{bottom:132.120000px;}
.y1ba{bottom:132.190560px;}
.y1a4{bottom:136.080000px;}
.y16e{bottom:136.262880px;}
.y171{bottom:137.340000px;}
.y17d{bottom:137.360880px;}
.y32{bottom:140.942880px;}
.y95{bottom:142.920000px;}
.y106{bottom:143.100000px;}
.ye7{bottom:147.299760px;}
.y13b{bottom:147.826800px;}
.y96{bottom:148.860000px;}
.y1da{bottom:149.105520px;}
.y211{bottom:150.076080px;}
.y1b9{bottom:151.085520px;}
.y170{bottom:151.380000px;}
.y1a3{bottom:155.209680px;}
.y16d{bottom:155.340000px;}
.y17c{bottom:156.255840px;}
.y31{bottom:160.020000px;}
.y105{bottom:161.100000px;}
.y97{bottom:161.280000px;}
.ye6{bottom:166.194720px;}
.y13a{bottom:166.721760px;}
.y1d9{bottom:168.182640px;}
.y210{bottom:169.153200px;}
.y1b8{bottom:169.980480px;}
.y1a2{bottom:174.104640px;}
.y16c{bottom:174.234960px;}
.y17b{bottom:175.332960px;}
.y92{bottom:176.940000px;}
.y104{bottom:179.280000px;}
.y30{bottom:179.820000px;}
.y93{bottom:182.880000px;}
.ye5{bottom:185.089680px;}
.y139{bottom:185.616720px;}
.y1d8{bottom:187.077600px;}
.y20f{bottom:188.048160px;}
.y1b7{bottom:189.057600px;}
.y1a1{bottom:193.181760px;}
.y16b{bottom:193.312080px;}
.y17a{bottom:194.227920px;}
.y94{bottom:195.300000px;}
.y103{bottom:197.280000px;}
.y2f{bottom:203.040000px;}
.ye4{bottom:204.166800px;}
.y138{bottom:204.693840px;}
.y1d7{bottom:206.154720px;}
.y20e{bottom:206.943120px;}
.y1b6{bottom:207.952560px;}
.y8f{bottom:210.960000px;}
.y1a0{bottom:212.076720px;}
.y16a{bottom:212.207040px;}
.y179{bottom:213.122880px;}
.y102{bottom:215.460000px;}
.y90{bottom:216.900000px;}
.ye3{bottom:223.061760px;}
.y137{bottom:223.588800px;}
.y1d6{bottom:225.049680px;}
.y2e{bottom:225.720000px;}
.y20d{bottom:226.020240px;}
.y1b5{bottom:227.029680px;}
.y91{bottom:229.495500px;}
.y19f{bottom:231.153840px;}
.y169{bottom:231.284160px;}
.y178{bottom:232.200000px;}
.y101{bottom:235.260000px;}
.ye2{bottom:242.138880px;}
.y136{bottom:242.665920px;}
.y1d5{bottom:243.944640px;}
.y2d{bottom:244.371600px;}
.y20c{bottom:244.915200px;}
.y8c{bottom:244.980000px;}
.y1b4{bottom:245.924640px;}
.y19e{bottom:250.048800px;}
.y168{bottom:250.179120px;}
.y177{bottom:250.734420px;}
.y8d{bottom:250.920000px;}
.y100{bottom:253.980000px;}
.ye1{bottom:261.033840px;}
.y135{bottom:261.560880px;}
.y2c{bottom:261.657180px;}
.y1d4{bottom:263.021760px;}
.y8e{bottom:263.515500px;}
.y20b{bottom:263.992320px;}
.y1b3{bottom:265.001760px;}
.y176{bottom:268.020000px;}
.y19d{bottom:268.943760px;}
.y167{bottom:269.074080px;}
.yff{bottom:272.160000px;}
.y2b{bottom:278.763480px;}
.y88{bottom:279.000000px;}
.ye0{bottom:279.928800px;}
.y134{bottom:280.455840px;}
.y175{bottom:281.878560px;}
.y1d3{bottom:281.916720px;}
.y20a{bottom:282.887280px;}
.y1b2{bottom:283.896720px;}
.y8a{bottom:284.940000px;}
.y19c{bottom:288.020880px;}
.y166{bottom:288.151200px;}
.yfe{bottom:290.340000px;}
.y181{bottom:293.040000px;}
.y2a{bottom:296.049060px;}
.y8b{bottom:297.535500px;}
.ydf{bottom:299.005920px;}
.y133{bottom:299.532960px;}
.y1d2{bottom:300.993840px;}
.y209{bottom:301.782240px;}
.y1b1{bottom:302.791680px;}
.y19b{bottom:306.915840px;}
.y165{bottom:307.046160px;}
.yfd{bottom:308.340000px;}
.y85{bottom:313.200000px;}
.y29{bottom:313.334640px;}
.yde{bottom:317.900880px;}
.y132{bottom:318.427920px;}
.y86{bottom:319.140000px;}
.y1d1{bottom:319.888800px;}
.y208{bottom:320.859360px;}
.y1b0{bottom:321.868800px;}
.y19a{bottom:325.992960px;}
.y164{bottom:326.123280px;}
.yfa{bottom:326.520000px;}
.y28{bottom:330.620220px;}
.y87{bottom:331.560000px;}
.ydd{bottom:336.978000px;}
.y131{bottom:337.505040px;}
.y1d0{bottom:338.783760px;}
.y207{bottom:339.754320px;}
.y1af{bottom:340.763760px;}
.yf9{bottom:344.520000px;}
.y199{bottom:344.887920px;}
.y163{bottom:345.018240px;}
.y82{bottom:347.220000px;}
.y27{bottom:347.905800px;}
.y241{bottom:350.105040px;}
.y83{bottom:353.160000px;}
.ydc{bottom:355.872960px;}
.y130{bottom:356.400000px;}
.y1cf{bottom:357.860880px;}
.y206{bottom:358.831440px;}
.y1ae{bottom:359.840880px;}
.y198{bottom:363.782880px;}
.y162{bottom:363.913200px;}
.y26{bottom:365.012100px;}
.yf7{bottom:365.040000px;}
.y84{bottom:365.580000px;}
.y240{bottom:369.000000px;}
.ydb{bottom:374.767920px;}
.y12f{bottom:374.940000px;}
.y1ce{bottom:376.755840px;}
.y205{bottom:377.726400px;}
.yf4{bottom:378.540000px;}
.y1ad{bottom:378.735840px;}
.y7e{bottom:381.240000px;}
.y25{bottom:382.297680px;}
.y197{bottom:382.865040px;}
.y161{bottom:382.990320px;}
.yf5{bottom:384.840000px;}
.y80{bottom:387.180000px;}
.y23f{bottom:387.300600px;}
.y12e{bottom:392.580000px;}
.yda{bottom:393.845040px;}
.y1cd{bottom:395.832960px;}
.y204{bottom:396.621360px;}
.y1ac{bottom:397.630800px;}
.y24{bottom:399.583260px;}
.y81{bottom:399.600000px;}
.y196{bottom:401.767920px;}
.y160{bottom:401.885280px;}
.y23e{bottom:404.586180px;}
.yf3{bottom:406.620000px;}
.y12d{bottom:411.120000px;}
.yd9{bottom:412.740000px;}
.y1cc{bottom:414.727920px;}
.yf2{bottom:415.411380px;}
.y203{bottom:415.698480px;}
.y7c{bottom:416.700000px;}
.y1ab{bottom:416.707920px;}
.y23{bottom:416.868840px;}
.y195{bottom:420.845040px;}
.y15f{bottom:420.962400px;}
.y23d{bottom:421.871760px;}
.y12c{bottom:429.660000px;}
.yd8{bottom:431.268840px;}
.yf1{bottom:432.696960px;}
.y1cb{bottom:433.622880px;}
.y22{bottom:434.154420px;}
.y202{bottom:434.593440px;}
.y7a{bottom:435.240000px;}
.y1aa{bottom:435.602880px;}
.y23c{bottom:439.157340px;}
.y194{bottom:439.745040px;}
.y15e{bottom:439.857360px;}
.yd7{bottom:448.554420px;}
.yf0{bottom:449.803260px;}
.y21{bottom:451.440000px;}
.y1ca{bottom:452.700000px;}
.y12b{bottom:453.065040px;}
.y76{bottom:453.600000px;}
.y201{bottom:453.670560px;}
.y1a9{bottom:454.680000px;}
.y23b{bottom:456.263640px;}
.y193{bottom:458.642880px;}
.y15d{bottom:458.752320px;}
.y78{bottom:464.220000px;}
.yd6{bottom:465.840000px;}
.yef{bottom:467.088840px;}
.y20{bottom:469.080000px;}
.y12a{bottom:471.960000px;}
.y1c9{bottom:472.500000px;}
.y200{bottom:472.565520px;}
.y1a8{bottom:473.213700px;}
.y23a{bottom:473.549220px;}
.y192{bottom:477.725040px;}
.y15c{bottom:477.829440px;}
.yd4{bottom:481.320000px;}
.yee{bottom:484.374420px;}
.yd5{bottom:485.820000px;}
.y75{bottom:487.440000px;}
.y129{bottom:490.140000px;}
.y1a7{bottom:490.320000px;}
.y239{bottom:490.834800px;}
.y1ff{bottom:491.460480px;}
.y1f{bottom:491.580000px;}
.y1c8{bottom:495.748800px;}
.y74{bottom:496.248120px;}
.y15b{bottom:496.724400px;}
.y191{bottom:496.761120px;}
.yed{bottom:501.660000px;}
.y128{bottom:505.800000px;}
.y238{bottom:508.120380px;}
.y1e{bottom:510.265800px;}
.y1fe{bottom:510.537600px;}
.y1a6{bottom:511.380000px;}
.yd1{bottom:513.000000px;}
.y73{bottom:513.533700px;}
.y1c7{bottom:514.825920px;}
.y15a{bottom:515.801520px;}
.y190{bottom:515.838240px;}
.yec{bottom:516.960000px;}
.y127{bottom:519.660000px;}
.yeb{bottom:522.540000px;}
.y237{bottom:525.405960px;}
.y126{bottom:526.680000px;}
.y1d{bottom:527.551380px;}
.y1fd{bottom:529.432560px;}
.y72{bottom:530.640000px;}
.y1c6{bottom:533.720880px;}
.y159{bottom:534.696480px;}
.y18f{bottom:534.733200px;}
.y5b{bottom:539.100000px;}
.y236{bottom:542.691540px;}
.y1c{bottom:544.836960px;}
.yd0{bottom:544.860000px;}
.y71{bottom:548.478000px;}
.y5a{bottom:548.506800px;}
.y1fc{bottom:548.509680px;}
.y125{bottom:549.180000px;}
.y1c5{bottom:552.798000px;}
.y158{bottom:553.591440px;}
.y18e{bottom:553.628160px;}
.y235{bottom:559.797840px;}
.y1b{bottom:562.122540px;}
.y70{bottom:567.372960px;}
.y59{bottom:567.401760px;}
.y1fb{bottom:567.404640px;}
.y124{bottom:571.680000px;}
.y1c4{bottom:571.692960px;}
.y157{bottom:572.668560px;}
.y18d{bottom:572.705280px;}
.ycc{bottom:576.540000px;}
.y234{bottom:577.083420px;}
.y1a{bottom:579.228840px;}
.y6f{bottom:586.450080px;}
.y58{bottom:586.478880px;}
.y1fa{bottom:586.481760px;}
.y1c3{bottom:590.587920px;}
.y156{bottom:591.563520px;}
.y18c{bottom:591.600240px;}
.yce{bottom:592.380000px;}
.y123{bottom:594.180000px;}
.y233{bottom:594.369000px;}
.y19{bottom:596.514420px;}
.y6e{bottom:605.345040px;}
.y57{bottom:605.373840px;}
.y1f9{bottom:605.376720px;}
.yc9{bottom:609.120000px;}
.y1c2{bottom:609.665040px;}
.y155{bottom:610.640640px;}
.y18b{bottom:610.677360px;}
.y232{bottom:611.654580px;}
.y121{bottom:616.680000px;}
.y18{bottom:619.020000px;}
.y6d{bottom:624.240000px;}
.y56{bottom:624.268800px;}
.y1f8{bottom:624.271680px;}
.y1c1{bottom:628.560000px;}
.y231{bottom:628.940160px;}
.yc6{bottom:629.280000px;}
.y154{bottom:629.535600px;}
.y18a{bottom:629.572320px;}
.y17{bottom:631.040220px;}
.yc7{bottom:635.220000px;}
.y120{bottom:639.180000px;}
.y55{bottom:643.345920px;}
.y1f7{bottom:643.348800px;}
.y6c{bottom:644.040000px;}
.y230{bottom:646.046460px;}
.y1c0{bottom:647.088840px;}
.yc8{bottom:647.640000px;}
.y16{bottom:648.325800px;}
.y153{bottom:648.430560px;}
.y189{bottom:648.467280px;}
.y54{bottom:662.240880px;}
.y1f6{bottom:662.243760px;}
.y11f{bottom:662.400000px;}
.yc3{bottom:663.300000px;}
.y22f{bottom:663.332040px;}
.y1bf{bottom:664.374420px;}
.y15{bottom:665.611380px;}
.y6b{bottom:667.486800px;}
.y152{bottom:667.507680px;}
.y188{bottom:667.544400px;}
.yc4{bottom:669.240000px;}
.y22e{bottom:680.617620px;}
.y53{bottom:681.318000px;}
.y1f5{bottom:681.320880px;}
.y1be{bottom:681.660000px;}
.yc5{bottom:681.835500px;}
.y14{bottom:682.717680px;}
.y11e{bottom:684.900000px;}
.y6a{bottom:686.381760px;}
.y151{bottom:686.402640px;}
.y187{bottom:686.439360px;}
.y1bd{bottom:696.960000px;}
.yc0{bottom:697.320000px;}
.y22d{bottom:697.903200px;}
.y13{bottom:700.003260px;}
.y52{bottom:700.212960px;}
.y1f4{bottom:700.215840px;}
.y1bc{bottom:702.540000px;}
.yc1{bottom:703.260000px;}
.y69{bottom:705.458880px;}
.y150{bottom:705.479760px;}
.y186{bottom:705.516480px;}
.y11d{bottom:707.400000px;}
.y22c{bottom:715.188780px;}
.yc2{bottom:715.855500px;}
.y12{bottom:717.288840px;}
.y51{bottom:719.107920px;}
.y1f3{bottom:719.110800px;}
.y68{bottom:724.353840px;}
.y14f{bottom:724.374720px;}
.y185{bottom:724.411440px;}
.y11c{bottom:729.900000px;}
.ybd{bottom:731.520000px;}
.y22b{bottom:732.474360px;}
.y11{bottom:734.574420px;}
.ybe{bottom:737.280000px;}
.y50{bottom:738.185040px;}
.y1f2{bottom:738.187920px;}
.y67{bottom:743.430960px;}
.y14e{bottom:743.451840px;}
.y184{bottom:743.488560px;}
.y22a{bottom:749.580660px;}
.ybf{bottom:749.875500px;}
.y11b{bottom:752.400000px;}
.y10{bottom:757.080000px;}
.y1f1{bottom:757.082880px;}
.y66{bottom:762.325920px;}
.y14d{bottom:762.346800px;}
.y183{bottom:762.383520px;}
.yba{bottom:765.540000px;}
.y229{bottom:766.866240px;}
.y174{bottom:767.152800px;}
.yf{bottom:768.960000px;}
.ybb{bottom:771.479850px;}
.y119{bottom:774.900000px;}
.y1f0{bottom:776.214720px;}
.y4f{bottom:776.880000px;}
.y17f{bottom:778.140000px;}
.y11a{bottom:780.840000px;}
.y65{bottom:781.220880px;}
.y14c{bottom:781.241760px;}
.y182{bottom:781.278480px;}
.y173{bottom:782.454240px;}
.ybc{bottom:783.899850px;}
.y228{bottom:784.151820px;}
.ye{bottom:786.960000px;}
.y1ef{bottom:795.109680px;}
.y111{bottom:799.020000px;}
.yb6{bottom:799.560000px;}
.y64{bottom:800.298000px;}
.y14b{bottom:800.318880px;}
.y4e{bottom:800.355600px;}
.y227{bottom:801.437400px;}
.y110{bottom:804.784500px;}
.yb8{bottom:805.500000px;}
.yd{bottom:807.660000px;}
.y113{bottom:810.533730px;}
.y1ee{bottom:814.004640px;}
.y112{bottom:816.479850px;}
.yb9{bottom:817.920000px;}
.y226{bottom:818.722980px;}
.y63{bottom:819.192960px;}
.y14a{bottom:819.213840px;}
.y4d{bottom:819.250560px;}
.y115{bottom:819.540000px;}
.y10f{bottom:824.580000px;}
.y114{bottom:825.294450px;}
.yc{bottom:828.360000px;}
.y1ed{bottom:833.081760px;}
.yb3{bottom:833.580000px;}
.y225{bottom:836.008560px;}
.y62{bottom:838.270080px;}
.y149{bottom:838.290960px;}
.y4c{bottom:838.327680px;}
.yb4{bottom:839.520000px;}
.y10e{bottom:844.920000px;}
.yb{bottom:849.060000px;}
.yb5{bottom:851.940000px;}
.y1ec{bottom:851.976720px;}
.y224{bottom:853.114860px;}
.y10d{bottom:853.740000px;}
.y61{bottom:857.165040px;}
.y148{bottom:857.185920px;}
.y4b{bottom:857.222640px;}
.yaf{bottom:867.600000px;}
.ya{bottom:869.580000px;}
.y223{bottom:870.400440px;}
.y1eb{bottom:871.053840px;}
.y10c{bottom:871.385040px;}
.yb0{bottom:873.540000px;}
.y60{bottom:876.062880px;}
.y147{bottom:876.080880px;}
.y4a{bottom:876.117600px;}
.yb1{bottom:886.135500px;}
.y222{bottom:887.686020px;}
.y1ea{bottom:889.948800px;}
.y9{bottom:890.115480px;}
.y10b{bottom:890.280000px;}
.y5f{bottom:895.145040px;}
.y146{bottom:895.158000px;}
.y49{bottom:895.194720px;}
.yac{bottom:901.620000px;}
.y221{bottom:904.971600px;}
.yad{bottom:907.560000px;}
.y10a{bottom:908.820000px;}
.y1e9{bottom:908.843760px;}
.y145{bottom:914.052960px;}
.y48{bottom:914.089680px;}
.y8{bottom:917.646480px;}
.yae{bottom:920.155500px;}
.y220{bottom:922.257180px;}
.y109{bottom:924.300000px;}
.y1e8{bottom:927.920880px;}
.y108{bottom:929.880000px;}
.y144{bottom:933.130080px;}
.y47{bottom:933.166800px;}
.ya9{bottom:935.820000px;}
.y21f{bottom:939.542760px;}
.yaa{bottom:941.580000px;}
.y7{bottom:945.369000px;}
.y1e7{bottom:946.815840px;}
.y143{bottom:952.025040px;}
.y46{bottom:952.061760px;}
.yab{bottom:954.175500px;}
.y21e{bottom:956.649060px;}
.y1e6{bottom:965.892960px;}
.ya6{bottom:969.840000px;}
.y142{bottom:970.940880px;}
.y45{bottom:970.956720px;}
.y6{bottom:972.900000px;}
.y21d{bottom:973.934640px;}
.ya7{bottom:975.780000px;}
.y1e5{bottom:984.787920px;}
.ya8{bottom:988.200000px;}
.y141{bottom:990.018000px;}
.y44{bottom:990.033840px;}
.y21c{bottom:991.220220px;}
.y5{bottom:998.460000px;}
.y1e4{bottom:1003.682880px;}
.ya3{bottom:1003.860000px;}
.y21b{bottom:1008.505800px;}
.y140{bottom:1008.912960px;}
.y43{bottom:1008.928800px;}
.ya4{bottom:1009.800000px;}
.y4{bottom:1017.720000px;}
.ya5{bottom:1022.220000px;}
.y1e3{bottom:1022.780880px;}
.y21a{bottom:1025.791380px;}
.y13f{bottom:1027.990080px;}
.y42{bottom:1028.005920px;}
.ya0{bottom:1037.880000px;}
.y3{bottom:1040.040000px;}
.y1e2{bottom:1041.675840px;}
.y219{bottom:1042.897680px;}
.ya1{bottom:1043.820000px;}
.y13e{bottom:1046.885040px;}
.y41{bottom:1046.900880px;}
.ya2{bottom:1056.240000px;}
.y218{bottom:1060.183260px;}
.y1e1{bottom:1060.752960px;}
.y13d{bottom:1065.782880px;}
.y40{bottom:1065.795840px;}
.yea{bottom:1068.657120px;}
.y9d{bottom:1071.900000px;}
.ye9{bottom:1075.500000px;}
.y217{bottom:1077.468840px;}
.y9e{bottom:1077.840000px;}
.y1e0{bottom:1079.647920px;}
.y13c{bottom:1084.865040px;}
.y3f{bottom:1084.872960px;}
.y9f{bottom:1090.435500px;}
.y216{bottom:1094.754420px;}
.y1df{bottom:1098.725040px;}
.y34{bottom:1103.040000px;}
.y3e{bottom:1103.767920px;}
.y9a{bottom:1105.920000px;}
.y35{bottom:1109.520000px;}
.y9b{bottom:1111.860000px;}
.y215{bottom:1112.040000px;}
.y1de{bottom:1117.620000px;}
.y3d{bottom:1122.845040px;}
.y9c{bottom:1124.455500px;}
.y37{bottom:1126.620000px;}
.y214{bottom:1127.340000px;}
.y1dd{bottom:1137.420000px;}
.y99{bottom:1141.560000px;}
.y3c{bottom:1141.740000px;}
.y39{bottom:1195.920000px;}
.h1f{height:15.480000px;}
.h3a{height:16.102969px;}
.h13{height:16.509023px;}
.h1a{height:17.460000px;}
.h1c{height:17.638500px;}
.h29{height:18.000000px;}
.h2b{height:18.180000px;}
.h27{height:18.900000px;}
.h28{height:19.080000px;}
.h22{height:19.440000px;}
.h2f{height:19.798500px;}
.h2e{height:22.498500px;}
.h30{height:22.500000px;}
.hf{height:24.840000px;}
.hb{height:27.014766px;}
.h17{height:30.960000px;}
.h24{height:31.678500px;}
.h25{height:31.680000px;}
.h26{height:31.860000px;}
.h2{height:33.518320px;}
.h1d{height:34.020000px;}
.h1e{height:34.200000px;}
.h21{height:34.201500px;}
.h11{height:35.519414px;}
.h23{height:35.991211px;}
.h1b{height:36.597656px;}
.h19{height:37.494141px;}
.h18{height:37.520508px;}
.ha{height:40.501406px;}
.hc{height:41.493516px;}
.h5{height:41.522695px;}
.h36{height:41.760000px;}
.h10{height:42.120000px;}
.h20{height:43.013672px;}
.h2d{height:43.018500px;}
.h2a{height:44.024062px;}
.h12{height:44.893125px;}
.h34{height:45.540000px;}
.h7{height:46.025156px;}
.h31{height:47.230313px;}
.h2c{height:47.894766px;}
.h3{height:48.796875px;}
.h8{height:50.027344px;}
.h38{height:52.211379px;}
.h14{height:52.577139px;}
.h33{height:52.692339px;}
.h32{height:52.744179px;}
.h15{height:52.755699px;}
.h16{height:52.764339px;}
.hd{height:54.390938px;}
.h39{height:56.136589px;}
.he{height:57.092344px;}
.h9{height:60.878320px;}
.h4{height:64.899844px;}
.h6{height:66.536367px;}
.h37{height:91.550039px;}
.h35{height:100.054688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:41.940000px;}
.w19{width:48.240000px;}
.w18{width:52.198500px;}
.w4{width:57.598500px;}
.w10{width:67.500000px;}
.w11{width:80.460000px;}
.w14{width:87.660000px;}
.w13{width:87.840000px;}
.w12{width:94.500000px;}
.w5{width:111.598500px;}
.w2{width:111.960000px;}
.w8{width:114.661500px;}
.wc{width:114.838500px;}
.we{width:117.000000px;}
.wa{width:117.901500px;}
.wd{width:127.620000px;}
.w9{width:135.000000px;}
.w7{width:138.240000px;}
.w16{width:140.040000px;}
.w6{width:175.500000px;}
.w17{width:181.980000px;}
.w15{width:182.520000px;}
.w3{width:300.598500px;}
.wb{width:675.000000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:8.100000px;}
.x44{left:9.720000px;}
.x18{left:10.800000px;}
.x3a{left:12.420000px;}
.x41{left:14.400000px;}
.x36{left:15.840000px;}
.x63{left:19.620000px;}
.x31{left:20.700000px;}
.x2e{left:23.220000px;}
.x2a{left:24.840000px;}
.x24{left:26.100000px;}
.x33{left:28.260000px;}
.x62{left:29.880000px;}
.x43{left:31.140000px;}
.x53{left:32.220000px;}
.x65{left:33.660000px;}
.x2c{left:34.920000px;}
.x45{left:37.080000px;}
.x23{left:38.520000px;}
.x5f{left:40.140000px;}
.x54{left:41.580000px;}
.x5d{left:43.380000px;}
.x64{left:47.160000px;}
.x50{left:54.360000px;}
.x3d{left:55.800000px;}
.x3f{left:57.240000px;}
.x3c{left:58.860000px;}
.x52{left:63.720000px;}
.x4f{left:64.980000px;}
.x29{left:67.500000px;}
.x3e{left:69.120000px;}
.x16{left:87.840000px;}
.x67{left:104.040000px;}
.x1{left:105.840000px;}
.x1e{left:107.460000px;}
.x1f{left:108.900000px;}
.x11{left:112.320000px;}
.xa{left:114.840000px;}
.x40{left:117.000000px;}
.x56{left:126.720000px;}
.x7{left:128.700000px;}
.x5{left:141.835320px;}
.x14{left:147.194460px;}
.x8{left:149.940000px;}
.x1c{left:158.749200px;}
.xb{left:160.381620px;}
.x3{left:166.500000px;}
.x10{left:173.394360px;}
.x2b{left:182.160000px;}
.x21{left:185.220000px;}
.x46{left:186.840000px;}
.x34{left:188.820000px;}
.xc{left:193.503600px;}
.x57{left:194.760000px;}
.x51{left:196.560000px;}
.x4b{left:204.660000px;}
.xd{left:206.785260px;}
.x2{left:213.840000px;}
.x58{left:217.797480px;}
.xf{left:222.024060px;}
.xe{left:227.103660px;}
.x13{left:252.880020px;}
.x12{left:270.539100px;}
.x22{left:284.400000px;}
.x5b{left:287.820000px;}
.x17{left:295.740000px;}
.x6{left:298.953540px;}
.x47{left:300.240000px;}
.x19{left:306.540000px;}
.x35{left:309.415500px;}
.x4c{left:313.560000px;}
.x61{left:328.320000px;}
.x9{left:342.900000px;}
.x5c{left:368.280000px;}
.x59{left:372.770100px;}
.x26{left:396.000000px;}
.x42{left:399.240000px;}
.x25{left:409.680000px;}
.x2d{left:418.320000px;}
.x37{left:425.160000px;}
.x4d{left:441.180000px;}
.x4{left:446.400000px;}
.x5e{left:462.780000px;}
.x1a{left:499.140000px;}
.x3b{left:514.620000px;}
.x27{left:534.240000px;}
.x2f{left:544.860000px;}
.x32{left:548.280000px;}
.x38{left:551.520000px;}
.x48{left:552.960000px;}
.x4e{left:579.420000px;}
.x60{left:638.280000px;}
.x28{left:648.900000px;}
.x49{left:674.820000px;}
.x30{left:682.209000px;}
.x39{left:685.615500px;}
.x15{left:699.660000px;}
.x66{left:702.900000px;}
.x5a{left:726.120000px;}
.x1d{left:769.680000px;}
.x1b{left:772.200000px;}
.x4a{left:780.840000px;}
.x55{left:787.500000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v5{vertical-align:18.560000pt;}
.v3{vertical-align:20.943360pt;}
.v1{vertical-align:24.320000pt;}
.ls58{letter-spacing:-1.295360pt;}
.ls16{letter-spacing:-1.115520pt;}
.ls11{letter-spacing:-0.832000pt;}
.ls59{letter-spacing:-0.765440pt;}
.ls40{letter-spacing:-0.720000pt;}
.ls1a{letter-spacing:-0.647680pt;}
.ls2e{letter-spacing:-0.529920pt;}
.ls42{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.478080pt;}
.ls1d{letter-spacing:-0.454400pt;}
.ls3c{letter-spacing:-0.412160pt;}
.ls1b{letter-spacing:-0.385920pt;}
.ls19{letter-spacing:-0.353280pt;}
.ls41{letter-spacing:-0.336000pt;}
.ls14{letter-spacing:-0.318720pt;}
.ls1f{letter-spacing:-0.318080pt;}
.lsb{letter-spacing:-0.300160pt;}
.ls30{letter-spacing:-0.299520pt;}
.ls3b{letter-spacing:-0.294400pt;}
.ls49{letter-spacing:-0.257280pt;}
.ls4f{letter-spacing:-0.235520pt;}
.lsd{letter-spacing:-0.214400pt;}
.ls15{letter-spacing:-0.212480pt;}
.ls3f{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls4e{letter-spacing:-0.117760pt;}
.lsf{letter-spacing:-0.106240pt;}
.ls3e{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.074880pt;}
.ls12{letter-spacing:-0.053120pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.053120pt;}
.ls64{letter-spacing:0.074880pt;}
.ls36{letter-spacing:0.096000pt;}
.ls13{letter-spacing:0.106240pt;}
.ls22{letter-spacing:0.117760pt;}
.ls60{letter-spacing:0.127488pt;}
.ls32{letter-spacing:0.135680pt;}
.ls4c{letter-spacing:0.136320pt;}
.ls35{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.159360pt;}
.ls9{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.169984pt;}
.ls1c{letter-spacing:0.171520pt;}
.ls4d{letter-spacing:0.183680pt;}
.ls39{letter-spacing:0.192000pt;}
.ls43{letter-spacing:0.208000pt;}
.ls0{letter-spacing:0.212480pt;}
.ls5{letter-spacing:0.217792pt;}
.ls29{letter-spacing:0.229632pt;}
.ls26{letter-spacing:0.235520pt;}
.ls6{letter-spacing:0.239040pt;}
.ls2{letter-spacing:0.244352pt;}
.lsa{letter-spacing:0.257280pt;}
.ls65{letter-spacing:0.259840pt;}
.ls2f{letter-spacing:0.294400pt;}
.ls44{letter-spacing:0.295872pt;}
.ls3d{letter-spacing:0.299520pt;}
.ls1e{letter-spacing:0.318080pt;}
.ls1{letter-spacing:0.318720pt;}
.ls3{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.336000pt;}
.lse{letter-spacing:0.343040pt;}
.ls57{letter-spacing:0.594688pt;}
.ls33{letter-spacing:0.647680pt;}
.ls20{letter-spacing:0.796800pt;}
.ls53{letter-spacing:1.095168pt;}
.ls5e{letter-spacing:1.230592pt;}
.ls2c{letter-spacing:1.295360pt;}
.ls7{letter-spacing:1.434240pt;}
.ls46{letter-spacing:1.943040pt;}
.ls24{letter-spacing:2.531840pt;}
.ls8{letter-spacing:2.709120pt;}
.ls25{letter-spacing:3.179520pt;}
.ls67{letter-spacing:3.346560pt;}
.ls2b{letter-spacing:3.827200pt;}
.ls2a{letter-spacing:4.474880pt;}
.ls34{letter-spacing:4.510208pt;}
.ls50{letter-spacing:4.527872pt;}
.ls61{letter-spacing:4.975360pt;}
.ls55{letter-spacing:5.122560pt;}
.ls45{letter-spacing:5.693696pt;}
.ls21{letter-spacing:5.770240pt;}
.ls27{letter-spacing:6.417920pt;}
.ls5d{letter-spacing:6.533760pt;}
.ls4b{letter-spacing:7.006720pt;}
.ls4a{letter-spacing:7.065600pt;}
.ls47{letter-spacing:8.302080pt;}
.ls63{letter-spacing:8.319744pt;}
.ls48{letter-spacing:8.343296pt;}
.ls5c{letter-spacing:8.949760pt;}
.ls62{letter-spacing:9.591552pt;}
.ls54{letter-spacing:9.597440pt;}
.ls28{letter-spacing:10.892800pt;}
.ls5a{letter-spacing:12.776960pt;}
.ls51{letter-spacing:12.794624pt;}
.ls52{letter-spacing:12.812288pt;}
.ls5b{letter-spacing:14.072320pt;}
.ls56{letter-spacing:17.899520pt;}
.ls5f{letter-spacing:19.842560pt;}
.ls23{letter-spacing:20.490240pt;}
.ls66{letter-spacing:50.729600pt;}
.ls69{letter-spacing:54.554240pt;}
.ls37{letter-spacing:99.984000pt;}
.ls38{letter-spacing:133.296000pt;}
.ls68{letter-spacing:178.695680pt;}
.ws2{word-spacing:-21.280000pt;}
.wsc5{word-spacing:-19.019520pt;}
.wscb{word-spacing:-18.794880pt;}
.wsb{word-spacing:-18.645120pt;}
.ws46{word-spacing:-18.420480pt;}
.ws3{word-spacing:-15.872000pt;}
.ws72{word-spacing:-15.014400pt;}
.wsa5{word-spacing:-14.955520pt;}
.ws94{word-spacing:-14.837760pt;}
.ws44{word-spacing:-14.720000pt;}
.ws9c{word-spacing:-14.602240pt;}
.ws9d{word-spacing:-14.484480pt;}
.ws6f{word-spacing:-14.425600pt;}
.wscd{word-spacing:-14.366720pt;}
.ws71{word-spacing:-14.307840pt;}
.wsa4{word-spacing:-14.190080pt;}
.ws45{word-spacing:-14.072320pt;}
.wsc6{word-spacing:-13.954560pt;}
.ws0{word-spacing:-13.598720pt;}
.wsa{word-spacing:-13.492480pt;}
.ws7{word-spacing:-13.386240pt;}
.ws43{word-spacing:-13.333120pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.226880pt;}
.ws1{word-spacing:-13.173760pt;}
.ws8{word-spacing:-13.067520pt;}
.ws6{word-spacing:-12.961280pt;}
.ws75{word-spacing:-12.336000pt;}
.ws77{word-spacing:-12.192000pt;}
.ws7b{word-spacing:-12.144000pt;}
.ws73{word-spacing:-12.096000pt;}
.ws7c{word-spacing:-12.000000pt;}
.ws74{word-spacing:-11.904000pt;}
.ws76{word-spacing:-11.808000pt;}
.ws12{word-spacing:-11.678080pt;}
.ws79{word-spacing:-11.664000pt;}
.ws7a{word-spacing:-11.520000pt;}
.ws11{word-spacing:-11.360000pt;}
.ws78{word-spacing:-11.280000pt;}
.wse{word-spacing:-11.063040pt;}
.ws13{word-spacing:-11.041920pt;}
.ws10{word-spacing:-10.905600pt;}
.wsf{word-spacing:-10.891520pt;}
.wsd{word-spacing:-10.720000pt;}
.ws93{word-spacing:-10.462720pt;}
.wsc{word-spacing:-10.419840pt;}
.wscc{word-spacing:-9.539840pt;}
.ws70{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws92{word-spacing:-8.000000pt;}
.wsc9{word-spacing:-3.944960pt;}
.wsc3{word-spacing:-3.827200pt;}
.ws38{word-spacing:-3.346560pt;}
.ws68{word-spacing:-3.297280pt;}
.ws3b{word-spacing:-3.179520pt;}
.ws37{word-spacing:-3.134080pt;}
.ws39{word-spacing:-2.974720pt;}
.ws3c{word-spacing:-2.826240pt;}
.wsc8{word-spacing:-2.709120pt;}
.ws84{word-spacing:-2.649600pt;}
.ws3d{word-spacing:-2.531840pt;}
.ws33{word-spacing:-2.337280pt;}
.ws63{word-spacing:-2.237440pt;}
.ws32{word-spacing:-2.071680pt;}
.ws4c{word-spacing:-2.060800pt;}
.ws4e{word-spacing:-1.943040pt;}
.ws97{word-spacing:-1.884160pt;}
.ws31{word-spacing:-1.859200pt;}
.ws34{word-spacing:-1.699840pt;}
.wsb3{word-spacing:-1.589760pt;}
.wsa9{word-spacing:-1.530880pt;}
.ws14{word-spacing:-1.457920pt;}
.wsb6{word-spacing:-1.434240pt;}
.ws4d{word-spacing:-1.413120pt;}
.wsb7{word-spacing:-1.328000pt;}
.ws64{word-spacing:-1.295360pt;}
.wsb5{word-spacing:-1.221760pt;}
.ws16{word-spacing:-0.900480pt;}
.ws8f{word-spacing:-0.816000pt;}
.ws17{word-spacing:-0.814720pt;}
.ws23{word-spacing:-0.796800pt;}
.ws83{word-spacing:-0.765440pt;}
.ws40{word-spacing:-0.728960pt;}
.wsc2{word-spacing:-0.690560pt;}
.ws80{word-spacing:-0.647680pt;}
.ws7e{word-spacing:-0.637440pt;}
.wsa0{word-spacing:-0.584320pt;}
.ws8e{word-spacing:-0.480000pt;}
.ws88{word-spacing:-0.449280pt;}
.ws41{word-spacing:-0.343040pt;}
.ws22{word-spacing:-0.318720pt;}
.ws52{word-spacing:-0.294400pt;}
.ws42{word-spacing:-0.257280pt;}
.ws1f{word-spacing:-0.212480pt;}
.ws8d{word-spacing:-0.192000pt;}
.ws96{word-spacing:-0.171520pt;}
.ws18{word-spacing:-0.170240pt;}
.ws1c{word-spacing:-0.159360pt;}
.ws90{word-spacing:-0.144000pt;}
.ws58{word-spacing:-0.117760pt;}
.ws20{word-spacing:-0.106240pt;}
.ws8c{word-spacing:-0.096000pt;}
.wsd4{word-spacing:-0.074880pt;}
.ws7d{word-spacing:-0.053120pt;}
.ws15{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.053120pt;}
.wsa2{word-spacing:0.117760pt;}
.ws1a{word-spacing:0.128000pt;}
.ws62{word-spacing:0.149760pt;}
.ws7f{word-spacing:0.159360pt;}
.ws1e{word-spacing:0.212480pt;}
.ws47{word-spacing:0.265600pt;}
.ws21{word-spacing:0.318720pt;}
.ws95{word-spacing:0.336000pt;}
.wsae{word-spacing:0.353280pt;}
.wsa1{word-spacing:0.371840pt;}
.ws3f{word-spacing:0.385920pt;}
.wsb1{word-spacing:0.412160pt;}
.ws3e{word-spacing:0.471680pt;}
.ws2b{word-spacing:0.478080pt;}
.ws91{word-spacing:0.480000pt;}
.ws19{word-spacing:0.510720pt;}
.ws9b{word-spacing:0.529920pt;}
.ws54{word-spacing:0.647680pt;}
.wsb2{word-spacing:0.765440pt;}
.ws1b{word-spacing:0.832000pt;}
.ws99{word-spacing:1.000960pt;}
.ws26{word-spacing:1.115520pt;}
.ws6b{word-spacing:1.177600pt;}
.ws6c{word-spacing:1.295360pt;}
.ws27{word-spacing:1.328000pt;}
.wsc7{word-spacing:1.487360pt;}
.wsb4{word-spacing:1.707520pt;}
.ws2d{word-spacing:1.752960pt;}
.ws4b{word-spacing:1.825280pt;}
.ws4a{word-spacing:1.943040pt;}
.ws2f{word-spacing:1.965440pt;}
.ws2e{word-spacing:2.390400pt;}
.ws82{word-spacing:2.472960pt;}
.ws30{word-spacing:2.496640pt;}
.ws48{word-spacing:2.590720pt;}
.wsb8{word-spacing:2.602880pt;}
.ws2c{word-spacing:2.762240pt;}
.wsba{word-spacing:2.885120pt;}
.ws8b{word-spacing:3.027840pt;}
.ws57{word-spacing:3.179520pt;}
.ws8a{word-spacing:3.240320pt;}
.ws89{word-spacing:3.559040pt;}
.ws50{word-spacing:3.709440pt;}
.ws51{word-spacing:3.827200pt;}
.wsd2{word-spacing:4.180480pt;}
.ws25{word-spacing:4.302720pt;}
.ws87{word-spacing:4.357120pt;}
.ws69{word-spacing:4.474880pt;}
.ws24{word-spacing:4.515200pt;}
.ws98{word-spacing:4.828160pt;}
.ws6a{word-spacing:5.004800pt;}
.ws49{word-spacing:5.122560pt;}
.ws86{word-spacing:5.475840pt;}
.ws5c{word-spacing:5.652480pt;}
.wsc1{word-spacing:5.683840pt;}
.wsc0{word-spacing:5.736960pt;}
.ws4f{word-spacing:5.770240pt;}
.wscf{word-spacing:5.888000pt;}
.wsbf{word-spacing:6.268160pt;}
.ws61{word-spacing:6.300160pt;}
.ws5b{word-spacing:6.417920pt;}
.ws36{word-spacing:6.480640pt;}
.ws35{word-spacing:6.640000pt;}
.ws28{word-spacing:6.905600pt;}
.ws9e{word-spacing:6.947840pt;}
.ws5a{word-spacing:7.065600pt;}
.wsce{word-spacing:7.418880pt;}
.ws53{word-spacing:7.536640pt;}
.ws29{word-spacing:7.543040pt;}
.ws59{word-spacing:7.595520pt;}
.wsa7{word-spacing:7.654400pt;}
.ws9f{word-spacing:7.713280pt;}
.ws2a{word-spacing:7.914880pt;}
.wsd0{word-spacing:8.007680pt;}
.wsd1{word-spacing:8.184320pt;}
.ws9a{word-spacing:8.302080pt;}
.wsd3{word-spacing:8.655360pt;}
.wsa8{word-spacing:8.949760pt;}
.wsaa{word-spacing:9.479680pt;}
.ws3a{word-spacing:9.597440pt;}
.ws60{word-spacing:10.127360pt;}
.wsb9{word-spacing:10.245120pt;}
.ws5d{word-spacing:10.775040pt;}
.ws5e{word-spacing:10.892800pt;}
.ws85{word-spacing:11.422720pt;}
.ws5f{word-spacing:11.540480pt;}
.wsac{word-spacing:12.188160pt;}
.ws65{word-spacing:12.659200pt;}
.wsab{word-spacing:12.776960pt;}
.ws6d{word-spacing:13.777920pt;}
.ws6e{word-spacing:14.072320pt;}
.wsa6{word-spacing:14.720000pt;}
.wsbd{word-spacing:15.249920pt;}
.ws66{word-spacing:15.367680pt;}
.ws67{word-spacing:16.015360pt;}
.wsbe{word-spacing:16.545280pt;}
.ws81{word-spacing:16.663040pt;}
.wsb0{word-spacing:17.781760pt;}
.wsad{word-spacing:17.899520pt;}
.wsaf{word-spacing:18.252800pt;}
.wsbc{word-spacing:19.194880pt;}
.wsbb{word-spacing:19.724800pt;}
.wsc4{word-spacing:19.842560pt;}
.ws56{word-spacing:20.372480pt;}
.ws55{word-spacing:20.490240pt;}
.wsa3{word-spacing:21.785600pt;}
.wsca{word-spacing:25.612800pt;}
._1b{margin-left:-9.455360pt;}
._b{margin-left:-4.515200pt;}
._a{margin-left:-3.385856pt;}
._10{margin-left:-2.348672pt;}
._1{margin-left:-1.226368pt;}
._0{width:0.969088pt;}
._8{width:2.056320pt;}
._e{width:2.993920pt;}
._16{width:4.062720pt;}
._7{width:5.033472pt;}
._9{width:6.881152pt;}
._c{width:8.377472pt;}
._f{width:11.136640pt;}
._18{width:16.054016pt;}
._17{width:18.924032pt;}
._d{width:20.136960pt;}
._5{width:47.282304pt;}
._6{width:48.180736pt;}
._1a{width:59.527680pt;}
._19{width:99.212800pt;}
._11{width:158.740480pt;}
._2{width:165.120000pt;}
._3{width:172.160000pt;}
._15{width:263.209600pt;}
._12{width:296.462720pt;}
._14{width:298.375040pt;}
._13{width:311.176960pt;}
._4{width:1427.192320pt;}
.fs8{font-size:21.120000pt;}
.fsb{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fsa{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fsc{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fse{font-size:117.120000pt;}
.fsd{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:2.400000pt;}
.yb2{bottom:2.559867pt;}
.y77{bottom:2.560000pt;}
.y7d{bottom:2.720000pt;}
.yfb{bottom:2.880000pt;}
.yfc{bottom:3.040000pt;}
.yf6{bottom:3.200000pt;}
.yf8{bottom:3.360000pt;}
.ycf{bottom:4.000000pt;}
.yd3{bottom:4.160000pt;}
.yca{bottom:4.320000pt;}
.y117{bottom:5.120000pt;}
.y116{bottom:6.400000pt;}
.y122{bottom:7.520000pt;}
.y7b{bottom:7.840000pt;}
.ycb{bottom:8.640000pt;}
.y118{bottom:8.800000pt;}
.y180{bottom:9.440000pt;}
.y79{bottom:16.320000pt;}
.ycd{bottom:18.080000pt;}
.yd2{bottom:18.240000pt;}
.yb7{bottom:19.039867pt;}
.y7f{bottom:19.040000pt;}
.y89{bottom:19.200000pt;}
.y36{bottom:27.360000pt;}
.y2{bottom:49.280000pt;}
.y3b{bottom:49.920000pt;}
.y1{bottom:61.600000pt;}
.y3a{bottom:65.280000pt;}
.y98{bottom:95.360000pt;}
.y5e{bottom:98.880000pt;}
.y1dc{bottom:98.947200pt;}
.y213{bottom:99.648000pt;}
.y1bb{bottom:100.545280pt;}
.y1a5{bottom:104.164480pt;}
.y16f{bottom:104.327040pt;}
.y17e{bottom:105.141120pt;}
.y172{bottom:106.715040pt;}
.y33{bottom:108.487040pt;}
.y107{bottom:110.400000pt;}
.y5d{bottom:112.480000pt;}
.ye8{bottom:113.975680pt;}
.y1db{bottom:115.742720pt;}
.y212{bottom:116.605440pt;}
.y5c{bottom:117.440000pt;}
.y1ba{bottom:117.502720pt;}
.y1a4{bottom:120.960000pt;}
.y16e{bottom:121.122560pt;}
.y171{bottom:122.080000pt;}
.y17d{bottom:122.098560pt;}
.y32{bottom:125.282560pt;}
.y95{bottom:127.040000pt;}
.y106{bottom:127.200000pt;}
.ye7{bottom:130.933120pt;}
.y13b{bottom:131.401600pt;}
.y96{bottom:132.320000pt;}
.y1da{bottom:132.538240pt;}
.y211{bottom:133.400960pt;}
.y1b9{bottom:134.298240pt;}
.y170{bottom:134.560000pt;}
.y1a3{bottom:137.964160pt;}
.y16d{bottom:138.080000pt;}
.y17c{bottom:138.894080pt;}
.y31{bottom:142.240000pt;}
.y105{bottom:143.200000pt;}
.y97{bottom:143.360000pt;}
.ye6{bottom:147.728640pt;}
.y13a{bottom:148.197120pt;}
.y1d9{bottom:149.495680pt;}
.y210{bottom:150.358400pt;}
.y1b8{bottom:151.093760pt;}
.y1a2{bottom:154.759680pt;}
.y16c{bottom:154.875520pt;}
.y17b{bottom:155.851520pt;}
.y92{bottom:157.280000pt;}
.y104{bottom:159.360000pt;}
.y30{bottom:159.840000pt;}
.y93{bottom:162.560000pt;}
.ye5{bottom:164.524160pt;}
.y139{bottom:164.992640pt;}
.y1d8{bottom:166.291200pt;}
.y20f{bottom:167.153920pt;}
.y1b7{bottom:168.051200pt;}
.y1a1{bottom:171.717120pt;}
.y16b{bottom:171.832960pt;}
.y17a{bottom:172.647040pt;}
.y94{bottom:173.600000pt;}
.y103{bottom:175.360000pt;}
.y2f{bottom:180.480000pt;}
.ye4{bottom:181.481600pt;}
.y138{bottom:181.950080pt;}
.y1d7{bottom:183.248640pt;}
.y20e{bottom:183.949440pt;}
.y1b6{bottom:184.846720pt;}
.y8f{bottom:187.520000pt;}
.y1a0{bottom:188.512640pt;}
.y16a{bottom:188.628480pt;}
.y179{bottom:189.442560pt;}
.y102{bottom:191.520000pt;}
.y90{bottom:192.800000pt;}
.ye3{bottom:198.277120pt;}
.y137{bottom:198.745600pt;}
.y1d6{bottom:200.044160pt;}
.y2e{bottom:200.640000pt;}
.y20d{bottom:200.906880pt;}
.y1b5{bottom:201.804160pt;}
.y91{bottom:203.996000pt;}
.y19f{bottom:205.470080pt;}
.y169{bottom:205.585920pt;}
.y178{bottom:206.400000pt;}
.y101{bottom:209.120000pt;}
.ye2{bottom:215.234560pt;}
.y136{bottom:215.703040pt;}
.y1d5{bottom:216.839680pt;}
.y2d{bottom:217.219200pt;}
.y20c{bottom:217.702400pt;}
.y8c{bottom:217.760000pt;}
.y1b4{bottom:218.599680pt;}
.y19e{bottom:222.265600pt;}
.y168{bottom:222.381440pt;}
.y177{bottom:222.875040pt;}
.y8d{bottom:223.040000pt;}
.y100{bottom:225.760000pt;}
.ye1{bottom:232.030080pt;}
.y135{bottom:232.498560pt;}
.y2c{bottom:232.584160pt;}
.y1d4{bottom:233.797120pt;}
.y8e{bottom:234.236000pt;}
.y20b{bottom:234.659840pt;}
.y1b3{bottom:235.557120pt;}
.y176{bottom:238.240000pt;}
.y19d{bottom:239.061120pt;}
.y167{bottom:239.176960pt;}
.yff{bottom:241.920000pt;}
.y2b{bottom:247.789760pt;}
.y88{bottom:248.000000pt;}
.ye0{bottom:248.825600pt;}
.y134{bottom:249.294080pt;}
.y175{bottom:250.558720pt;}
.y1d3{bottom:250.592640pt;}
.y20a{bottom:251.455360pt;}
.y1b2{bottom:252.352640pt;}
.y8a{bottom:253.280000pt;}
.y19c{bottom:256.018560pt;}
.y166{bottom:256.134400pt;}
.yfe{bottom:258.080000pt;}
.y181{bottom:260.480000pt;}
.y2a{bottom:263.154720pt;}
.y8b{bottom:264.476000pt;}
.ydf{bottom:265.783040pt;}
.y133{bottom:266.251520pt;}
.y1d2{bottom:267.550080pt;}
.y209{bottom:268.250880pt;}
.y1b1{bottom:269.148160pt;}
.y19b{bottom:272.814080pt;}
.y165{bottom:272.929920pt;}
.yfd{bottom:274.080000pt;}
.y85{bottom:278.400000pt;}
.y29{bottom:278.519680pt;}
.yde{bottom:282.578560pt;}
.y132{bottom:283.047040pt;}
.y86{bottom:283.680000pt;}
.y1d1{bottom:284.345600pt;}
.y208{bottom:285.208320pt;}
.y1b0{bottom:286.105600pt;}
.y19a{bottom:289.771520pt;}
.y164{bottom:289.887360pt;}
.yfa{bottom:290.240000pt;}
.y28{bottom:293.884640pt;}
.y87{bottom:294.720000pt;}
.ydd{bottom:299.536000pt;}
.y131{bottom:300.004480pt;}
.y1d0{bottom:301.141120pt;}
.y207{bottom:302.003840pt;}
.y1af{bottom:302.901120pt;}
.yf9{bottom:306.240000pt;}
.y199{bottom:306.567040pt;}
.y163{bottom:306.682880pt;}
.y82{bottom:308.640000pt;}
.y27{bottom:309.249600pt;}
.y241{bottom:311.204480pt;}
.y83{bottom:313.920000pt;}
.ydc{bottom:316.331520pt;}
.y130{bottom:316.800000pt;}
.y1cf{bottom:318.098560pt;}
.y206{bottom:318.961280pt;}
.y1ae{bottom:319.858560pt;}
.y198{bottom:323.362560pt;}
.y162{bottom:323.478400pt;}
.y26{bottom:324.455200pt;}
.yf7{bottom:324.480000pt;}
.y84{bottom:324.960000pt;}
.y240{bottom:328.000000pt;}
.ydb{bottom:333.127040pt;}
.y12f{bottom:333.280000pt;}
.y1ce{bottom:334.894080pt;}
.y205{bottom:335.756800pt;}
.yf4{bottom:336.480000pt;}
.y1ad{bottom:336.654080pt;}
.y7e{bottom:338.880000pt;}
.y25{bottom:339.820160pt;}
.y197{bottom:340.324480pt;}
.y161{bottom:340.435840pt;}
.yf5{bottom:342.080000pt;}
.y80{bottom:344.160000pt;}
.y23f{bottom:344.267200pt;}
.y12e{bottom:348.960000pt;}
.yda{bottom:350.084480pt;}
.y1cd{bottom:351.851520pt;}
.y204{bottom:352.552320pt;}
.y1ac{bottom:353.449600pt;}
.y24{bottom:355.185120pt;}
.y81{bottom:355.200000pt;}
.y196{bottom:357.127040pt;}
.y160{bottom:357.231360pt;}
.y23e{bottom:359.632160pt;}
.yf3{bottom:361.440000pt;}
.y12d{bottom:365.440000pt;}
.yd9{bottom:366.880000pt;}
.y1cc{bottom:368.647040pt;}
.yf2{bottom:369.254560pt;}
.y203{bottom:369.509760pt;}
.y7c{bottom:370.400000pt;}
.y1ab{bottom:370.407040pt;}
.y23{bottom:370.550080pt;}
.y195{bottom:374.084480pt;}
.y15f{bottom:374.188800pt;}
.y23d{bottom:374.997120pt;}
.y12c{bottom:381.920000pt;}
.yd8{bottom:383.350080pt;}
.yf1{bottom:384.619520pt;}
.y1cb{bottom:385.442560pt;}
.y22{bottom:385.915040pt;}
.y202{bottom:386.305280pt;}
.y7a{bottom:386.880000pt;}
.y1aa{bottom:387.202560pt;}
.y23c{bottom:390.362080pt;}
.y194{bottom:390.884480pt;}
.y15e{bottom:390.984320pt;}
.yd7{bottom:398.715040pt;}
.yf0{bottom:399.825120pt;}
.y21{bottom:401.280000pt;}
.y1ca{bottom:402.400000pt;}
.y12b{bottom:402.724480pt;}
.y76{bottom:403.200000pt;}
.y201{bottom:403.262720pt;}
.y1a9{bottom:404.160000pt;}
.y23b{bottom:405.567680pt;}
.y193{bottom:407.682560pt;}
.y15d{bottom:407.779840pt;}
.y78{bottom:412.640000pt;}
.yd6{bottom:414.080000pt;}
.yef{bottom:415.190080pt;}
.y20{bottom:416.960000pt;}
.y12a{bottom:419.520000pt;}
.y1c9{bottom:420.000000pt;}
.y200{bottom:420.058240pt;}
.y1a8{bottom:420.634400pt;}
.y23a{bottom:420.932640pt;}
.y192{bottom:424.644480pt;}
.y15c{bottom:424.737280pt;}
.yd4{bottom:427.840000pt;}
.yee{bottom:430.555040pt;}
.yd5{bottom:431.840000pt;}
.y75{bottom:433.280000pt;}
.y129{bottom:435.680000pt;}
.y1a7{bottom:435.840000pt;}
.y239{bottom:436.297600pt;}
.y1ff{bottom:436.853760pt;}
.y1f{bottom:436.960000pt;}
.y1c8{bottom:440.665600pt;}
.y74{bottom:441.109440pt;}
.y15b{bottom:441.532800pt;}
.y191{bottom:441.565440pt;}
.yed{bottom:445.920000pt;}
.y128{bottom:449.600000pt;}
.y238{bottom:451.662560pt;}
.y1e{bottom:453.569600pt;}
.y1fe{bottom:453.811200pt;}
.y1a6{bottom:454.560000pt;}
.yd1{bottom:456.000000pt;}
.y73{bottom:456.474400pt;}
.y1c7{bottom:457.623040pt;}
.y15a{bottom:458.490240pt;}
.y190{bottom:458.522880pt;}
.yec{bottom:459.520000pt;}
.y127{bottom:461.920000pt;}
.yeb{bottom:464.480000pt;}
.y237{bottom:467.027520pt;}
.y126{bottom:468.160000pt;}
.y1d{bottom:468.934560pt;}
.y1fd{bottom:470.606720pt;}
.y72{bottom:471.680000pt;}
.y1c6{bottom:474.418560pt;}
.y159{bottom:475.285760pt;}
.y18f{bottom:475.318400pt;}
.y5b{bottom:479.200000pt;}
.y236{bottom:482.392480pt;}
.y1c{bottom:484.299520pt;}
.yd0{bottom:484.320000pt;}
.y71{bottom:487.536000pt;}
.y5a{bottom:487.561600pt;}
.y1fc{bottom:487.564160pt;}
.y125{bottom:488.160000pt;}
.y1c5{bottom:491.376000pt;}
.y158{bottom:492.081280pt;}
.y18e{bottom:492.113920pt;}
.y235{bottom:497.598080pt;}
.y1b{bottom:499.664480pt;}
.y70{bottom:504.331520pt;}
.y59{bottom:504.357120pt;}
.y1fb{bottom:504.359680pt;}
.y124{bottom:508.160000pt;}
.y1c4{bottom:508.171520pt;}
.y157{bottom:509.038720pt;}
.y18d{bottom:509.071360pt;}
.ycc{bottom:512.480000pt;}
.y234{bottom:512.963040pt;}
.y1a{bottom:514.870080pt;}
.y6f{bottom:521.288960pt;}
.y58{bottom:521.314560pt;}
.y1fa{bottom:521.317120pt;}
.y1c3{bottom:524.967040pt;}
.y156{bottom:525.834240pt;}
.y18c{bottom:525.866880pt;}
.yce{bottom:526.560000pt;}
.y123{bottom:528.160000pt;}
.y233{bottom:528.328000pt;}
.y19{bottom:530.235040pt;}
.y6e{bottom:538.084480pt;}
.y57{bottom:538.110080pt;}
.y1f9{bottom:538.112640pt;}
.yc9{bottom:541.440000pt;}
.y1c2{bottom:541.924480pt;}
.y155{bottom:542.791680pt;}
.y18b{bottom:542.824320pt;}
.y232{bottom:543.692960pt;}
.y121{bottom:548.160000pt;}
.y18{bottom:550.240000pt;}
.y6d{bottom:554.880000pt;}
.y56{bottom:554.905600pt;}
.y1f8{bottom:554.908160pt;}
.y1c1{bottom:558.720000pt;}
.y231{bottom:559.057920pt;}
.yc6{bottom:559.360000pt;}
.y154{bottom:559.587200pt;}
.y18a{bottom:559.619840pt;}
.y17{bottom:560.924640pt;}
.yc7{bottom:564.640000pt;}
.y120{bottom:568.160000pt;}
.y55{bottom:571.863040pt;}
.y1f7{bottom:571.865600pt;}
.y6c{bottom:572.480000pt;}
.y230{bottom:574.263520pt;}
.y1c0{bottom:575.190080pt;}
.yc8{bottom:575.680000pt;}
.y16{bottom:576.289600pt;}
.y153{bottom:576.382720pt;}
.y189{bottom:576.415360pt;}
.y54{bottom:588.658560pt;}
.y1f6{bottom:588.661120pt;}
.y11f{bottom:588.800000pt;}
.yc3{bottom:589.600000pt;}
.y22f{bottom:589.628480pt;}
.y1bf{bottom:590.555040pt;}
.y15{bottom:591.654560pt;}
.y6b{bottom:593.321600pt;}
.y152{bottom:593.340160pt;}
.y188{bottom:593.372800pt;}
.yc4{bottom:594.880000pt;}
.y22e{bottom:604.993440pt;}
.y53{bottom:605.616000pt;}
.y1f5{bottom:605.618560pt;}
.y1be{bottom:605.920000pt;}
.yc5{bottom:606.076000pt;}
.y14{bottom:606.860160pt;}
.y11e{bottom:608.800000pt;}
.y6a{bottom:610.117120pt;}
.y151{bottom:610.135680pt;}
.y187{bottom:610.168320pt;}
.y1bd{bottom:619.520000pt;}
.yc0{bottom:619.840000pt;}
.y22d{bottom:620.358400pt;}
.y13{bottom:622.225120pt;}
.y52{bottom:622.411520pt;}
.y1f4{bottom:622.414080pt;}
.y1bc{bottom:624.480000pt;}
.yc1{bottom:625.120000pt;}
.y69{bottom:627.074560pt;}
.y150{bottom:627.093120pt;}
.y186{bottom:627.125760pt;}
.y11d{bottom:628.800000pt;}
.y22c{bottom:635.723360pt;}
.yc2{bottom:636.316000pt;}
.y12{bottom:637.590080pt;}
.y51{bottom:639.207040pt;}
.y1f3{bottom:639.209600pt;}
.y68{bottom:643.870080pt;}
.y14f{bottom:643.888640pt;}
.y185{bottom:643.921280pt;}
.y11c{bottom:648.800000pt;}
.ybd{bottom:650.240000pt;}
.y22b{bottom:651.088320pt;}
.y11{bottom:652.955040pt;}
.ybe{bottom:655.360000pt;}
.y50{bottom:656.164480pt;}
.y1f2{bottom:656.167040pt;}
.y67{bottom:660.827520pt;}
.y14e{bottom:660.846080pt;}
.y184{bottom:660.878720pt;}
.y22a{bottom:666.293920pt;}
.ybf{bottom:666.556000pt;}
.y11b{bottom:668.800000pt;}
.y10{bottom:672.960000pt;}
.y1f1{bottom:672.962560pt;}
.y66{bottom:677.623040pt;}
.y14d{bottom:677.641600pt;}
.y183{bottom:677.674240pt;}
.yba{bottom:680.480000pt;}
.y229{bottom:681.658880pt;}
.y174{bottom:681.913600pt;}
.yf{bottom:683.520000pt;}
.ybb{bottom:685.759867pt;}
.y119{bottom:688.800000pt;}
.y1f0{bottom:689.968640pt;}
.y4f{bottom:690.560000pt;}
.y17f{bottom:691.680000pt;}
.y11a{bottom:694.080000pt;}
.y65{bottom:694.418560pt;}
.y14c{bottom:694.437120pt;}
.y182{bottom:694.469760pt;}
.y173{bottom:695.514880pt;}
.ybc{bottom:696.799867pt;}
.y228{bottom:697.023840pt;}
.ye{bottom:699.520000pt;}
.y1ef{bottom:706.764160pt;}
.y111{bottom:710.240000pt;}
.yb6{bottom:710.720000pt;}
.y64{bottom:711.376000pt;}
.y14b{bottom:711.394560pt;}
.y4e{bottom:711.427200pt;}
.y227{bottom:712.388800pt;}
.y110{bottom:715.364000pt;}
.yb8{bottom:716.000000pt;}
.yd{bottom:717.920000pt;}
.y113{bottom:720.474427pt;}
.y1ee{bottom:723.559680pt;}
.y112{bottom:725.759867pt;}
.yb9{bottom:727.040000pt;}
.y226{bottom:727.753760pt;}
.y63{bottom:728.171520pt;}
.y14a{bottom:728.190080pt;}
.y4d{bottom:728.222720pt;}
.y115{bottom:728.480000pt;}
.y10f{bottom:732.960000pt;}
.y114{bottom:733.595067pt;}
.yc{bottom:736.320000pt;}
.y1ed{bottom:740.517120pt;}
.yb3{bottom:740.960000pt;}
.y225{bottom:743.118720pt;}
.y62{bottom:745.128960pt;}
.y149{bottom:745.147520pt;}
.y4c{bottom:745.180160pt;}
.yb4{bottom:746.240000pt;}
.y10e{bottom:751.040000pt;}
.yb{bottom:754.720000pt;}
.yb5{bottom:757.280000pt;}
.y1ec{bottom:757.312640pt;}
.y224{bottom:758.324320pt;}
.y10d{bottom:758.880000pt;}
.y61{bottom:761.924480pt;}
.y148{bottom:761.943040pt;}
.y4b{bottom:761.975680pt;}
.yaf{bottom:771.200000pt;}
.ya{bottom:772.960000pt;}
.y223{bottom:773.689280pt;}
.y1eb{bottom:774.270080pt;}
.y10c{bottom:774.564480pt;}
.yb0{bottom:776.480000pt;}
.y60{bottom:778.722560pt;}
.y147{bottom:778.738560pt;}
.y4a{bottom:778.771200pt;}
.yb1{bottom:787.676000pt;}
.y222{bottom:789.054240pt;}
.y1ea{bottom:791.065600pt;}
.y9{bottom:791.213760pt;}
.y10b{bottom:791.360000pt;}
.y5f{bottom:795.684480pt;}
.y146{bottom:795.696000pt;}
.y49{bottom:795.728640pt;}
.yac{bottom:801.440000pt;}
.y221{bottom:804.419200pt;}
.yad{bottom:806.720000pt;}
.y10a{bottom:807.840000pt;}
.y1e9{bottom:807.861120pt;}
.y145{bottom:812.491520pt;}
.y48{bottom:812.524160pt;}
.y8{bottom:815.685760pt;}
.yae{bottom:817.916000pt;}
.y220{bottom:819.784160pt;}
.y109{bottom:821.600000pt;}
.y1e8{bottom:824.818560pt;}
.y108{bottom:826.560000pt;}
.y144{bottom:829.448960pt;}
.y47{bottom:829.481600pt;}
.ya9{bottom:831.840000pt;}
.y21f{bottom:835.149120pt;}
.yaa{bottom:836.960000pt;}
.y7{bottom:840.328000pt;}
.y1e7{bottom:841.614080pt;}
.y143{bottom:846.244480pt;}
.y46{bottom:846.277120pt;}
.yab{bottom:848.156000pt;}
.y21e{bottom:850.354720pt;}
.y1e6{bottom:858.571520pt;}
.ya6{bottom:862.080000pt;}
.y142{bottom:863.058560pt;}
.y45{bottom:863.072640pt;}
.y6{bottom:864.800000pt;}
.y21d{bottom:865.719680pt;}
.ya7{bottom:867.360000pt;}
.y1e5{bottom:875.367040pt;}
.ya8{bottom:878.400000pt;}
.y141{bottom:880.016000pt;}
.y44{bottom:880.030080pt;}
.y21c{bottom:881.084640pt;}
.y5{bottom:887.520000pt;}
.y1e4{bottom:892.162560pt;}
.ya3{bottom:892.320000pt;}
.y21b{bottom:896.449600pt;}
.y140{bottom:896.811520pt;}
.y43{bottom:896.825600pt;}
.ya4{bottom:897.600000pt;}
.y4{bottom:904.640000pt;}
.ya5{bottom:908.640000pt;}
.y1e3{bottom:909.138560pt;}
.y21a{bottom:911.814560pt;}
.y13f{bottom:913.768960pt;}
.y42{bottom:913.783040pt;}
.ya0{bottom:922.560000pt;}
.y3{bottom:924.480000pt;}
.y1e2{bottom:925.934080pt;}
.y219{bottom:927.020160pt;}
.ya1{bottom:927.840000pt;}
.y13e{bottom:930.564480pt;}
.y41{bottom:930.578560pt;}
.ya2{bottom:938.880000pt;}
.y218{bottom:942.385120pt;}
.y1e1{bottom:942.891520pt;}
.y13d{bottom:947.362560pt;}
.y40{bottom:947.374080pt;}
.yea{bottom:949.917440pt;}
.y9d{bottom:952.800000pt;}
.ye9{bottom:956.000000pt;}
.y217{bottom:957.750080pt;}
.y9e{bottom:958.080000pt;}
.y1e0{bottom:959.687040pt;}
.y13c{bottom:964.324480pt;}
.y3f{bottom:964.331520pt;}
.y9f{bottom:969.276000pt;}
.y216{bottom:973.115040pt;}
.y1df{bottom:976.644480pt;}
.y34{bottom:980.480000pt;}
.y3e{bottom:981.127040pt;}
.y9a{bottom:983.040000pt;}
.y35{bottom:986.240000pt;}
.y9b{bottom:988.320000pt;}
.y215{bottom:988.480000pt;}
.y1de{bottom:993.440000pt;}
.y3d{bottom:998.084480pt;}
.y9c{bottom:999.516000pt;}
.y37{bottom:1001.440000pt;}
.y214{bottom:1002.080000pt;}
.y1dd{bottom:1011.040000pt;}
.y99{bottom:1014.720000pt;}
.y3c{bottom:1014.880000pt;}
.y39{bottom:1063.040000pt;}
.h1f{height:13.760000pt;}
.h3a{height:14.313750pt;}
.h13{height:14.674687pt;}
.h1a{height:15.520000pt;}
.h1c{height:15.678667pt;}
.h29{height:16.000000pt;}
.h2b{height:16.160000pt;}
.h27{height:16.800000pt;}
.h28{height:16.960000pt;}
.h22{height:17.280000pt;}
.h2f{height:17.598667pt;}
.h2e{height:19.998667pt;}
.h30{height:20.000000pt;}
.hf{height:22.080000pt;}
.hb{height:24.013125pt;}
.h17{height:27.520000pt;}
.h24{height:28.158667pt;}
.h25{height:28.160000pt;}
.h26{height:28.320000pt;}
.h2{height:29.794062pt;}
.h1d{height:30.240000pt;}
.h1e{height:30.400000pt;}
.h21{height:30.401333pt;}
.h11{height:31.572812pt;}
.h23{height:31.992188pt;}
.h1b{height:32.531250pt;}
.h19{height:33.328125pt;}
.h18{height:33.351562pt;}
.ha{height:36.001250pt;}
.hc{height:36.883125pt;}
.h5{height:36.909063pt;}
.h36{height:37.120000pt;}
.h10{height:37.440000pt;}
.h20{height:38.234375pt;}
.h2d{height:38.238667pt;}
.h2a{height:39.132500pt;}
.h12{height:39.905000pt;}
.h34{height:40.480000pt;}
.h7{height:40.911250pt;}
.h31{height:41.982500pt;}
.h2c{height:42.573125pt;}
.h3{height:43.375000pt;}
.h8{height:44.468750pt;}
.h38{height:46.410115pt;}
.h14{height:46.735235pt;}
.h33{height:46.837635pt;}
.h32{height:46.883715pt;}
.h15{height:46.893955pt;}
.h16{height:46.901635pt;}
.hd{height:48.347500pt;}
.h39{height:49.899190pt;}
.he{height:50.748750pt;}
.h9{height:54.114063pt;}
.h4{height:57.688750pt;}
.h6{height:59.143438pt;}
.h37{height:81.377812pt;}
.h35{height:88.937500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:37.280000pt;}
.w19{width:42.880000pt;}
.w18{width:46.398667pt;}
.w4{width:51.198667pt;}
.w10{width:60.000000pt;}
.w11{width:71.520000pt;}
.w14{width:77.920000pt;}
.w13{width:78.080000pt;}
.w12{width:84.000000pt;}
.w5{width:99.198667pt;}
.w2{width:99.520000pt;}
.w8{width:101.921333pt;}
.wc{width:102.078667pt;}
.we{width:104.000000pt;}
.wa{width:104.801333pt;}
.wd{width:113.440000pt;}
.w9{width:120.000000pt;}
.w7{width:122.880000pt;}
.w16{width:124.480000pt;}
.w6{width:156.000000pt;}
.w17{width:161.760000pt;}
.w15{width:162.240000pt;}
.w3{width:267.198667pt;}
.wb{width:600.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:7.200000pt;}
.x44{left:8.640000pt;}
.x18{left:9.600000pt;}
.x3a{left:11.040000pt;}
.x41{left:12.800000pt;}
.x36{left:14.080000pt;}
.x63{left:17.440000pt;}
.x31{left:18.400000pt;}
.x2e{left:20.640000pt;}
.x2a{left:22.080000pt;}
.x24{left:23.200000pt;}
.x33{left:25.120000pt;}
.x62{left:26.560000pt;}
.x43{left:27.680000pt;}
.x53{left:28.640000pt;}
.x65{left:29.920000pt;}
.x2c{left:31.040000pt;}
.x45{left:32.960000pt;}
.x23{left:34.240000pt;}
.x5f{left:35.680000pt;}
.x54{left:36.960000pt;}
.x5d{left:38.560000pt;}
.x64{left:41.920000pt;}
.x50{left:48.320000pt;}
.x3d{left:49.600000pt;}
.x3f{left:50.880000pt;}
.x3c{left:52.320000pt;}
.x52{left:56.640000pt;}
.x4f{left:57.760000pt;}
.x29{left:60.000000pt;}
.x3e{left:61.440000pt;}
.x16{left:78.080000pt;}
.x67{left:92.480000pt;}
.x1{left:94.080000pt;}
.x1e{left:95.520000pt;}
.x1f{left:96.800000pt;}
.x11{left:99.840000pt;}
.xa{left:102.080000pt;}
.x40{left:104.000000pt;}
.x56{left:112.640000pt;}
.x7{left:114.400000pt;}
.x5{left:126.075840pt;}
.x14{left:130.839520pt;}
.x8{left:133.280000pt;}
.x1c{left:141.110400pt;}
.xb{left:142.561440pt;}
.x3{left:148.000000pt;}
.x10{left:154.128320pt;}
.x2b{left:161.920000pt;}
.x21{left:164.640000pt;}
.x46{left:166.080000pt;}
.x34{left:167.840000pt;}
.xc{left:172.003200pt;}
.x57{left:173.120000pt;}
.x51{left:174.720000pt;}
.x4b{left:181.920000pt;}
.xd{left:183.809120pt;}
.x2{left:190.080000pt;}
.x58{left:193.597760pt;}
.xf{left:197.354720pt;}
.xe{left:201.869920pt;}
.x13{left:224.782240pt;}
.x12{left:240.479200pt;}
.x22{left:252.800000pt;}
.x5b{left:255.840000pt;}
.x17{left:262.880000pt;}
.x6{left:265.736480pt;}
.x47{left:266.880000pt;}
.x19{left:272.480000pt;}
.x35{left:275.036000pt;}
.x4c{left:278.720000pt;}
.x61{left:291.840000pt;}
.x9{left:304.800000pt;}
.x5c{left:327.360000pt;}
.x59{left:331.351200pt;}
.x26{left:352.000000pt;}
.x42{left:354.880000pt;}
.x25{left:364.160000pt;}
.x2d{left:371.840000pt;}
.x37{left:377.920000pt;}
.x4d{left:392.160000pt;}
.x4{left:396.800000pt;}
.x5e{left:411.360000pt;}
.x1a{left:443.680000pt;}
.x3b{left:457.440000pt;}
.x27{left:474.880000pt;}
.x2f{left:484.320000pt;}
.x32{left:487.360000pt;}
.x38{left:490.240000pt;}
.x48{left:491.520000pt;}
.x4e{left:515.040000pt;}
.x60{left:567.360000pt;}
.x28{left:576.800000pt;}
.x49{left:599.840000pt;}
.x30{left:606.408000pt;}
.x39{left:609.436000pt;}
.x15{left:621.920000pt;}
.x66{left:624.800000pt;}
.x5a{left:645.440000pt;}
.x1d{left:684.160000pt;}
.x1b{left:686.400000pt;}
.x4a{left:694.080000pt;}
.x55{left:700.000000pt;}
}




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