
    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_f3467ab238fdee1e95bb0d8d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.045898;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_39c8c88ba1e068ca0521714d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958984;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_a27eff6d6575fafa0311ff24.woff')format("woff");}.ff3{font-family:ff3;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d2fb458f29c349414949f1c5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.947754;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_fbc96d27b32a58acd6773b47.woff')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_7f7a4efca1cc6feff3c249b9.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cf1557bc952913f8dfd8679a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v7{vertical-align:-24.120000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.080432px;}
.v1{vertical-align:20.880000px;}
.v6{vertical-align:24.115608px;}
.v8{vertical-align:27.000000px;}
.v2{vertical-align:29.880000px;}
.v3{vertical-align:37.801944px;}
.v4{vertical-align:39.962808px;}
.ls75{letter-spacing:-3.373056px;}
.ls45{letter-spacing:-2.654964px;}
.ls33{letter-spacing:-2.292624px;}
.ls36{letter-spacing:-1.936872px;}
.ls5c{letter-spacing:-1.574532px;}
.ls47{letter-spacing:-0.856440px;}
.ls69{letter-spacing:-0.494100px;}
.ls8d{letter-spacing:-0.428220px;}
.ls1e{letter-spacing:-0.151632px;}
.ls77{letter-spacing:-0.125172px;}
.ls76{letter-spacing:-0.118584px;}
.ls20{letter-spacing:-0.109044px;}
.ls52{letter-spacing:-0.105408px;}
.ls1f{letter-spacing:-0.096192px;}
.ls4f{letter-spacing:-0.092232px;}
.ls4c{letter-spacing:-0.079056px;}
.ls27{letter-spacing:-0.072468px;}
.ls46{letter-spacing:-0.065880px;}
.ls2b{letter-spacing:-0.059292px;}
.ls25{letter-spacing:-0.052704px;}
.ls81{letter-spacing:-0.048096px;}
.ls2a{letter-spacing:-0.046116px;}
.ls55{letter-spacing:-0.039528px;}
.ls2c{letter-spacing:-0.032940px;}
.ls21{letter-spacing:-0.026352px;}
.ls2e{letter-spacing:-0.019764px;}
.ls28{letter-spacing:-0.013176px;}
.ls74{letter-spacing:-0.012024px;}
.ls22{letter-spacing:-0.006588px;}
.ls73{letter-spacing:-0.006012px;}
.ls5{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.006588px;}
.lsd{letter-spacing:0.007200px;}
.ls6{letter-spacing:0.012024px;}
.ls19{letter-spacing:0.013176px;}
.lsa{letter-spacing:0.014400px;}
.ls14{letter-spacing:0.019764px;}
.ls13{letter-spacing:0.026352px;}
.ls10{letter-spacing:0.032940px;}
.ls6a{letter-spacing:0.036072px;}
.ls12{letter-spacing:0.039528px;}
.ls7{letter-spacing:0.042084px;}
.ls11{letter-spacing:0.043200px;}
.ls1b{letter-spacing:0.046116px;}
.ls18{letter-spacing:0.052704px;}
.ls5a{letter-spacing:0.054108px;}
.ls9{letter-spacing:0.058716px;}
.lse{letter-spacing:0.059292px;}
.ls60{letter-spacing:0.060120px;}
.ls17{letter-spacing:0.065880px;}
.ls2{letter-spacing:0.067104px;}
.ls80{letter-spacing:0.072144px;}
.lsc{letter-spacing:0.072468px;}
.ls3{letter-spacing:0.075492px;}
.ls1a{letter-spacing:0.079056px;}
.ls0{letter-spacing:0.083880px;}
.ls4d{letter-spacing:0.085644px;}
.ls39{letter-spacing:0.092232px;}
.ls4{letter-spacing:0.095904px;}
.ls16{letter-spacing:0.098820px;}
.ls3b{letter-spacing:0.105408px;}
.lsf{letter-spacing:0.111996px;}
.ls3d{letter-spacing:0.118584px;}
.ls78{letter-spacing:0.122160px;}
.ls79{letter-spacing:0.122760px;}
.ls5e{letter-spacing:0.125172px;}
.ls3a{letter-spacing:0.131760px;}
.ls38{letter-spacing:0.138348px;}
.ls1d{letter-spacing:0.144936px;}
.ls3e{letter-spacing:0.151524px;}
.ls63{letter-spacing:0.158112px;}
.ls87{letter-spacing:0.164700px;}
.ls24{letter-spacing:0.177876px;}
.ls7d{letter-spacing:0.178488px;}
.ls7c{letter-spacing:0.180000px;}
.ls7e{letter-spacing:0.180720px;}
.ls5d{letter-spacing:0.184464px;}
.ls37{letter-spacing:0.191052px;}
.ls7a{letter-spacing:0.197640px;}
.ls7b{letter-spacing:0.204228px;}
.ls31{letter-spacing:0.223992px;}
.ls1c{letter-spacing:0.230580px;}
.ls15{letter-spacing:0.243756px;}
.ls86{letter-spacing:0.245160px;}
.ls62{letter-spacing:0.270108px;}
.ls4a{letter-spacing:0.276696px;}
.ls84{letter-spacing:0.289872px;}
.ls43{letter-spacing:0.296460px;}
.ls82{letter-spacing:0.303048px;}
.ls3c{letter-spacing:0.316224px;}
.ls61{letter-spacing:0.335988px;}
.ls35{letter-spacing:0.362340px;}
.ls5f{letter-spacing:0.441396px;}
.ls83{letter-spacing:0.454572px;}
.ls2d{letter-spacing:0.586332px;}
.ls8e{letter-spacing:0.652212px;}
.ls44{letter-spacing:1.304424px;}
.ls68{letter-spacing:1.666764px;}
.ls50{letter-spacing:2.029104px;}
.ls48{letter-spacing:3.102948px;}
.ls89{letter-spacing:3.465288px;}
.ls88{letter-spacing:3.827628px;}
.ls42{letter-spacing:4.183380px;}
.ls67{letter-spacing:4.545720px;}
.ls64{letter-spacing:4.908060px;}
.ls8a{letter-spacing:5.263812px;}
.ls56{letter-spacing:5.626152px;}
.ls59{letter-spacing:5.988492px;}
.ls4e{letter-spacing:6.344244px;}
.ls4b{letter-spacing:7.068924px;}
.ls53{letter-spacing:7.787016px;}
.ls57{letter-spacing:8.505108px;}
.ls54{letter-spacing:9.223200px;}
.ls90{letter-spacing:9.585540px;}
.ls32{letter-spacing:9.947880px;}
.ls66{letter-spacing:11.028312px;}
.ls5b{letter-spacing:11.384064px;}
.ls34{letter-spacing:11.746404px;}
.ls23{letter-spacing:12.108744px;}
.ls8c{letter-spacing:12.826836px;}
.ls49{letter-spacing:13.189176px;}
.ls65{letter-spacing:15.343452px;}
.ls92{letter-spacing:16.423884px;}
.ls41{letter-spacing:16.786224px;}
.ls26{letter-spacing:17.866656px;}
.ls91{letter-spacing:18.228996px;}
.ls58{letter-spacing:20.745612px;}
.ls30{letter-spacing:21.107952px;}
.ls2f{letter-spacing:21.826044px;}
.ls51{letter-spacing:22.188384px;}
.ls29{letter-spacing:23.986908px;}
.ls8b{letter-spacing:26.503524px;}
.ls3f{letter-spacing:35.687196px;}
.ls40{letter-spacing:37.848060px;}
.ls6b{letter-spacing:49.910688px;}
.ls72{letter-spacing:97.792272px;}
.ls71{letter-spacing:102.832092px;}
.ls70{letter-spacing:116.153028px;}
.ls85{letter-spacing:142.287624px;}
.ls7f{letter-spacing:150.568740px;}
.ls6e{letter-spacing:175.958892px;}
.ls6d{letter-spacing:191.803032px;}
.ls6f{letter-spacing:254.751372px;}
.ls6c{letter-spacing:276.709176px;}
.ls8{letter-spacing:702.951120px;}
.ls8f{letter-spacing:849.107556px;}
.ls1{letter-spacing:910.323252px;}
.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;}
}
.ws7{word-spacing:-14.974524px;}
.ws11{word-spacing:-14.967936px;}
.ws10{word-spacing:-14.954760px;}
.ws3{word-spacing:-14.948172px;}
.ws12{word-spacing:-14.941584px;}
.ws14{word-spacing:-14.934996px;}
.ws13{word-spacing:-14.928408px;}
.ws8{word-spacing:-14.895468px;}
.ws5{word-spacing:-14.888880px;}
.ws6{word-spacing:-14.842764px;}
.ws2{word-spacing:-14.829588px;}
.ws15{word-spacing:-14.823000px;}
.ws4{word-spacing:-14.809824px;}
.ws9{word-spacing:-14.763708px;}
.wsd{word-spacing:-12.431556px;}
.wsc{word-spacing:-12.424968px;}
.wsb{word-spacing:-12.411792px;}
.wsf{word-spacing:-9.519120px;}
.ws1{word-spacing:-8.635248px;}
.wse{word-spacing:-0.111996px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:174.509532px;}
._96{margin-left:-150.548976px;}
._91{margin-left:-142.267860px;}
._99{margin-left:-27.547992px;}
._98{margin-left:-26.536464px;}
._f{margin-left:-24.587424px;}
._10{margin-left:-23.544504px;}
._18{margin-left:-22.500036px;}
._17{margin-left:-21.297996px;}
._19{margin-left:-20.288484px;}
._a0{margin-left:-18.980028px;}
._b{margin-left:-17.978652px;}
._c{margin-left:-16.917984px;}
._20{margin-left:-15.747336px;}
._24{margin-left:-14.240700px;}
._6{margin-left:-12.732588px;}
._5{margin-left:-11.562948px;}
._1c{margin-left:-9.954468px;}
._1d{margin-left:-8.900388px;}
._27{margin-left:-7.612704px;}
._28{margin-left:-6.386796px;}
._21{margin-left:-5.075352px;}
._7{margin-left:-3.920076px;}
._1{margin-left:-2.516400px;}
._0{margin-left:-1.021284px;}
._2{width:1.700712px;}
._8{width:3.623400px;}
._1a{width:4.894884px;}
._1b{width:6.078708px;}
._14{width:7.207272px;}
._11{width:8.379936px;}
._9{width:9.578952px;}
._a{width:10.758204px;}
._3{width:12.069216px;}
._4{width:13.116708px;}
._1f{width:16.049376px;}
._d{width:17.780004px;}
._2a{width:18.822924px;}
._29{width:20.679732px;}
._15{width:21.845808px;}
._16{width:22.879116px;}
._e{width:24.382188px;}
._1e{width:25.449444px;}
._22{width:26.668224px;}
._23{width:27.742356px;}
._97{width:30.106152px;}
._25{width:31.115124px;}
._26{width:32.228496px;}
._12{width:36.536040px;}
._13{width:37.684368px;}
._9b{width:39.738816px;}
._9a{width:40.799484px;}
._9f{width:47.703708px;}
._8b{width:51.208380px;}
._34{width:52.466832px;}
._44{width:54.067716px;}
._a1{width:57.045492px;}
._a2{width:58.106160px;}
._90{width:59.509548px;}
._7c{width:64.990620px;}
._7b{width:67.882752px;}
._41{width:69.338700px;}
._33{width:70.840764px;}
._8d{width:77.527440px;}
._31{width:79.167996px;}
._86{width:81.526500px;}
._81{width:83.654424px;}
._85{width:86.164452px;}
._78{width:87.323940px;}
._58{width:90.169956px;}
._30{width:97.634160px;}
._87{width:99.043992px;}
._7f{width:100.631700px;}
._94{width:103.253724px;}
._9c{width:104.986368px;}
._45{width:106.725600px;}
._38{width:112.364928px;}
._37{width:114.229332px;}
._2c{width:125.685864px;}
._7a{width:128.340828px;}
._3b{width:130.323816px;}
._8f{width:144.501336px;}
._3c{width:145.627740px;}
._43{width:155.022228px;}
._95{width:158.816916px;}
._7e{width:162.901476px;}
._65{width:173.368800px;}
._93{width:176.340996px;}
._83{width:182.171376px;}
._2f{width:183.548412px;}
._8c{width:184.668372px;}
._80{width:198.377856px;}
._75{width:201.803616px;}
._36{width:207.429768px;}
._8e{width:211.632768px;}
._2d{width:212.871456px;}
._8a{width:215.763588px;}
._92{width:222.259356px;}
._3a{width:223.636248px;}
._9e{width:225.131724px;}
._9d{width:226.429560px;}
._61{width:239.315688px;}
._79{width:240.370776px;}
._88{width:242.715096px;}
._63{width:249.652260px;}
._48{width:253.967400px;}
._40{width:257.274576px;}
._3e{width:261.352692px;}
._4f{width:270.562572px;}
._82{width:273.902688px;}
._53{width:287.948304px;}
._89{width:290.188368px;}
._4e{width:297.981828px;}
._57{width:304.372188px;}
._4c{width:306.276120px;}
._67{width:310.835016px;}
._54{width:313.773264px;}
._5b{width:322.937172px;}
._5e{width:324.551232px;}
._4a{width:350.804412px;}
._6b{width:365.304600px;}
._56{width:367.360056px;}
._64{width:375.850980px;}
._6a{width:389.910780px;}
._60{width:399.509496px;}
._47{width:410.142528px;}
._2b{width:419.807124px;}
._74{width:426.777228px;}
._84{width:430.624620px;}
._52{width:448.807500px;}
._71{width:476.897724px;}
._7d{width:484.698924px;}
._68{width:488.065392px;}
._6f{width:505.398420px;}
._6d{width:509.911200px;}
._50{width:524.009520px;}
._6e{width:530.011188px;}
._5c{width:533.674116px;}
._3d{width:552.706848px;}
._3f{width:555.480396px;}
._76{width:572.220504px;}
._35{width:594.059724px;}
._73{width:595.634256px;}
._6c{width:608.981544px;}
._42{width:610.055388px;}
._5d{width:632.467764px;}
._59{width:637.724988px;}
._51{width:646.381620px;}
._66{width:650.420064px;}
._77{width:662.989968px;}
._62{width:671.218380px;}
._4d{width:678.471768px;}
._49{width:683.089956px;}
._70{width:684.203328px;}
._5f{width:704.599776px;}
._55{width:707.939892px;}
._72{width:714.033792px;}
._32{width:715.292100px;}
._5a{width:785.059020px;}
._4b{width:786.099924px;}
._69{width:818.361360px;}
._46{width:822.406392px;}
._2e{width:965.102472px;}
._39{width:1027.352484px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs4{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.fs3{font-size:119.880000px;}
.fs2{font-size:132.120000px;}
.y0{bottom:0.000000px;}
.ydc{bottom:3.600450px;}
.y158{bottom:3.600600px;}
.y14{bottom:57.450450px;}
.y12{bottom:65.460600px;}
.y13{bottom:75.720450px;}
.y43{bottom:113.444571px;}
.y167{bottom:116.315085px;}
.y128{bottom:124.591449px;}
.y15f{bottom:126.210600px;}
.y9b{bottom:127.471170px;}
.yca{bottom:128.460828px;}
.y73{bottom:136.471548px;}
.y166{bottom:136.474365px;}
.yf9{bottom:137.371266px;}
.y15e{bottom:146.100132px;}
.y127{bottom:147.091116px;}
.y9a{bottom:147.652689px;}
.yc9{bottom:148.620108px;}
.y42{bottom:151.603914px;}
.y198{bottom:152.310450px;}
.y72{bottom:156.630828px;}
.y165{bottom:156.633645px;}
.yf8{bottom:159.870933px;}
.y11{bottom:162.931365px;}
.y15d{bottom:164.370600px;}
.y99{bottom:167.811969px;}
.yc8{bottom:168.690450px;}
.y126{bottom:169.590783px;}
.y197{bottom:172.472040px;}
.y71{bottom:176.790108px;}
.y164{bottom:176.792925px;}
.y15b{bottom:180.120000px;}
.yf7{bottom:182.370600px;}
.y15c{bottom:183.720450px;}
.y15a{bottom:183.721215px;}
.y98{bottom:187.882311px;}
.y41{bottom:189.763257px;}
.y125{bottom:192.090450px;}
.y196{bottom:192.631320px;}
.y70{bottom:196.860450px;}
.y163{bottom:196.863267px;}
.yc7{bottom:197.580450px;}
.y157{bottom:199.110000px;}
.y10{bottom:203.611068px;}
.yf6{bottom:204.870600px;}
.y97{bottom:208.041591px;}
.y40{bottom:209.922537px;}
.y195{bottom:212.790600px;}
.y124{bottom:214.590450px;}
.yc6{bottom:216.841485px;}
.y6f{bottom:217.042446px;}
.y159{bottom:221.610450px;}
.y156{bottom:221.610630px;}
.yf5{bottom:227.649756px;}
.y96{bottom:228.200871px;}
.y3f{bottom:229.992879px;}
.y194{bottom:232.868406px;}
.y162{bottom:235.022610px;}
.yc5{bottom:235.831395px;}
.y154{bottom:237.000000px;}
.y6e{bottom:237.201726px;}
.y122{bottom:237.452520px;}
.yf{bottom:244.200600px;}
.y121{bottom:247.532160px;}
.y95{bottom:248.360151px;}
.yf4{bottom:249.339099px;}
.y3e{bottom:250.152159px;}
.y193{bottom:253.027686px;}
.yc4{bottom:254.821305px;}
.y161{bottom:255.181890px;}
.y6d{bottom:257.361006px;}
.y123{bottom:257.522862px;}
.y155{bottom:259.590450px;}
.y153{bottom:259.590630px;}
.y94{bottom:268.519431px;}
.y3d{bottom:270.311439px;}
.ye{bottom:273.000450px;}
.y192{bottom:273.186966px;}
.yc3{bottom:273.811215px;}
.y152{bottom:274.980000px;}
.y160{bottom:275.341170px;}
.y120{bottom:279.212205px;}
.yf3{bottom:287.498442px;}
.y93{bottom:288.589773px;}
.y3c{bottom:290.470719px;}
.yc2{bottom:292.801125px;}
.y191{bottom:293.346246px;}
.y6c{bottom:295.520349px;}
.y151{bottom:297.570450px;}
.yf2{bottom:307.568784px;}
.y92{bottom:308.749053px;}
.y3b{bottom:310.629999px;}
.yc1{bottom:311.700450px;}
.y150{bottom:312.960000px;}
.y190{bottom:313.505526px;}
.y6b{bottom:315.590691px;}
.y14f{bottom:316.560450px;}
.y11f{bottom:317.371548px;}
.yd{bottom:323.850450px;}
.yf1{bottom:327.728064px;}
.y91{bottom:328.908333px;}
.yc0{bottom:330.691836px;}
.y3a{bottom:330.700341px;}
.y18f{bottom:333.575868px;}
.y6a{bottom:335.749971px;}
.y14e{bottom:336.999036px;}
.y11e{bottom:337.530828px;}
.yf0{bottom:347.887344px;}
.y90{bottom:349.067613px;}
.ybf{bottom:349.681746px;}
.y39{bottom:350.859621px;}
.y18e{bottom:353.735148px;}
.y69{bottom:355.909251px;}
.y14d{bottom:355.988946px;}
.y11d{bottom:357.601170px;}
.yc{bottom:360.300450px;}
.yef{bottom:368.046624px;}
.y8f{bottom:369.226893px;}
.ybe{bottom:369.391395px;}
.y38{bottom:371.018901px;}
.y18d{bottom:373.894428px;}
.y68{bottom:376.068531px;}
.y14c{bottom:377.228658px;}
.y11c{bottom:377.760450px;}
.yee{bottom:388.205904px;}
.ybd{bottom:388.381305px;}
.y8e{bottom:389.297235px;}
.y37{bottom:391.178181px;}
.y18c{bottom:394.053708px;}
.y67{bottom:396.227811px;}
.y11b{bottom:397.559802px;}
.yb{bottom:399.633924px;}
.ybc{bottom:407.371215px;}
.yed{bottom:408.276246px;}
.y8d{bottom:409.456515px;}
.y36{bottom:411.248523px;}
.y18b{bottom:414.212988px;}
.y14b{bottom:415.388001px;}
.y11a{bottom:415.920450px;}
.y66{bottom:416.298153px;}
.ybb{bottom:426.361125px;}
.yec{bottom:428.435526px;}
.y8c{bottom:429.615795px;}
.y18a{bottom:434.283330px;}
.ya{bottom:434.823726px;}
.y14a{bottom:435.547281px;}
.y65{bottom:436.457433px;}
.y119{bottom:437.251782px;}
.yba{bottom:445.260450px;}
.yeb{bottom:448.594806px;}
.y35{bottom:449.407866px;}
.y8b{bottom:449.775075px;}
.y189{bottom:454.442610px;}
.y149{bottom:455.706561px;}
.y64{bottom:456.616713px;}
.y118{bottom:459.751449px;}
.yb9{bottom:464.251836px;}
.yea{bottom:468.754086px;}
.y9{bottom:469.922943px;}
.y8a{bottom:469.934355px;}
.y188{bottom:474.601890px;}
.y148{bottom:475.776903px;}
.y63{bottom:476.775993px;}
.y34{bottom:478.568001px;}
.y117{bottom:482.251116px;}
.yb8{bottom:483.961485px;}
.ye9{bottom:488.913366px;}
.y89{bottom:490.004697px;}
.y187{bottom:494.761170px;}
.y147{bottom:495.936183px;}
.y62{bottom:496.935273px;}
.y33{bottom:498.727281px;}
.yb7{bottom:502.951395px;}
.y116{bottom:504.750783px;}
.ye8{bottom:508.983708px;}
.y88{bottom:510.163977px;}
.y186{bottom:514.920450px;}
.y146{bottom:516.095463px;}
.y61{bottom:517.005615px;}
.y32{bottom:518.886561px;}
.yb6{bottom:521.941305px;}
.y115{bottom:527.250450px;}
.ye7{bottom:529.142988px;}
.y87{bottom:530.323257px;}
.y185{bottom:534.991890px;}
.y145{bottom:536.254743px;}
.y60{bottom:537.164895px;}
.y31{bottom:538.956903px;}
.yb5{bottom:540.931215px;}
.ye6{bottom:549.302268px;}
.y114{bottom:549.753708px;}
.y86{bottom:550.482537px;}
.y184{bottom:555.151170px;}
.y144{bottom:556.414023px;}
.y5f{bottom:557.324175px;}
.y30{bottom:559.116183px;}
.yb4{bottom:559.921125px;}
.ye5{bottom:569.461548px;}
.y85{bottom:570.641817px;}
.y113{bottom:572.973114px;}
.y183{bottom:575.310450px;}
.y143{bottom:576.484365px;}
.y5e{bottom:577.483455px;}
.yb3{bottom:578.820450px;}
.y2f{bottom:579.275463px;}
.ye4{bottom:589.531890px;}
.y84{bottom:590.712159px;}
.y112{bottom:595.472781px;}
.y182{bottom:595.474806px;}
.y142{bottom:596.643645px;}
.y5d{bottom:597.642735px;}
.yb2{bottom:597.812016px;}
.y2e{bottom:599.434743px;}
.ye3{bottom:609.691170px;}
.y83{bottom:610.871439px;}
.y181{bottom:615.634086px;}
.yb1{bottom:616.801926px;}
.y141{bottom:616.802925px;}
.y5c{bottom:617.713077px;}
.y111{bottom:617.972448px;}
.y2d{bottom:619.594023px;}
.ye2{bottom:629.850450px;}
.y82{bottom:631.030719px;}
.y180{bottom:635.704428px;}
.yb0{bottom:636.511575px;}
.y140{bottom:636.962205px;}
.y5b{bottom:637.872357px;}
.y2c{bottom:639.664365px;}
.y110{bottom:640.472115px;}
.yaf{bottom:655.501485px;}
.y17f{bottom:655.863708px;}
.y13f{bottom:657.121485px;}
.y5a{bottom:658.031637px;}
.y2b{bottom:659.823645px;}
.y10f{bottom:662.971782px;}
.ye1{bottom:667.650450px;}
.y81{bottom:669.190062px;}
.yae{bottom:674.491395px;}
.y17e{bottom:676.022988px;}
.y13e{bottom:677.191827px;}
.y59{bottom:678.190917px;}
.y2a{bottom:679.982925px;}
.y10e{bottom:685.471449px;}
.ye0{bottom:687.001305px;}
.y80{bottom:689.260404px;}
.yad{bottom:693.481305px;}
.y17d{bottom:696.182268px;}
.y13d{bottom:697.351107px;}
.y58{bottom:698.261259px;}
.y29{bottom:700.142205px;}
.ydf{bottom:705.991215px;}
.y10d{bottom:707.971116px;}
.y7f{bottom:709.419684px;}
.yac{bottom:712.471215px;}
.y17c{bottom:716.252610px;}
.y57{bottom:718.420539px;}
.y28{bottom:720.301485px;}
.yde{bottom:724.981125px;}
.y7e{bottom:729.578964px;}
.y10c{bottom:730.470783px;}
.yab{bottom:731.370540px;}
.y13c{bottom:735.510450px;}
.y17b{bottom:736.411890px;}
.y56{bottom:738.579819px;}
.ydb{bottom:740.280000px;}
.y27{bottom:740.371827px;}
.ydd{bottom:743.880450px;}
.yda{bottom:743.880780px;}
.y7d{bottom:749.738244px;}
.yaa{bottom:750.360450px;}
.y10b{bottom:752.970450px;}
.y13b{bottom:756.300630px;}
.y17a{bottom:756.571170px;}
.y55{bottom:758.739099px;}
.yd9{bottom:762.870690px;}
.ya9{bottom:769.352106px;}
.y7c{bottom:769.897524px;}
.y13a{bottom:775.290540px;}
.y10a{bottom:775.473708px;}
.y179{bottom:776.730450px;}
.y26{bottom:778.531170px;}
.y54{bottom:778.898379px;}
.yd8{bottom:781.860600px;}
.ya8{bottom:788.342016px;}
.y139{bottom:794.280450px;}
.y178{bottom:796.890108px;}
.y25{bottom:798.690450px;}
.y109{bottom:798.693114px;}
.y53{bottom:798.968721px;}
.yd7{bottom:800.850450px;}
.y7b{bottom:807.967929px;}
.ya7{bottom:808.051665px;}
.y138{bottom:813.270450px;}
.y177{bottom:816.960450px;}
.y52{bottom:819.128001px;}
.y24{bottom:819.300450px;}
.y108{bottom:821.192781px;}
.yd6{bottom:821.285571px;}
.ya6{bottom:827.041575px;}
.y7a{bottom:828.127209px;}
.yd5{bottom:830.824995px;}
.y137{bottom:832.981692px;}
.y176{bottom:837.121890px;}
.y51{bottom:839.287281px;}
.y23{bottom:840.811890px;}
.y134{bottom:842.432178px;}
.y107{bottom:843.692448px;}
.ya5{bottom:846.031485px;}
.y79{bottom:848.286489px;}
.y133{bottom:851.971602px;}
.y175{bottom:857.281170px;}
.y50{bottom:859.446561px;}
.y22{bottom:860.971170px;}
.y135{bottom:861.422088px;}
.yd4{bottom:861.605778px;}
.ya4{bottom:864.930810px;}
.y106{bottom:866.192115px;}
.y78{bottom:868.445769px;}
.y136{bottom:870.961512px;}
.y174{bottom:877.440450px;}
.y4f{bottom:879.605841px;}
.y21{bottom:881.130450px;}
.ya3{bottom:883.920720px;}
.y8{bottom:887.793195px;}
.y77{bottom:888.605049px;}
.y105{bottom:888.691782px;}
.y132{bottom:891.481485px;}
.y173{bottom:897.600828px;}
.y4e{bottom:899.676183px;}
.y20{bottom:901.650450px;}
.ya2{bottom:902.910630px;}
.y76{bottom:908.675391px;}
.y104{bottom:911.191449px;}
.y172{bottom:917.671170px;}
.yd3{bottom:919.835463px;}
.ya1{bottom:921.900540px;}
.y7{bottom:922.892412px;}
.y1f{bottom:923.161890px;}
.y75{bottom:928.834671px;}
.y131{bottom:929.640828px;}
.y103{bottom:933.691116px;}
.y171{bottom:937.830450px;}
.y4d{bottom:937.835526px;}
.yd2{bottom:939.994743px;}
.ya0{bottom:940.890450px;}
.y1e{bottom:943.321170px;}
.y74{bottom:948.993951px;}
.y130{bottom:949.711170px;}
.y102{bottom:956.190783px;}
.y170{bottom:957.994428px;}
.y4c{bottom:957.994806px;}
.y6{bottom:958.082214px;}
.y9f{bottom:959.790540px;}
.yd1{bottom:960.154023px;}
.y1d{bottom:963.480450px;}
.y12f{bottom:969.871170px;}
.y16f{bottom:978.153708px;}
.y4b{bottom:978.154086px;}
.y101{bottom:978.690450px;}
.y9e{bottom:978.780450px;}
.yd0{bottom:980.313303px;}
.y1c{bottom:984.090450px;}
.y12e{bottom:990.031548px;}
.y5{bottom:993.181431px;}
.y16e{bottom:998.312988px;}
.y4a{bottom:998.313366px;}
.y9d{bottom:999.303213px;}
.ycf{bottom:1000.383645px;}
.y100{bottom:1001.191422px;}
.y1b{bottom:1005.601890px;}
.y12d{bottom:1010.190828px;}
.y16d{bottom:1018.383330px;}
.y49{bottom:1018.383708px;}
.y9c{bottom:1020.542925px;}
.yff{bottom:1024.051782px;}
.y1a{bottom:1025.761170px;}
.y4{bottom:1028.371233px;}
.y12c{bottom:1030.350108px;}
.y16c{bottom:1038.542610px;}
.y48{bottom:1038.542988px;}
.yce{bottom:1040.702205px;}
.y19{bottom:1045.920450px;}
.yfe{bottom:1046.551449px;}
.y12b{bottom:1050.420450px;}
.y16b{bottom:1058.701890px;}
.y47{bottom:1058.702268px;}
.ycd{bottom:1060.861485px;}
.y3{bottom:1063.470450px;}
.y18{bottom:1066.530450px;}
.yfd{bottom:1069.051116px;}
.y12a{bottom:1070.310450px;}
.y16a{bottom:1078.861170px;}
.y46{bottom:1078.861548px;}
.ycc{bottom:1081.020765px;}
.y17{bottom:1088.040450px;}
.yfc{bottom:1091.550783px;}
.y169{bottom:1099.020450px;}
.y45{bottom:1099.020828px;}
.y2{bottom:1099.920450px;}
.ycb{bottom:1101.091107px;}
.y16{bottom:1109.369946px;}
.yfb{bottom:1114.050450px;}
.y168{bottom:1119.090450px;}
.y44{bottom:1119.091170px;}
.y15{bottom:1135.020450px;}
.yfa{bottom:1136.550450px;}
.y129{bottom:1137.810450px;}
.y1{bottom:1139.250450px;}
.hf{height:18.270000px;}
.ha{height:45.356836px;}
.hb{height:45.742852px;}
.hc{height:49.581387px;}
.h3{height:50.310703px;}
.h6{height:52.944609px;}
.h1{height:54.331699px;}
.h9{height:54.984375px;}
.h12{height:55.412131px;}
.h17{height:56.242370px;}
.h16{height:56.244710px;}
.h15{height:56.245430px;}
.h13{height:58.852268px;}
.h14{height:58.853780px;}
.h18{height:58.856660px;}
.h8{height:59.378906px;}
.h2{height:64.056797px;}
.hd{height:83.158780px;}
.he{height:83.514532px;}
.h10{height:90.273511px;}
.h11{height:90.629263px;}
.h5{height:98.865879px;}
.h7{height:99.056426px;}
.h4{height:100.896328px;}
.h0{height:1263.000000px;}
.w4{width:11.880000px;}
.w2{width:42.120000px;}
.w3{width:53.190000px;}
.w1{width:892.500000px;}
.w0{width:892.829955px;}
.x0{left:0.000000px;}
.x18{left:37.530000px;}
.x35{left:41.310000px;}
.x1{left:135.000000px;}
.x15{left:142.919946px;}
.x6{left:149.130000px;}
.x1b{left:151.199118px;}
.x22{left:152.280000px;}
.x12{left:156.148992px;}
.x1c{left:160.560000px;}
.x1a{left:170.997705px;}
.x13{left:183.151215px;}
.x19{left:185.040000px;}
.x23{left:186.210000px;}
.x24{left:188.909949px;}
.xf{left:190.980000px;}
.x1d{left:206.190801px;}
.x16{left:231.482133px;}
.x30{left:262.434501px;}
.x34{left:264.690000px;}
.x7{left:270.990000px;}
.x25{left:281.339589px;}
.x26{left:284.669823px;}
.x5{left:293.130000px;}
.x10{left:295.920000px;}
.x14{left:302.850234px;}
.xa{left:314.820000px;}
.x36{left:317.880000px;}
.x1e{left:322.740756px;}
.x8{left:334.080108px;}
.x31{left:336.323862px;}
.x4{left:351.360000px;}
.xe{left:359.190000px;}
.x28{left:362.879265px;}
.x9{left:364.860000px;}
.x27{left:366.479607px;}
.xb{left:368.550081px;}
.x37{left:371.340000px;}
.xc{left:373.500000px;}
.x11{left:380.969433px;}
.xd{left:383.579577px;}
.x17{left:410.763024px;}
.x1f{left:417.240675px;}
.x38{left:433.530000px;}
.x3d{left:438.390000px;}
.x39{left:443.160000px;}
.x3{left:446.490000px;}
.x2b{left:451.889733px;}
.x29{left:457.739877px;}
.x2a{left:465.029499px;}
.x3e{left:496.890000px;}
.x21{left:498.421305px;}
.x20{left:499.860783px;}
.x3f{left:501.030000px;}
.x3a{left:512.730000px;}
.x3b{left:522.360000px;}
.x2e{left:526.950111px;}
.x2c{left:539.819769px;}
.x2d{left:547.020453px;}
.x32{left:579.144366px;}
.x3c{left:586.620000px;}
.x2{left:616.590000px;}
.x2f{left:641.340849px;}
.x33{left:663.564645px;}
.x40{left:683.730000px;}
.x41{left:736.920000px;}
@media print{
.v7{vertical-align:-21.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:0.960384pt;}
.v1{vertical-align:18.560000pt;}
.v6{vertical-align:21.436096pt;}
.v8{vertical-align:24.000000pt;}
.v2{vertical-align:26.560000pt;}
.v3{vertical-align:33.601728pt;}
.v4{vertical-align:35.522496pt;}
.ls75{letter-spacing:-2.998272pt;}
.ls45{letter-spacing:-2.359968pt;}
.ls33{letter-spacing:-2.037888pt;}
.ls36{letter-spacing:-1.721664pt;}
.ls5c{letter-spacing:-1.399584pt;}
.ls47{letter-spacing:-0.761280pt;}
.ls69{letter-spacing:-0.439200pt;}
.ls8d{letter-spacing:-0.380640pt;}
.ls1e{letter-spacing:-0.134784pt;}
.ls77{letter-spacing:-0.111264pt;}
.ls76{letter-spacing:-0.105408pt;}
.ls20{letter-spacing:-0.096928pt;}
.ls52{letter-spacing:-0.093696pt;}
.ls1f{letter-spacing:-0.085504pt;}
.ls4f{letter-spacing:-0.081984pt;}
.ls4c{letter-spacing:-0.070272pt;}
.ls27{letter-spacing:-0.064416pt;}
.ls46{letter-spacing:-0.058560pt;}
.ls2b{letter-spacing:-0.052704pt;}
.ls25{letter-spacing:-0.046848pt;}
.ls81{letter-spacing:-0.042752pt;}
.ls2a{letter-spacing:-0.040992pt;}
.ls55{letter-spacing:-0.035136pt;}
.ls2c{letter-spacing:-0.029280pt;}
.ls21{letter-spacing:-0.023424pt;}
.ls2e{letter-spacing:-0.017568pt;}
.ls28{letter-spacing:-0.011712pt;}
.ls74{letter-spacing:-0.010688pt;}
.ls22{letter-spacing:-0.005856pt;}
.ls73{letter-spacing:-0.005344pt;}
.ls5{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.005856pt;}
.lsd{letter-spacing:0.006400pt;}
.ls6{letter-spacing:0.010688pt;}
.ls19{letter-spacing:0.011712pt;}
.lsa{letter-spacing:0.012800pt;}
.ls14{letter-spacing:0.017568pt;}
.ls13{letter-spacing:0.023424pt;}
.ls10{letter-spacing:0.029280pt;}
.ls6a{letter-spacing:0.032064pt;}
.ls12{letter-spacing:0.035136pt;}
.ls7{letter-spacing:0.037408pt;}
.ls11{letter-spacing:0.038400pt;}
.ls1b{letter-spacing:0.040992pt;}
.ls18{letter-spacing:0.046848pt;}
.ls5a{letter-spacing:0.048096pt;}
.ls9{letter-spacing:0.052192pt;}
.lse{letter-spacing:0.052704pt;}
.ls60{letter-spacing:0.053440pt;}
.ls17{letter-spacing:0.058560pt;}
.ls2{letter-spacing:0.059648pt;}
.ls80{letter-spacing:0.064128pt;}
.lsc{letter-spacing:0.064416pt;}
.ls3{letter-spacing:0.067104pt;}
.ls1a{letter-spacing:0.070272pt;}
.ls0{letter-spacing:0.074560pt;}
.ls4d{letter-spacing:0.076128pt;}
.ls39{letter-spacing:0.081984pt;}
.ls4{letter-spacing:0.085248pt;}
.ls16{letter-spacing:0.087840pt;}
.ls3b{letter-spacing:0.093696pt;}
.lsf{letter-spacing:0.099552pt;}
.ls3d{letter-spacing:0.105408pt;}
.ls78{letter-spacing:0.108587pt;}
.ls79{letter-spacing:0.109120pt;}
.ls5e{letter-spacing:0.111264pt;}
.ls3a{letter-spacing:0.117120pt;}
.ls38{letter-spacing:0.122976pt;}
.ls1d{letter-spacing:0.128832pt;}
.ls3e{letter-spacing:0.134688pt;}
.ls63{letter-spacing:0.140544pt;}
.ls87{letter-spacing:0.146400pt;}
.ls24{letter-spacing:0.158112pt;}
.ls7d{letter-spacing:0.158656pt;}
.ls7c{letter-spacing:0.160000pt;}
.ls7e{letter-spacing:0.160640pt;}
.ls5d{letter-spacing:0.163968pt;}
.ls37{letter-spacing:0.169824pt;}
.ls7a{letter-spacing:0.175680pt;}
.ls7b{letter-spacing:0.181536pt;}
.ls31{letter-spacing:0.199104pt;}
.ls1c{letter-spacing:0.204960pt;}
.ls15{letter-spacing:0.216672pt;}
.ls86{letter-spacing:0.217920pt;}
.ls62{letter-spacing:0.240096pt;}
.ls4a{letter-spacing:0.245952pt;}
.ls84{letter-spacing:0.257664pt;}
.ls43{letter-spacing:0.263520pt;}
.ls82{letter-spacing:0.269376pt;}
.ls3c{letter-spacing:0.281088pt;}
.ls61{letter-spacing:0.298656pt;}
.ls35{letter-spacing:0.322080pt;}
.ls5f{letter-spacing:0.392352pt;}
.ls83{letter-spacing:0.404064pt;}
.ls2d{letter-spacing:0.521184pt;}
.ls8e{letter-spacing:0.579744pt;}
.ls44{letter-spacing:1.159488pt;}
.ls68{letter-spacing:1.481568pt;}
.ls50{letter-spacing:1.803648pt;}
.ls48{letter-spacing:2.758176pt;}
.ls89{letter-spacing:3.080256pt;}
.ls88{letter-spacing:3.402336pt;}
.ls42{letter-spacing:3.718560pt;}
.ls67{letter-spacing:4.040640pt;}
.ls64{letter-spacing:4.362720pt;}
.ls8a{letter-spacing:4.678944pt;}
.ls56{letter-spacing:5.001024pt;}
.ls59{letter-spacing:5.323104pt;}
.ls4e{letter-spacing:5.639328pt;}
.ls4b{letter-spacing:6.283488pt;}
.ls53{letter-spacing:6.921792pt;}
.ls57{letter-spacing:7.560096pt;}
.ls54{letter-spacing:8.198400pt;}
.ls90{letter-spacing:8.520480pt;}
.ls32{letter-spacing:8.842560pt;}
.ls66{letter-spacing:9.802944pt;}
.ls5b{letter-spacing:10.119168pt;}
.ls34{letter-spacing:10.441248pt;}
.ls23{letter-spacing:10.763328pt;}
.ls8c{letter-spacing:11.401632pt;}
.ls49{letter-spacing:11.723712pt;}
.ls65{letter-spacing:13.638624pt;}
.ls92{letter-spacing:14.599008pt;}
.ls41{letter-spacing:14.921088pt;}
.ls26{letter-spacing:15.881472pt;}
.ls91{letter-spacing:16.203552pt;}
.ls58{letter-spacing:18.440544pt;}
.ls30{letter-spacing:18.762624pt;}
.ls2f{letter-spacing:19.400928pt;}
.ls51{letter-spacing:19.723008pt;}
.ls29{letter-spacing:21.321696pt;}
.ls8b{letter-spacing:23.558688pt;}
.ls3f{letter-spacing:31.721952pt;}
.ls40{letter-spacing:33.642720pt;}
.ls6b{letter-spacing:44.365056pt;}
.ls72{letter-spacing:86.926464pt;}
.ls71{letter-spacing:91.406304pt;}
.ls70{letter-spacing:103.247136pt;}
.ls85{letter-spacing:126.477888pt;}
.ls7f{letter-spacing:133.838880pt;}
.ls6e{letter-spacing:156.407904pt;}
.ls6d{letter-spacing:170.491584pt;}
.ls6f{letter-spacing:226.445664pt;}
.ls6c{letter-spacing:245.963712pt;}
.ls8{letter-spacing:624.845440pt;}
.ls8f{letter-spacing:754.762272pt;}
.ls1{letter-spacing:809.176224pt;}
.ws7{word-spacing:-13.310688pt;}
.ws11{word-spacing:-13.304832pt;}
.ws10{word-spacing:-13.293120pt;}
.ws3{word-spacing:-13.287264pt;}
.ws12{word-spacing:-13.281408pt;}
.ws14{word-spacing:-13.275552pt;}
.ws13{word-spacing:-13.269696pt;}
.ws8{word-spacing:-13.240416pt;}
.ws5{word-spacing:-13.234560pt;}
.ws6{word-spacing:-13.193568pt;}
.ws2{word-spacing:-13.181856pt;}
.ws15{word-spacing:-13.176000pt;}
.ws4{word-spacing:-13.164288pt;}
.ws9{word-spacing:-13.123296pt;}
.wsd{word-spacing:-11.050272pt;}
.wsc{word-spacing:-11.044416pt;}
.wsb{word-spacing:-11.032704pt;}
.wsf{word-spacing:-8.461440pt;}
.ws1{word-spacing:-7.675776pt;}
.wse{word-spacing:-0.099552pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:155.119584pt;}
._96{margin-left:-133.821312pt;}
._91{margin-left:-126.460320pt;}
._99{margin-left:-24.487104pt;}
._98{margin-left:-23.587968pt;}
._f{margin-left:-21.855488pt;}
._10{margin-left:-20.928448pt;}
._18{margin-left:-20.000032pt;}
._17{margin-left:-18.931552pt;}
._19{margin-left:-18.034208pt;}
._a0{margin-left:-16.871136pt;}
._b{margin-left:-15.981024pt;}
._c{margin-left:-15.038208pt;}
._20{margin-left:-13.997632pt;}
._24{margin-left:-12.658400pt;}
._6{margin-left:-11.317856pt;}
._5{margin-left:-10.278176pt;}
._1c{margin-left:-8.848416pt;}
._1d{margin-left:-7.911456pt;}
._27{margin-left:-6.766848pt;}
._28{margin-left:-5.677152pt;}
._21{margin-left:-4.511424pt;}
._7{margin-left:-3.484512pt;}
._1{margin-left:-2.236800pt;}
._0{margin-left:-0.907808pt;}
._2{width:1.511744pt;}
._8{width:3.220800pt;}
._1a{width:4.351008pt;}
._1b{width:5.403296pt;}
._14{width:6.406464pt;}
._11{width:7.448832pt;}
._9{width:8.514624pt;}
._a{width:9.562848pt;}
._3{width:10.728192pt;}
._4{width:11.659296pt;}
._1f{width:14.266112pt;}
._d{width:15.804448pt;}
._2a{width:16.731488pt;}
._29{width:18.381984pt;}
._15{width:19.418496pt;}
._16{width:20.336992pt;}
._e{width:21.673056pt;}
._1e{width:22.621728pt;}
._22{width:23.705088pt;}
._23{width:24.659872pt;}
._97{width:26.761024pt;}
._25{width:27.657888pt;}
._26{width:28.647552pt;}
._12{width:32.476480pt;}
._13{width:33.497216pt;}
._9b{width:35.323392pt;}
._9a{width:36.266208pt;}
._9f{width:42.403296pt;}
._8b{width:45.518560pt;}
._34{width:46.637184pt;}
._44{width:48.060192pt;}
._a1{width:50.707104pt;}
._a2{width:51.649920pt;}
._90{width:52.897376pt;}
._7c{width:57.769440pt;}
._7b{width:60.340224pt;}
._41{width:61.634400pt;}
._33{width:62.969568pt;}
._8d{width:68.913280pt;}
._31{width:70.371552pt;}
._86{width:72.468000pt;}
._81{width:74.359488pt;}
._85{width:76.590624pt;}
._78{width:77.621280pt;}
._58{width:80.151072pt;}
._30{width:86.785920pt;}
._87{width:88.039104pt;}
._7f{width:89.450400pt;}
._94{width:91.781088pt;}
._9c{width:93.321216pt;}
._45{width:94.867200pt;}
._38{width:99.879936pt;}
._37{width:101.537184pt;}
._2c{width:111.720768pt;}
._7a{width:114.080736pt;}
._3b{width:115.843392pt;}
._8f{width:128.445632pt;}
._3c{width:129.446880pt;}
._43{width:137.797536pt;}
._95{width:141.170592pt;}
._7e{width:144.801312pt;}
._65{width:154.105600pt;}
._93{width:156.747552pt;}
._83{width:161.930112pt;}
._2f{width:163.154144pt;}
._8c{width:164.149664pt;}
._80{width:176.335872pt;}
._75{width:179.380992pt;}
._36{width:184.382016pt;}
._8e{width:188.118016pt;}
._2d{width:189.219072pt;}
._8a{width:191.789856pt;}
._92{width:197.563872pt;}
._3a{width:198.787776pt;}
._9e{width:200.117088pt;}
._9d{width:201.270720pt;}
._61{width:212.725056pt;}
._79{width:213.662912pt;}
._88{width:215.746752pt;}
._63{width:221.913120pt;}
._48{width:225.748800pt;}
._40{width:228.688512pt;}
._3e{width:232.313504pt;}
._4f{width:240.500064pt;}
._82{width:243.469056pt;}
._53{width:255.954048pt;}
._89{width:257.945216pt;}
._4e{width:264.872736pt;}
._57{width:270.553056pt;}
._4c{width:272.245440pt;}
._67{width:276.297792pt;}
._54{width:278.909568pt;}
._5b{width:287.055264pt;}
._5e{width:288.489984pt;}
._4a{width:311.826144pt;}
._6b{width:324.715200pt;}
._56{width:326.542272pt;}
._64{width:334.089760pt;}
._6a{width:346.587360pt;}
._60{width:355.119552pt;}
._47{width:364.571136pt;}
._2b{width:373.161888pt;}
._74{width:379.357536pt;}
._84{width:382.777440pt;}
._52{width:398.940000pt;}
._71{width:423.909088pt;}
._7d{width:430.843488pt;}
._68{width:433.835904pt;}
._6f{width:449.243040pt;}
._6d{width:453.254400pt;}
._50{width:465.786240pt;}
._6e{width:471.121056pt;}
._5c{width:474.376992pt;}
._3d{width:491.294976pt;}
._3f{width:493.760352pt;}
._76{width:508.640448pt;}
._35{width:528.053088pt;}
._73{width:529.452672pt;}
._6c{width:541.316928pt;}
._42{width:542.271456pt;}
._5d{width:562.193568pt;}
._59{width:566.866656pt;}
._51{width:574.561440pt;}
._66{width:578.151168pt;}
._77{width:589.324416pt;}
._62{width:596.638560pt;}
._4d{width:603.086016pt;}
._49{width:607.191072pt;}
._70{width:608.180736pt;}
._5f{width:626.310912pt;}
._55{width:629.279904pt;}
._72{width:634.696704pt;}
._32{width:635.815200pt;}
._5a{width:697.830240pt;}
._4b{width:698.755488pt;}
._69{width:727.432320pt;}
._46{width:731.027904pt;}
._2e{width:857.868864pt;}
._39{width:913.202208pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs4{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.fs3{font-size:106.560000pt;}
.fs2{font-size:117.440000pt;}
.y0{bottom:0.000000pt;}
.ydc{bottom:3.200400pt;}
.y158{bottom:3.200533pt;}
.y14{bottom:51.067067pt;}
.y12{bottom:58.187200pt;}
.y13{bottom:67.307067pt;}
.y43{bottom:100.839619pt;}
.y167{bottom:103.391187pt;}
.y128{bottom:110.747955pt;}
.y15f{bottom:112.187200pt;}
.y9b{bottom:113.307707pt;}
.yca{bottom:114.187403pt;}
.y73{bottom:121.308043pt;}
.y166{bottom:121.310547pt;}
.yf9{bottom:122.107792pt;}
.y15e{bottom:129.866784pt;}
.y127{bottom:130.747659pt;}
.y9a{bottom:131.246835pt;}
.yc9{bottom:132.106763pt;}
.y42{bottom:134.759035pt;}
.y198{bottom:135.387067pt;}
.y72{bottom:139.227403pt;}
.y165{bottom:139.229907pt;}
.yf8{bottom:142.107496pt;}
.y11{bottom:144.827880pt;}
.y15d{bottom:146.107200pt;}
.y99{bottom:149.166195pt;}
.yc8{bottom:149.947067pt;}
.y126{bottom:150.747363pt;}
.y197{bottom:153.308480pt;}
.y71{bottom:157.146763pt;}
.y164{bottom:157.149267pt;}
.y15b{bottom:160.106667pt;}
.yf7{bottom:162.107200pt;}
.y15c{bottom:163.307067pt;}
.y15a{bottom:163.307747pt;}
.y98{bottom:167.006499pt;}
.y41{bottom:168.678451pt;}
.y125{bottom:170.747067pt;}
.y196{bottom:171.227840pt;}
.y70{bottom:174.987067pt;}
.y163{bottom:174.989571pt;}
.yc7{bottom:175.627067pt;}
.y157{bottom:176.986667pt;}
.y10{bottom:180.987616pt;}
.yf6{bottom:182.107200pt;}
.y97{bottom:184.925859pt;}
.y40{bottom:186.597811pt;}
.y195{bottom:189.147200pt;}
.y124{bottom:190.747067pt;}
.yc6{bottom:192.747987pt;}
.y6f{bottom:192.926619pt;}
.y159{bottom:196.987067pt;}
.y156{bottom:196.987227pt;}
.yf5{bottom:202.355339pt;}
.y96{bottom:202.845219pt;}
.y3f{bottom:204.438115pt;}
.y194{bottom:206.994139pt;}
.y162{bottom:208.908987pt;}
.yc5{bottom:209.627907pt;}
.y154{bottom:210.666667pt;}
.y6e{bottom:210.845979pt;}
.y122{bottom:211.068907pt;}
.yf{bottom:217.067200pt;}
.y121{bottom:220.028587pt;}
.y95{bottom:220.764579pt;}
.yf4{bottom:221.634755pt;}
.y3e{bottom:222.357475pt;}
.y193{bottom:224.913499pt;}
.yc4{bottom:226.507827pt;}
.y161{bottom:226.828347pt;}
.y6d{bottom:228.765339pt;}
.y123{bottom:228.909211pt;}
.y155{bottom:230.747067pt;}
.y153{bottom:230.747227pt;}
.y94{bottom:238.683939pt;}
.y3d{bottom:240.276835pt;}
.ye{bottom:242.667067pt;}
.y192{bottom:242.832859pt;}
.yc3{bottom:243.387747pt;}
.y152{bottom:244.426667pt;}
.y160{bottom:244.747707pt;}
.y120{bottom:248.188627pt;}
.yf3{bottom:255.554171pt;}
.y93{bottom:256.524243pt;}
.y3c{bottom:258.196195pt;}
.yc2{bottom:260.267667pt;}
.y191{bottom:260.752219pt;}
.y6c{bottom:262.684755pt;}
.y151{bottom:264.507067pt;}
.yf2{bottom:273.394475pt;}
.y92{bottom:274.443603pt;}
.y3b{bottom:276.115555pt;}
.yc1{bottom:277.067067pt;}
.y150{bottom:278.186667pt;}
.y190{bottom:278.671579pt;}
.y6b{bottom:280.525059pt;}
.y14f{bottom:281.387067pt;}
.y11f{bottom:282.108043pt;}
.yd{bottom:287.867067pt;}
.yf1{bottom:291.313835pt;}
.y91{bottom:292.362963pt;}
.yc0{bottom:293.948299pt;}
.y3a{bottom:293.955859pt;}
.y18f{bottom:296.511883pt;}
.y6a{bottom:298.444419pt;}
.y14e{bottom:299.554699pt;}
.y11e{bottom:300.027403pt;}
.yf0{bottom:309.233195pt;}
.y90{bottom:310.282323pt;}
.ybf{bottom:310.828219pt;}
.y39{bottom:311.875219pt;}
.y18e{bottom:314.431243pt;}
.y69{bottom:316.363779pt;}
.y14d{bottom:316.434619pt;}
.y11d{bottom:317.867707pt;}
.yc{bottom:320.267067pt;}
.yef{bottom:327.152555pt;}
.y8f{bottom:328.201683pt;}
.ybe{bottom:328.347907pt;}
.y38{bottom:329.794579pt;}
.y18d{bottom:332.350603pt;}
.y68{bottom:334.283139pt;}
.y14c{bottom:335.314363pt;}
.y11c{bottom:335.787067pt;}
.yee{bottom:345.071915pt;}
.ybd{bottom:345.227827pt;}
.y8e{bottom:346.041987pt;}
.y37{bottom:347.713939pt;}
.y18c{bottom:350.269963pt;}
.y67{bottom:352.202499pt;}
.y11b{bottom:353.386491pt;}
.yb{bottom:355.230155pt;}
.ybc{bottom:362.107747pt;}
.yed{bottom:362.912219pt;}
.y8d{bottom:363.961347pt;}
.y36{bottom:365.554243pt;}
.y18b{bottom:368.189323pt;}
.y14b{bottom:369.233779pt;}
.y11a{bottom:369.707067pt;}
.y66{bottom:370.042803pt;}
.ybb{bottom:378.987667pt;}
.yec{bottom:380.831579pt;}
.y8c{bottom:381.880707pt;}
.y18a{bottom:386.029627pt;}
.ya{bottom:386.509979pt;}
.y14a{bottom:387.153139pt;}
.y65{bottom:387.962163pt;}
.y119{bottom:388.668251pt;}
.yba{bottom:395.787067pt;}
.yeb{bottom:398.750939pt;}
.y35{bottom:399.473659pt;}
.y8b{bottom:399.800067pt;}
.y189{bottom:403.948987pt;}
.y149{bottom:405.072499pt;}
.y64{bottom:405.881523pt;}
.y118{bottom:408.667955pt;}
.yb9{bottom:412.668299pt;}
.yea{bottom:416.670299pt;}
.y9{bottom:417.709283pt;}
.y8a{bottom:417.719427pt;}
.y188{bottom:421.868347pt;}
.y148{bottom:422.912803pt;}
.y63{bottom:423.800883pt;}
.y34{bottom:425.393779pt;}
.y117{bottom:428.667659pt;}
.yb8{bottom:430.187987pt;}
.ye9{bottom:434.589659pt;}
.y89{bottom:435.559731pt;}
.y187{bottom:439.787707pt;}
.y147{bottom:440.832163pt;}
.y62{bottom:441.720243pt;}
.y33{bottom:443.313139pt;}
.yb7{bottom:447.067907pt;}
.y116{bottom:448.667363pt;}
.ye8{bottom:452.429963pt;}
.y88{bottom:453.479091pt;}
.y186{bottom:457.707067pt;}
.y146{bottom:458.751523pt;}
.y61{bottom:459.560547pt;}
.y32{bottom:461.232499pt;}
.yb6{bottom:463.947827pt;}
.y115{bottom:468.667067pt;}
.ye7{bottom:470.349323pt;}
.y87{bottom:471.398451pt;}
.y185{bottom:475.548347pt;}
.y145{bottom:476.670883pt;}
.y60{bottom:477.479907pt;}
.y31{bottom:479.072803pt;}
.yb5{bottom:480.827747pt;}
.ye6{bottom:488.268683pt;}
.y114{bottom:488.669963pt;}
.y86{bottom:489.317811pt;}
.y184{bottom:493.467707pt;}
.y144{bottom:494.590243pt;}
.y5f{bottom:495.399267pt;}
.y30{bottom:496.992163pt;}
.yb4{bottom:497.707667pt;}
.ye5{bottom:506.188043pt;}
.y85{bottom:507.237171pt;}
.y113{bottom:509.309435pt;}
.y183{bottom:511.387067pt;}
.y143{bottom:512.430547pt;}
.y5e{bottom:513.318627pt;}
.yb3{bottom:514.507067pt;}
.y2f{bottom:514.911523pt;}
.ye4{bottom:524.028347pt;}
.y84{bottom:525.077475pt;}
.y112{bottom:529.309139pt;}
.y182{bottom:529.310939pt;}
.y142{bottom:530.349907pt;}
.y5d{bottom:531.237987pt;}
.yb2{bottom:531.388459pt;}
.y2e{bottom:532.830883pt;}
.ye3{bottom:541.947707pt;}
.y83{bottom:542.996835pt;}
.y181{bottom:547.230299pt;}
.yb1{bottom:548.268379pt;}
.y141{bottom:548.269267pt;}
.y5c{bottom:549.078291pt;}
.y111{bottom:549.308843pt;}
.y2d{bottom:550.750243pt;}
.ye2{bottom:559.867067pt;}
.y82{bottom:560.916195pt;}
.y180{bottom:565.070603pt;}
.yb0{bottom:565.788067pt;}
.y140{bottom:566.188627pt;}
.y5b{bottom:566.997651pt;}
.y2c{bottom:568.590547pt;}
.y110{bottom:569.308547pt;}
.yaf{bottom:582.667987pt;}
.y17f{bottom:582.989963pt;}
.y13f{bottom:584.107987pt;}
.y5a{bottom:584.917011pt;}
.y2b{bottom:586.509907pt;}
.y10f{bottom:589.308251pt;}
.ye1{bottom:593.467067pt;}
.y81{bottom:594.835611pt;}
.yae{bottom:599.547907pt;}
.y17e{bottom:600.909323pt;}
.y13e{bottom:601.948291pt;}
.y59{bottom:602.836371pt;}
.y2a{bottom:604.429267pt;}
.y10e{bottom:609.307955pt;}
.ye0{bottom:610.667827pt;}
.y80{bottom:612.675915pt;}
.yad{bottom:616.427827pt;}
.y17d{bottom:618.828683pt;}
.y13d{bottom:619.867651pt;}
.y58{bottom:620.676675pt;}
.y29{bottom:622.348627pt;}
.ydf{bottom:627.547747pt;}
.y10d{bottom:629.307659pt;}
.y7f{bottom:630.595275pt;}
.yac{bottom:633.307747pt;}
.y17c{bottom:636.668987pt;}
.y57{bottom:638.596035pt;}
.y28{bottom:640.267987pt;}
.yde{bottom:644.427667pt;}
.y7e{bottom:648.514635pt;}
.y10c{bottom:649.307363pt;}
.yab{bottom:650.107147pt;}
.y13c{bottom:653.787067pt;}
.y17b{bottom:654.588347pt;}
.y56{bottom:656.515395pt;}
.ydb{bottom:658.026667pt;}
.y27{bottom:658.108291pt;}
.ydd{bottom:661.227067pt;}
.yda{bottom:661.227360pt;}
.y7d{bottom:666.433995pt;}
.yaa{bottom:666.987067pt;}
.y10b{bottom:669.307067pt;}
.y13b{bottom:672.267227pt;}
.y17a{bottom:672.507707pt;}
.y55{bottom:674.434755pt;}
.yd9{bottom:678.107280pt;}
.ya9{bottom:683.868539pt;}
.y7c{bottom:684.353355pt;}
.y13a{bottom:689.147147pt;}
.y10a{bottom:689.309963pt;}
.y179{bottom:690.427067pt;}
.y26{bottom:692.027707pt;}
.y54{bottom:692.354115pt;}
.yd8{bottom:694.987200pt;}
.ya8{bottom:700.748459pt;}
.y139{bottom:706.027067pt;}
.y178{bottom:708.346763pt;}
.y25{bottom:709.947067pt;}
.y109{bottom:709.949435pt;}
.y53{bottom:710.194419pt;}
.yd7{bottom:711.867067pt;}
.y7b{bottom:718.193715pt;}
.ya7{bottom:718.268147pt;}
.y138{bottom:722.907067pt;}
.y177{bottom:726.187067pt;}
.y52{bottom:728.113779pt;}
.y24{bottom:728.267067pt;}
.y108{bottom:729.949139pt;}
.yd6{bottom:730.031619pt;}
.ya6{bottom:735.148067pt;}
.y7a{bottom:736.113075pt;}
.yd5{bottom:738.511107pt;}
.y137{bottom:740.428171pt;}
.y176{bottom:744.108347pt;}
.y51{bottom:746.033139pt;}
.y23{bottom:747.388347pt;}
.y134{bottom:748.828603pt;}
.y107{bottom:749.948843pt;}
.ya5{bottom:752.027987pt;}
.y79{bottom:754.032435pt;}
.y133{bottom:757.308091pt;}
.y175{bottom:762.027707pt;}
.y50{bottom:763.952499pt;}
.y22{bottom:765.307707pt;}
.y135{bottom:765.708523pt;}
.yd4{bottom:765.871803pt;}
.ya4{bottom:768.827387pt;}
.y106{bottom:769.948547pt;}
.y78{bottom:771.951795pt;}
.y136{bottom:774.188011pt;}
.y174{bottom:779.947067pt;}
.y4f{bottom:781.871859pt;}
.y21{bottom:783.227067pt;}
.ya3{bottom:785.707307pt;}
.y8{bottom:789.149507pt;}
.y77{bottom:789.871155pt;}
.y105{bottom:789.948251pt;}
.y132{bottom:792.427987pt;}
.y173{bottom:797.867403pt;}
.y4e{bottom:799.712163pt;}
.y20{bottom:801.467067pt;}
.ya2{bottom:802.587227pt;}
.y76{bottom:807.711459pt;}
.y104{bottom:809.947955pt;}
.y172{bottom:815.707707pt;}
.yd3{bottom:817.631523pt;}
.ya1{bottom:819.467147pt;}
.y7{bottom:820.348811pt;}
.y1f{bottom:820.588347pt;}
.y75{bottom:825.630819pt;}
.y131{bottom:826.347403pt;}
.y103{bottom:829.947659pt;}
.y171{bottom:833.627067pt;}
.y4d{bottom:833.631579pt;}
.yd2{bottom:835.550883pt;}
.ya0{bottom:836.347067pt;}
.y1e{bottom:838.507707pt;}
.y74{bottom:843.550179pt;}
.y130{bottom:844.187707pt;}
.y102{bottom:849.947363pt;}
.y170{bottom:851.550603pt;}
.y4c{bottom:851.550939pt;}
.y6{bottom:851.628635pt;}
.y9f{bottom:853.147147pt;}
.yd1{bottom:853.470243pt;}
.y1d{bottom:856.427067pt;}
.y12f{bottom:862.107707pt;}
.y16f{bottom:869.469963pt;}
.y4b{bottom:869.470299pt;}
.y101{bottom:869.947067pt;}
.y9e{bottom:870.027067pt;}
.yd0{bottom:871.389603pt;}
.y1c{bottom:874.747067pt;}
.y12e{bottom:880.028043pt;}
.y5{bottom:882.827939pt;}
.y16e{bottom:887.389323pt;}
.y4a{bottom:887.389659pt;}
.y9d{bottom:888.269523pt;}
.ycf{bottom:889.229907pt;}
.y100{bottom:889.947931pt;}
.y1b{bottom:893.868347pt;}
.y12d{bottom:897.947403pt;}
.y16d{bottom:905.229627pt;}
.y49{bottom:905.229963pt;}
.y9c{bottom:907.149267pt;}
.yff{bottom:910.268251pt;}
.y1a{bottom:911.787707pt;}
.y4{bottom:914.107763pt;}
.y12c{bottom:915.866763pt;}
.y16c{bottom:923.148987pt;}
.y48{bottom:923.149323pt;}
.yce{bottom:925.068627pt;}
.y19{bottom:929.707067pt;}
.yfe{bottom:930.267955pt;}
.y12b{bottom:933.707067pt;}
.y16b{bottom:941.068347pt;}
.y47{bottom:941.068683pt;}
.ycd{bottom:942.987987pt;}
.y3{bottom:945.307067pt;}
.y18{bottom:948.027067pt;}
.yfd{bottom:950.267659pt;}
.y12a{bottom:951.387067pt;}
.y16a{bottom:958.987707pt;}
.y46{bottom:958.988043pt;}
.ycc{bottom:960.907347pt;}
.y17{bottom:967.147067pt;}
.yfc{bottom:970.267363pt;}
.y169{bottom:976.907067pt;}
.y45{bottom:976.907403pt;}
.y2{bottom:977.707067pt;}
.ycb{bottom:978.747651pt;}
.y16{bottom:986.106619pt;}
.yfb{bottom:990.267067pt;}
.y168{bottom:994.747067pt;}
.y44{bottom:994.747707pt;}
.y15{bottom:1008.907067pt;}
.yfa{bottom:1010.267067pt;}
.y129{bottom:1011.387067pt;}
.y1{bottom:1012.667067pt;}
.hf{height:16.240000pt;}
.ha{height:40.317187pt;}
.hb{height:40.660312pt;}
.hc{height:44.072344pt;}
.h3{height:44.720625pt;}
.h6{height:47.061875pt;}
.h1{height:48.294844pt;}
.h9{height:48.875000pt;}
.h12{height:49.255228pt;}
.h17{height:49.993218pt;}
.h16{height:49.995297pt;}
.h15{height:49.995938pt;}
.h13{height:52.313127pt;}
.h14{height:52.314471pt;}
.h18{height:52.317031pt;}
.h8{height:52.781250pt;}
.h2{height:56.939375pt;}
.hd{height:73.918915pt;}
.he{height:74.235140pt;}
.h10{height:80.243121pt;}
.h11{height:80.559345pt;}
.h5{height:87.880781pt;}
.h7{height:88.050156pt;}
.h4{height:89.685625pt;}
.h0{height:1122.666667pt;}
.w4{width:10.560000pt;}
.w2{width:37.440000pt;}
.w3{width:47.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626627pt;}
.x0{left:0.000000pt;}
.x18{left:33.360000pt;}
.x35{left:36.720000pt;}
.x1{left:120.000000pt;}
.x15{left:127.039952pt;}
.x6{left:132.560000pt;}
.x1b{left:134.399216pt;}
.x22{left:135.360000pt;}
.x12{left:138.799104pt;}
.x1c{left:142.720000pt;}
.x1a{left:151.997960pt;}
.x13{left:162.801080pt;}
.x19{left:164.480000pt;}
.x23{left:165.520000pt;}
.x24{left:167.919955pt;}
.xf{left:169.760000pt;}
.x1d{left:183.280712pt;}
.x16{left:205.761896pt;}
.x30{left:233.275112pt;}
.x34{left:235.280000pt;}
.x7{left:240.880000pt;}
.x25{left:250.079635pt;}
.x26{left:253.039843pt;}
.x5{left:260.560000pt;}
.x10{left:263.040000pt;}
.x14{left:269.200208pt;}
.xa{left:279.840000pt;}
.x36{left:282.560000pt;}
.x1e{left:286.880672pt;}
.x8{left:296.960096pt;}
.x31{left:298.954544pt;}
.x4{left:312.320000pt;}
.xe{left:319.280000pt;}
.x28{left:322.559347pt;}
.x9{left:324.320000pt;}
.x27{left:325.759651pt;}
.xb{left:327.600072pt;}
.x37{left:330.080000pt;}
.xc{left:332.000000pt;}
.x11{left:338.639496pt;}
.xd{left:340.959624pt;}
.x17{left:365.122688pt;}
.x1f{left:370.880600pt;}
.x38{left:385.360000pt;}
.x3d{left:389.680000pt;}
.x39{left:393.920000pt;}
.x3{left:396.880000pt;}
.x2b{left:401.679763pt;}
.x29{left:406.879891pt;}
.x2a{left:413.359555pt;}
.x3e{left:441.680000pt;}
.x21{left:443.041160pt;}
.x20{left:444.320696pt;}
.x3f{left:445.360000pt;}
.x3a{left:455.760000pt;}
.x3b{left:464.320000pt;}
.x2e{left:468.400099pt;}
.x2c{left:479.839795pt;}
.x2d{left:486.240403pt;}
.x32{left:514.794992pt;}
.x3c{left:521.440000pt;}
.x2{left:548.080000pt;}
.x2f{left:570.080755pt;}
.x33{left:589.835240pt;}
.x40{left:607.760000pt;}
.x41{left:655.040000pt;}
}




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