
    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_603672948de93b985ae94525.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_9f62d60b36e7c8ce453deafc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_f019a559dc8560579b9b19e2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_eea6fff4bbf5989934647864.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.763672;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_cc539a96bfefec3676a96823.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119629;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_281085b8f5f54e0feb67e70f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_e76ce20a29ca3fae45843800.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a1455fb009536c1cab715bad.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.104492;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-45.480000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.432000px;}
.ls2a{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.346800px;}
.ls34{letter-spacing:-0.342600px;}
.ls5{letter-spacing:-0.327600px;}
.ls15{letter-spacing:-0.306600px;}
.ls48{letter-spacing:-0.277800px;}
.ls22{letter-spacing:-0.144000px;}
.ls39{letter-spacing:-0.042600px;}
.ls2b{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.000011px;}
.ls6{letter-spacing:0.020160px;}
.ls33{letter-spacing:0.034560px;}
.ls38{letter-spacing:0.037440px;}
.ls28{letter-spacing:0.047940px;}
.ls45{letter-spacing:0.054720px;}
.ls12{letter-spacing:0.090600px;}
.ls44{letter-spacing:0.109200px;}
.ls3b{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.157800px;}
.ls41{letter-spacing:0.162600px;}
.ls36{letter-spacing:0.181200px;}
.ls1d{letter-spacing:0.216000px;}
.ls47{letter-spacing:0.253200px;}
.ls3{letter-spacing:0.280800px;}
.ls25{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.290400px;}
.ls37{letter-spacing:0.295200px;}
.ls3a{letter-spacing:0.341400px;}
.ls40{letter-spacing:26.754480px;}
.ls2d{letter-spacing:31.156128px;}
.ls2c{letter-spacing:31.219920px;}
.ls23{letter-spacing:35.366400px;}
.ls42{letter-spacing:35.510400px;}
.ls27{letter-spacing:39.449088px;}
.ls8{letter-spacing:39.512880px;}
.ls24{letter-spacing:39.524880px;}
.ls3d{letter-spacing:39.593088px;}
.ls3c{letter-spacing:39.632880px;}
.ls3e{letter-spacing:39.656880px;}
.ls20{letter-spacing:42.840000px;}
.ls1c{letter-spacing:43.509600px;}
.ls1b{letter-spacing:43.560000px;}
.ls21{letter-spacing:43.704000px;}
.ls11{letter-spacing:43.914528px;}
.ls2e{letter-spacing:43.926528px;}
.ls7{letter-spacing:43.978320px;}
.ls26{letter-spacing:43.990320px;}
.ls32{letter-spacing:45.525600px;}
.ls17{letter-spacing:45.576000px;}
.ls46{letter-spacing:45.828288px;}
.ls43{letter-spacing:45.892080px;}
.ls31{letter-spacing:47.964000px;}
.ls3f{letter-spacing:48.148800px;}
.ls1e{letter-spacing:53.265600px;}
.ls1f{letter-spacing:57.600000px;}
.lsb{letter-spacing:76.788000px;}
.ls10{letter-spacing:84.897600px;}
.lsf{letter-spacing:84.948000px;}
.lse{letter-spacing:85.104000px;}
.lsd{letter-spacing:93.213600px;}
.lsc{letter-spacing:93.264000px;}
.ls9{letter-spacing:97.509600px;}
.lsa{letter-spacing:97.560000px;}
.ls16{letter-spacing:111.600000px;}
.ls14{letter-spacing:119.865600px;}
.ls19{letter-spacing:119.892000px;}
.ls13{letter-spacing:119.916000px;}
.ls1a{letter-spacing:124.200000px;}
.ls18{letter-spacing:128.460000px;}
.ls30{letter-spacing:174.009600px;}
.ls2f{letter-spacing:174.060000px;}
.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;}
}
.ws3d{word-spacing:-73.498752px;}
.ws39{word-spacing:-66.693312px;}
.ws2{word-spacing:-65.088000px;}
.ws12{word-spacing:-60.088032px;}
.wsc{word-spacing:-46.637280px;}
.ws6{word-spacing:-43.474752px;}
.ws5{word-spacing:-43.434720px;}
.ws11{word-spacing:-40.032000px;}
.ws17{word-spacing:-36.629280px;}
.ws38{word-spacing:-33.466752px;}
.wsb{word-spacing:-33.426720px;}
.wsd{word-spacing:-30.064032px;}
.ws7{word-spacing:-30.024000px;}
.wsf{word-spacing:-28.462752px;}
.ws10{word-spacing:-28.422720px;}
.ws1b{word-spacing:-26.621280px;}
.ws1e{word-spacing:-23.418720px;}
.ws1a{word-spacing:-1.968000px;}
.ws14{word-spacing:-1.345680px;}
.ws19{word-spacing:-1.260000px;}
.ws35{word-spacing:-1.258560px;}
.ws15{word-spacing:-1.225680px;}
.ws33{word-spacing:-1.031040px;}
.ws31{word-spacing:-0.697680px;}
.ws32{word-spacing:-0.434880px;}
.ws29{word-spacing:-0.018720px;}
.ws3{word-spacing:0.000000px;}
.ws34{word-spacing:0.257760px;}
.ws36{word-spacing:0.346320px;}
.ws13{word-spacing:0.408000px;}
.ws37{word-spacing:0.468000px;}
.ws9{word-spacing:0.489312px;}
.wse{word-spacing:0.624000px;}
.ws28{word-spacing:0.636480px;}
.ws8{word-spacing:0.672000px;}
.ws18{word-spacing:0.684000px;}
.ws16{word-spacing:1.140096px;}
.ws3a{word-spacing:1.155360px;}
.ws1d{word-spacing:1.839600px;}
.ws2a{word-spacing:1.969200px;}
.ws1c{word-spacing:2.110320px;}
.ws3c{word-spacing:2.395440px;}
.ws3f{word-spacing:2.420640px;}
.ws40{word-spacing:2.444160px;}
.ws3e{word-spacing:2.518080px;}
.ws3b{word-spacing:2.955600px;}
.ws1{word-spacing:5.406240px;}
.ws0{word-spacing:5.948640px;}
.ws20{word-spacing:30.221280px;}
.ws21{word-spacing:30.504240px;}
.ws1f{word-spacing:30.574800px;}
.ws22{word-spacing:30.765360px;}
.ws23{word-spacing:38.805984px;}
.ws26{word-spacing:38.901240px;}
.ws24{word-spacing:39.253152px;}
.ws25{word-spacing:39.312288px;}
.ws27{word-spacing:39.359808px;}
.ws4{word-spacing:66.219840px;}
.wsa{word-spacing:67.536000px;}
.ws2f{word-spacing:88.866240px;}
.ws2e{word-spacing:89.961840px;}
.ws30{word-spacing:90.056160px;}
.ws2c{word-spacing:124.230000px;}
.ws2b{word-spacing:124.686000px;}
.ws2d{word-spacing:125.277840px;}
._b{margin-left:-1561.113888px;}
._8{margin-left:-22.187088px;}
._d{margin-left:-20.875104px;}
._c{margin-left:-15.921360px;}
._a{margin-left:-12.797424px;}
._7{margin-left:-11.237616px;}
._f{margin-left:-9.882000px;}
._11{margin-left:-8.065728px;}
._6{margin-left:-6.613296px;}
._9{margin-left:-5.474736px;}
._2{margin-left:-4.127760px;}
._3{margin-left:-2.825280px;}
._0{margin-left:-1.712880px;}
._1{width:1.375920px;}
._5{width:3.008880px;}
._12{width:4.474800px;}
._15{width:22.288080px;}
._16{width:23.695920px;}
._14{width:27.640800px;}
._10{width:31.500240px;}
._18{width:33.867888px;}
._17{width:41.861040px;}
._4{width:62.823360px;}
._13{width:152.349840px;}
._e{width:958.766880px;}
.fc5{color:rgb(40,111,113);}
.fc4{color:rgb(0,102,255);}
.fc3{color:transparent;}
.fc1{color:rgb(146,39,143);}
.fc6{color:rgb(34,34,34);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs15{font-size:7.200000px;}
.fs22{font-size:84.240000px;}
.fs23{font-size:84.384000px;}
.fs24{font-size:86.400000px;}
.fs25{font-size:91.440000px;}
.fs28{font-size:91.584000px;}
.fsb{font-size:95.760000px;}
.fs16{font-size:95.904000px;}
.fs17{font-size:102.240000px;}
.fs18{font-size:102.384000px;}
.fs1{font-size:105.840000px;}
.fs1e{font-size:105.984000px;}
.fs12{font-size:108.000000px;}
.fs11{font-size:108.144000px;}
.fs26{font-size:113.760000px;}
.fs27{font-size:113.904000px;}
.fs1c{font-size:115.200000px;}
.fsc{font-size:120.240000px;}
.fsd{font-size:120.384000px;}
.fs20{font-size:124.560000px;}
.fs21{font-size:124.704000px;}
.fs0{font-size:131.760000px;}
.fs1f{font-size:131.904000px;}
.fs7{font-size:134.640000px;}
.fs2{font-size:144.000000px;}
.fs3{font-size:144.144000px;}
.fs10{font-size:149.760000px;}
.fse{font-size:156.240000px;}
.fsf{font-size:156.384000px;}
.fs8{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fs13{font-size:192.240000px;}
.fs14{font-size:192.384000px;}
.fs19{font-size:216.000000px;}
.fs1b{font-size:216.144000px;}
.fsa{font-size:239.760000px;}
.fs1d{font-size:239.904000px;}
.fs1a{font-size:264.240000px;}
.fs6{font-size:264.384000px;}
.fs4{font-size:288.000000px;}
.fs5{font-size:288.144000px;}
.y0{bottom:0.000000px;}
.y29{bottom:40.680000px;}
.yc9{bottom:41.652000px;}
.y83{bottom:46.404000px;}
.ye3{bottom:47.340000px;}
.yaf{bottom:53.064000px;}
.y152{bottom:56.340000px;}
.y135{bottom:56.664000px;}
.yf0{bottom:58.140000px;}
.y167{bottom:58.716000px;}
.ye4{bottom:61.956000px;}
.y15d{bottom:63.216000px;}
.y104{bottom:63.936000px;}
.y6{bottom:67.392000px;}
.y95{bottom:68.436000px;}
.y56{bottom:73.764000px;}
.y133{bottom:76.140000px;}
.y65{bottom:80.028000px;}
.y9c{bottom:80.280000px;}
.y3a{bottom:80.856000px;}
.y46{bottom:83.052000px;}
.y146{bottom:93.240000px;}
.y149{bottom:94.320000px;}
.y103{bottom:96.336000px;}
.y28{bottom:98.280000px;}
.y14f{bottom:102.270000px;}
.y153{bottom:103.065000px;}
.y11d{bottom:103.104000px;}
.y14d{bottom:103.500000px;}
.y4d{bottom:103.680000px;}
.y55{bottom:106.164000px;}
.y181{bottom:106.524000px;}
.y70{bottom:106.704000px;}
.yfa{bottom:109.296000px;}
.y10d{bottom:110.916000px;}
.y8d{bottom:111.744000px;}
.y178{bottom:113.832000px;}
.y1a3{bottom:114.192000px;}
.y45{bottom:115.488000px;}
.y32{bottom:117.072000px;}
.yd3{bottom:117.936000px;}
.y94{bottom:118.836000px;}
.y5{bottom:123.048000px;}
.y18a{bottom:124.020000px;}
.y166{bottom:127.692000px;}
.y64{bottom:130.428000px;}
.y170{bottom:137.556000px;}
.y54{bottom:138.564000px;}
.yb7{bottom:139.212000px;}
.y4c{bottom:139.716000px;}
.y15c{bottom:141.552000px;}
.y39{bottom:143.856000px;}
.yef{bottom:143.964000px;}
.y3b{bottom:144.936000px;}
.y82{bottom:145.872000px;}
.y14c{bottom:145.980000px;}
.y14e{bottom:147.060000px;}
.y44{bottom:147.888000px;}
.y1a{bottom:153.930000px;}
.y27{bottom:155.910000px;}
.y11c{bottom:157.110000px;}
.y41{bottom:157.575000px;}
.y1a2{bottom:158.685000px;}
.y154{bottom:159.405000px;}
.y151{bottom:160.275000px;}
.y1c{bottom:161.205000px;}
.y127{bottom:163.515000px;}
.yd2{bottom:164.550000px;}
.y8c{bottom:165.750000px;}
.y180{bottom:165.930000px;}
.y93{bottom:169.275000px;}
.y6f{bottom:169.710000px;}
.y10c{bottom:170.310000px;}
.y31{bottom:171.105000px;}
.y4b{bottom:175.710000px;}
.ybc{bottom:178.230000px;}
.yf9{bottom:178.410000px;}
.y4{bottom:178.485000px;}
.y53{bottom:179.970000px;}
.y197{bottom:181.410000px;}
.y165{bottom:181.695000px;}
.y102{bottom:182.880000px;}
.y12f{bottom:184.320000px;}
.y78{bottom:185.010000px;}
.y63{bottom:189.825000px;}
.y16f{bottom:191.550000px;}
.y113{bottom:191.910000px;}
.y189{bottom:192.960000px;}
.y177{bottom:193.785000px;}
.y81{bottom:194.325000px;}
.ya9{bottom:194.790000px;}
.y142{bottom:198.000000px;}
.yb6{bottom:199.335000px;}
.ydb{bottom:199.515000px;}
.yee{bottom:199.770000px;}
.yc8{bottom:202.110000px;}
.y105{bottom:204.510000px;}
.y38{bottom:206.895000px;}
.y13a{bottom:207.330000px;}
.y126{bottom:207.465000px;}
.yae{bottom:208.905000px;}
.y19{bottom:210.990000px;}
.y11b{bottom:211.110000px;}
.y4a{bottom:211.710000px;}
.y1a1{bottom:212.145000px;}
.y52{bottom:212.370000px;}
.y26{bottom:213.510000px;}
.y13b{bottom:215.820000px;}
.yd1{bottom:215.850000px;}
.y92{bottom:219.675000px;}
.y15b{bottom:220.035000px;}
.ye2{bottom:220.530000px;}
.y12e{bottom:225.720000px;}
.y8b{bottom:228.780000px;}
.y10b{bottom:229.710000px;}
.y40{bottom:231.405000px;}
.y6e{bottom:232.710000px;}
.y77{bottom:233.640000px;}
.y30{bottom:234.105000px;}
.y17f{bottom:237.060000px;}
.y47{bottom:237.345000px;}
.ybb{bottom:238.395000px;}
.y80{bottom:238.425000px;}
.y62{bottom:240.270000px;}
.y143{bottom:240.585000px;}
.ya1{bottom:240.660000px;}
.y196{bottom:240.840000px;}
.y147{bottom:241.845000px;}
.y51{bottom:244.800000px;}
.y18f{bottom:245.730000px;}
.y164{bottom:246.165000px;}
.y188{bottom:246.960000px;}
.y101{bottom:247.320000px;}
.yf8{bottom:247.350000px;}
.y49{bottom:247.710000px;}
.yc7{bottom:248.730000px;}
.y150{bottom:249.330000px;}
.y3{bottom:250.455000px;}
.y125{bottom:251.385000px;}
.yed{bottom:255.600000px;}
.y1a0{bottom:256.605000px;}
.ye{bottom:256.890000px;}
.y176{bottom:258.585000px;}
.y16e{bottom:259.275000px;}
.yb5{bottom:259.665000px;}
.y18{bottom:261.435000px;}
.ya8{bottom:261.975000px;}
.yd0{bottom:262.335000px;}
.yda{bottom:264.345000px;}
.y11a{bottom:265.140000px;}
.y12d{bottom:267.150000px;}
.y37{bottom:269.895000px;}
.y91{bottom:270.075000px;}
.yad{bottom:271.005000px;}
.y25{bottom:271.155000px;}
.y50{bottom:277.200000px;}
.y76{bottom:282.240000px;}
.y7f{bottom:282.345000px;}
.y8a{bottom:282.780000px;}
.y2{bottom:284.115000px;}
.yba{bottom:285.015000px;}
.y6d{bottom:286.740000px;}
.ya0{bottom:287.310000px;}
.y2f{bottom:288.105000px;}
.ye1{bottom:288.975000px;}
.y10a{bottom:291.675000px;}
.y61{bottom:294.810000px;}
.y124{bottom:295.485000px;}
.y15a{bottom:298.365000px;}
.y14b{bottom:300.345000px;}
.y148{bottom:300.495000px;}
.yc6{bottom:304.350000px;}
.y3f{bottom:305.205000px;}
.y163{bottom:305.565000px;}
.yb4{bottom:306.285000px;}
.y16d{bottom:307.875000px;}
.y12c{bottom:308.550000px;}
.ycf{bottom:308.955000px;}
.y195{bottom:309.240000px;}
.y19f{bottom:310.065000px;}
.y187{bottom:311.250000px;}
.yec{bottom:311.400000px;}
.yf7{bottom:311.655000px;}
.y17{bottom:311.835000px;}
.y100{bottom:313.050000px;}
.y1{bottom:317.775000px;}
.y119{bottom:319.140000px;}
.y17e{bottom:319.500000px;}
.y90{bottom:320.505000px;}
.y3c{bottom:323.169000px;}
.y18e{bottom:325.470000px;}
.y7e{bottom:326.265000px;}
.y24{bottom:328.755000px;}
.yd9{bottom:329.145000px;}
.ya7{bottom:329.295000px;}
.y75{bottom:330.840000px;}
.yd{bottom:332.535000px;}
.y36{bottom:332.925000px;}
.yac{bottom:333.150000px;}
.y14a{bottom:334.905000px;}
.y139{bottom:335.700000px;}
.y175{bottom:338.370000px;}
.y132{bottom:339.450000px;}
.y6c{bottom:340.740000px;}
.y89{bottom:343.080000px;}
.y123{bottom:343.950000px;}
.y13f{bottom:344.340000px;}
.y9f{bottom:347.430000px;}
.y11{bottom:347.475000px;}
.y106{bottom:348.195000px;}
.y112{bottom:350.355000px;}
.yc5{bottom:350.820000px;}
.y2e{bottom:351.150000px;}
.y12b{bottom:354.090000px;}
.y19e{bottom:354.570000px;}
.ye0{bottom:357.375000px;}
.yce{bottom:360.255000px;}
.y109{bottom:361.155000px;}
.yb3{bottom:366.405000px;}
.yeb{bottom:367.230000px;}
.y194{bottom:368.670000px;}
.yb9{bottom:369.435000px;}
.y159{bottom:369.645000px;}
.y7d{bottom:370.410000px;}
.y8f{bottom:370.905000px;}
.yf6{bottom:371.055000px;}
.y16c{bottom:372.855000px;}
.y118{bottom:373.140000px;}
.yff{bottom:373.530000px;}
.y60{bottom:375.990000px;}
.y23{bottom:377.355000px;}
.y162{bottom:378.645000px;}
.y13c{bottom:378.900000px;}
.y17d{bottom:378.930000px;}
.y3e{bottom:379.005000px;}
.y74{bottom:379.470000px;}
.y186{bottom:379.650000px;}
.y16{bottom:383.295000px;}
.y122{bottom:387.870000px;}
.yd8{bottom:393.945000px;}
.y9e{bottom:394.050000px;}
.y42{bottom:394.590000px;}
.y4f{bottom:394.920000px;}
.y12a{bottom:395.490000px;}
.y35{bottom:395.925000px;}
.ya6{bottom:396.645000px;}
.y88{bottom:398.010000px;}
.y1b{bottom:398.445000px;}
.y19d{bottom:399.030000px;}
.y18d{bottom:399.315000px;}
.y174{bottom:403.170000px;}
.y6b{bottom:403.770000px;}
.y145{bottom:403.995000px;}
.y2d{bottom:405.150000px;}
.yc4{bottom:406.440000px;}
.ycd{bottom:406.695000px;}
.y137{bottom:408.675000px;}
.yb2{bottom:413.070000px;}
.ydf{bottom:416.775000px;}
.y48{bottom:417.390000px;}
.yea{bottom:418.170000px;}
.y10{bottom:420.915000px;}
.y141{bottom:421.455000px;}
.y108{bottom:425.805000px;}
.y5f{bottom:426.420000px;}
.y117{bottom:427.170000px;}
.y4e{bottom:427.320000px;}
.y73{bottom:428.070000px;}
.y158{bottom:429.090000px;}
.yc{bottom:429.225000px;}
.y111{bottom:429.585000px;}
.y121{bottom:431.790000px;}
.y15{bottom:433.725000px;}
.y22{bottom:434.985000px;}
.y7c{bottom:435.090000px;}
.y129{bottom:436.935000px;}
.y193{bottom:437.070000px;}
.y9{bottom:437.370000px;}
.y144{bottom:438.585000px;}
.y136{bottom:438.915000px;}
.yf5{bottom:439.485000px;}
.y16b{bottom:441.825000px;}
.y99{bottom:442.620000px;}
.yfe{bottom:443.055000px;}
.y161{bottom:447.630000px;}
.y185{bottom:448.095000px;}
.y34{bottom:449.925000px;}
.yab{bottom:450.210000px;}
.y87{bottom:452.010000px;}
.y19c{bottom:452.490000px;}
.yc3{bottom:453.060000px;}
.y17c{bottom:453.270000px;}
.ycc{bottom:453.345000px;}
.y3d{bottom:455.550000px;}
.yb1{bottom:459.690000px;}
.y6a{bottom:466.770000px;}
.yd7{bottom:467.790000px;}
.y173{bottom:468.000000px;}
.y9d{bottom:469.875000px;}
.y18c{bottom:473.115000px;}
.y2c{bottom:473.550000px;}
.y120{bottom:475.890000px;}
.y72{bottom:476.670000px;}
.y128{bottom:478.335000px;}
.y21{bottom:483.585000px;}
.y116{bottom:483.870000px;}
.y14{bottom:484.125000px;}
.yde{bottom:485.205000px;}
.y5e{bottom:485.820000px;}
.ya5{bottom:486.615000px;}
.ye9{bottom:490.530000px;}
.y98{bottom:491.220000px;}
.ybe{bottom:493.485000px;}
.yf{bottom:494.385000px;}
.y192{bottom:496.470000px;}
.y157{bottom:497.490000px;}
.y19b{bottom:497.520000px;}
.yf4{bottom:498.885000px;}
.ycb{bottom:499.965000px;}
.y160{bottom:501.630000px;}
.yfd{bottom:503.535000px;}
.yb{bottom:504.825000px;}
.y86{bottom:506.010000px;}
.y16a{bottom:507.525000px;}
.y110{bottom:508.785000px;}
.y107{bottom:512.385000px;}
.y17b{bottom:512.670000px;}
.y33{bottom:515.670000px;}
.yc2{bottom:516.270000px;}
.y184{bottom:516.495000px;}
.y5b{bottom:523.770000px;}
.y8{bottom:523.800000px;}
.y71{bottom:525.315000px;}
.y140{bottom:525.570000px;}
.y69{bottom:529.770000px;}
.y7b{bottom:531.150000px;}
.yd6{bottom:532.590000px;}
.y131{bottom:534.345000px;}
.y13{bottom:534.525000px;}
.y5d{bottom:536.220000px;}
.y18b{bottom:537.945000px;}
.yb0{bottom:538.095000px;}
.y97{bottom:539.820000px;}
.y20{bottom:541.185000px;}
.ye8{bottom:542.055000px;}
.y172{bottom:544.500000px;}
.ybd{bottom:547.485000px;}
.y11f{bottom:548.460000px;}
.ydd{bottom:548.925000px;}
.y19a{bottom:552.780000px;}
.y191{bottom:555.915000px;}
.y156{bottom:556.890000px;}
.y85{bottom:560.055000px;}
.y13e{bottom:560.160000px;}
.y130{bottom:562.425000px;}
.ye5{bottom:564.045000px;}
.y15f{bottom:565.920000px;}
.y5a{bottom:567.540000px;}
.yf1{bottom:567.825000px;}
.y169{bottom:572.325000px;}
.yca{bottom:574.560000px;}
.ye7{bottom:575.250000px;}
.y183{bottom:575.895000px;}
.y138{bottom:577.590000px;}
.y17a{bottom:583.815000px;}
.y1f{bottom:589.830000px;}
.y5c{bottom:590.970000px;}
.y13d{bottom:594.720000px;}
.y7a{bottom:595.950000px;}
.y199{bottom:597.240000px;}
.y96{bottom:597.450000px;}
.y115{bottom:606.960000px;}
.y7{bottom:610.200000px;}
.y2b{bottom:611.250000px;}
.yf3{bottom:611.790000px;}
.y59{bottom:616.140000px;}
.yc1{bottom:618.585000px;}
.ya4{bottom:621.825000px;}
.yfc{bottom:625.470000px;}
.y68{bottom:626.655000px;}
.yd5{bottom:635.400000px;}
.ya{bottom:637.170000px;}
.y12{bottom:639.150000px;}
.y10f{bottom:640.950000px;}
.y9b{bottom:641.265000px;}
.yb8{bottom:644.580000px;}
.y84{bottom:660.855000px;}
.yc0{bottom:663.945000px;}
.y58{bottom:664.740000px;}
.y11e{bottom:664.890000px;}
.y114{bottom:665.280000px;}
.yaa{bottom:666.690000px;}
.ya3{bottom:667.230000px;}
.y43{bottom:667.980000px;}
.y2a{bottom:668.850000px;}
.yf2{bottom:670.110000px;}
.y1e{bottom:672.630000px;}
.y198{bottom:674.280000px;}
.y171{bottom:674.715000px;}
.y168{bottom:675.030000px;}
.ydc{bottom:675.150000px;}
.y15e{bottom:680.040000px;}
.y190{bottom:681.270000px;}
.y79{bottom:682.815000px;}
.ye6{bottom:682.890000px;}
.y155{bottom:683.025000px;}
.yfb{bottom:683.790000px;}
.y134{bottom:684.870000px;}
.y179{bottom:685.050000px;}
.y66{bottom:687.030000px;}
.y8e{bottom:687.420000px;}
.y182{bottom:689.040000px;}
.y9a{bottom:689.370000px;}
.y67{bottom:691.455000px;}
.yd4{bottom:693.750000px;}
.y10e{bottom:699.270000px;}
.ybf{bottom:712.050000px;}
.y57{bottom:713.370000px;}
.ya2{bottom:714.030000px;}
.y1d{bottom:717.630000px;}
.h1a{height:7.161328px;}
.h2e{height:76.219102px;}
.h35{height:76.349391px;}
.h20{height:85.847344px;}
.h31{height:85.976438px;}
.h2d{height:86.642227px;}
.h1d{height:91.656562px;}
.h1e{height:91.785656px;}
.h2c{height:92.505234px;}
.h37{height:95.245664px;}
.h29{height:96.685383px;}
.h13{height:96.820312px;}
.h15{height:96.949406px;}
.h14{height:97.716797px;}
.h12{height:97.847086px;}
.h3a{height:101.706328px;}
.h39{height:101.984062px;}
.h3b{height:102.113156px;}
.hc{height:107.793281px;}
.hd{height:107.922375px;}
.h1b{height:108.791367px;}
.h22{height:108.921656px;}
.h25{height:118.120781px;}
.h28{height:118.249875px;}
.he{height:119.214492px;}
.h27{height:119.344781px;}
.h2{height:129.093750px;}
.h3{height:129.222844px;}
.h18{height:130.289062px;}
.h38{height:130.419352px;}
.h1{height:134.912461px;}
.h11{height:135.500625px;}
.hf{height:140.066719px;}
.h10{height:140.195813px;}
.h24{height:141.363633px;}
.h2b{height:141.493922px;}
.h7{height:151.786758px;}
.h8{height:151.917047px;}
.h16{height:173.935898px;}
.h17{height:174.066188px;}
.h1f{height:195.433594px;}
.h23{height:195.563883px;}
.hb{height:216.931289px;}
.h26{height:217.061578px;}
.h34{height:224.640000px;}
.h36{height:225.900000px;}
.h33{height:226.800000px;}
.h6{height:237.016125px;}
.h21{height:239.080430px;}
.h1c{height:239.210719px;}
.ha{height:260.578125px;}
.h9{height:260.708414px;}
.h4{height:294.890625px;}
.h5{height:295.038070px;}
.h19{height:324.795000px;}
.h2a{height:349.815000px;}
.h32{height:466.560000px;}
.h2f{height:468.720000px;}
.h30{height:594.180000px;}
.h0{height:810.000000px;}
.w4{width:299.880000px;}
.w3{width:321.915000px;}
.w2{width:431.535000px;}
.w5{width:766.260000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7e{left:7.050000px;}
.x85{left:8.280000px;}
.x84{left:10.770000px;}
.x7c{left:12.030000px;}
.x30{left:39.779979px;}
.x31{left:56.807979px;}
.x16{left:61.667979px;}
.x5b{left:65.951979px;}
.x29{left:68.003979px;}
.x8d{left:69.803979px;}
.x15{left:72.791979px;}
.x6d{left:74.627979px;}
.x3c{left:75.707979px;}
.x34{left:77.075979px;}
.x2c{left:78.227979px;}
.x5d{left:79.811979px;}
.xf{left:80.819979px;}
.x62{left:82.799979px;}
.x5e{left:85.211979px;}
.x10{left:86.219979px;}
.x6a{left:88.811979px;}
.x6f{left:89.891979px;}
.x2d{left:94.247979px;}
.x17{left:95.507979px;}
.x32{left:97.307979px;}
.x5c{left:99.827979px;}
.x89{left:101.195979px;}
.x79{left:102.815979px;}
.x2a{left:105.551979px;}
.x11{left:107.819979px;}
.x6c{left:110.231979px;}
.x57{left:112.067979px;}
.x12{left:113.219979px;}
.x63{left:115.199979px;}
.x33{left:116.459979px;}
.x8c{left:118.799979px;}
.x6b{left:121.211979px;}
.x87{left:123.803979px;}
.x18{left:126.827979px;}
.x52{left:129.023979px;}
.x3b{left:130.319979px;}
.x8b{left:131.831979px;}
.x48{left:132.911979px;}
.x2e{left:134.747979px;}
.x65{left:136.691979px;}
.x39{left:139.535979px;}
.x66{left:143.099979px;}
.x5f{left:144.611979px;}
.x9{left:145.835979px;}
.x70{left:149.291979px;}
.xa{left:151.229979px;}
.xd{left:153.209979px;}
.x8a{left:158.729979px;}
.x19{left:160.664979px;}
.xc{left:165.089979px;}
.x60{left:166.214979px;}
.x3a{left:180.029979px;}
.xe{left:181.109979px;}
.x1b{left:184.139979px;}
.x1{left:191.624979px;}
.x88{left:194.039979px;}
.xb{left:205.229979px;}
.x50{left:207.209979px;}
.x7{left:229.064979px;}
.x8{left:230.864979px;}
.x38{left:247.829979px;}
.x7b{left:280.080000px;}
.x68{left:292.754979px;}
.x67{left:301.754979px;}
.x42{left:303.839979px;}
.x3{left:307.364979px;}
.x47{left:313.634979px;}
.x4c{left:316.769979px;}
.x36{left:320.969979px;}
.x3e{left:326.309979px;}
.x51{left:328.469979px;}
.x2{left:333.464979px;}
.x56{left:339.224979px;}
.x37{left:341.309979px;}
.x7a{left:358.889979px;}
.x35{left:374.219979px;}
.x78{left:383.789979px;}
.x82{left:390.209979px;}
.x4{left:408.929979px;}
.x5{left:491.909979px;}
.x6{left:512.789979px;}
.x69{left:543.314979px;}
.x72{left:545.654979px;}
.x73{left:566.024979px;}
.x7d{left:579.780000px;}
.x3d{left:588.884979px;}
.x1d{left:595.004979px;}
.x20{left:600.194979px;}
.x1c{left:605.414979px;}
.x71{left:616.604979px;}
.x7f{left:627.329979px;}
.x86{left:628.559979px;}
.x1f{left:632.624979px;}
.x27{left:638.384979px;}
.x28{left:640.544979px;}
.x1e{left:641.624979px;}
.x2b{left:672.194979px;}
.x83{left:673.665000px;}
.x46{left:730.904979px;}
.x81{left:740.085000px;}
.x80{left:746.925000px;}
.x54{left:755.174979px;}
.x55{left:759.704979px;}
.x40{left:762.809979px;}
.x4d{left:766.649979px;}
.x4a{left:769.319979px;}
.x59{left:771.944979px;}
.x4e{left:773.024979px;}
.x44{left:775.154979px;}
.x41{left:783.149979px;}
.x5a{left:792.284979px;}
.x4f{left:793.364979px;}
.x4b{left:796.319979px;}
.x45{left:802.154979px;}
.x2f{left:929.909979px;}
.x49{left:967.169979px;}
.x53{left:968.939979px;}
.x43{left:971.609979px;}
.x1a{left:976.065000px;}
.x3f{left:985.319979px;}
.x23{left:990.149979px;}
.x58{left:991.589979px;}
.x25{left:999.509979px;}
.x24{left:1000.589979px;}
.x76{left:1007.969979px;}
.x6e{left:1018.905000px;}
.x26{left:1024.529979px;}
.x77{left:1028.309979px;}
.x22{left:1036.049979px;}
.x74{left:1064.054979px;}
.x13{left:1098.749979px;}
.x61{left:1112.939979px;}
.x21{left:1126.799979px;}
.x64{left:1128.929979px;}
.x75{left:1132.454979px;}
.x14{left:1250.999979px;}
@media print{
.v1{vertical-align:-40.426667pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.384000pt;}
.ls2a{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.308267pt;}
.ls34{letter-spacing:-0.304533pt;}
.ls5{letter-spacing:-0.291200pt;}
.ls15{letter-spacing:-0.272533pt;}
.ls48{letter-spacing:-0.246933pt;}
.ls22{letter-spacing:-0.128000pt;}
.ls39{letter-spacing:-0.037867pt;}
.ls2b{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.000010pt;}
.ls6{letter-spacing:0.017920pt;}
.ls33{letter-spacing:0.030720pt;}
.ls38{letter-spacing:0.033280pt;}
.ls28{letter-spacing:0.042613pt;}
.ls45{letter-spacing:0.048640pt;}
.ls12{letter-spacing:0.080533pt;}
.ls44{letter-spacing:0.097067pt;}
.ls3b{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.140267pt;}
.ls41{letter-spacing:0.144533pt;}
.ls36{letter-spacing:0.161067pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls47{letter-spacing:0.225067pt;}
.ls3{letter-spacing:0.249600pt;}
.ls25{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.258133pt;}
.ls37{letter-spacing:0.262400pt;}
.ls3a{letter-spacing:0.303467pt;}
.ls40{letter-spacing:23.781760pt;}
.ls2d{letter-spacing:27.694336pt;}
.ls2c{letter-spacing:27.751040pt;}
.ls23{letter-spacing:31.436800pt;}
.ls42{letter-spacing:31.564800pt;}
.ls27{letter-spacing:35.065856pt;}
.ls8{letter-spacing:35.122560pt;}
.ls24{letter-spacing:35.133227pt;}
.ls3d{letter-spacing:35.193856pt;}
.ls3c{letter-spacing:35.229227pt;}
.ls3e{letter-spacing:35.250560pt;}
.ls20{letter-spacing:38.080000pt;}
.ls1c{letter-spacing:38.675200pt;}
.ls1b{letter-spacing:38.720000pt;}
.ls21{letter-spacing:38.848000pt;}
.ls11{letter-spacing:39.035136pt;}
.ls2e{letter-spacing:39.045803pt;}
.ls7{letter-spacing:39.091840pt;}
.ls26{letter-spacing:39.102507pt;}
.ls32{letter-spacing:40.467200pt;}
.ls17{letter-spacing:40.512000pt;}
.ls46{letter-spacing:40.736256pt;}
.ls43{letter-spacing:40.792960pt;}
.ls31{letter-spacing:42.634667pt;}
.ls3f{letter-spacing:42.798933pt;}
.ls1e{letter-spacing:47.347200pt;}
.ls1f{letter-spacing:51.200000pt;}
.lsb{letter-spacing:68.256000pt;}
.ls10{letter-spacing:75.464533pt;}
.lsf{letter-spacing:75.509333pt;}
.lse{letter-spacing:75.648000pt;}
.lsd{letter-spacing:82.856533pt;}
.lsc{letter-spacing:82.901333pt;}
.ls9{letter-spacing:86.675200pt;}
.lsa{letter-spacing:86.720000pt;}
.ls16{letter-spacing:99.200000pt;}
.ls14{letter-spacing:106.547200pt;}
.ls19{letter-spacing:106.570667pt;}
.ls13{letter-spacing:106.592000pt;}
.ls1a{letter-spacing:110.400000pt;}
.ls18{letter-spacing:114.186667pt;}
.ls30{letter-spacing:154.675200pt;}
.ls2f{letter-spacing:154.720000pt;}
.ws3d{word-spacing:-65.332224pt;}
.ws39{word-spacing:-59.282944pt;}
.ws2{word-spacing:-57.856000pt;}
.ws12{word-spacing:-53.411584pt;}
.wsc{word-spacing:-41.455360pt;}
.ws6{word-spacing:-38.644224pt;}
.ws5{word-spacing:-38.608640pt;}
.ws11{word-spacing:-35.584000pt;}
.ws17{word-spacing:-32.559360pt;}
.ws38{word-spacing:-29.748224pt;}
.wsb{word-spacing:-29.712640pt;}
.wsd{word-spacing:-26.723584pt;}
.ws7{word-spacing:-26.688000pt;}
.wsf{word-spacing:-25.300224pt;}
.ws10{word-spacing:-25.264640pt;}
.ws1b{word-spacing:-23.663360pt;}
.ws1e{word-spacing:-20.816640pt;}
.ws1a{word-spacing:-1.749333pt;}
.ws14{word-spacing:-1.196160pt;}
.ws19{word-spacing:-1.120000pt;}
.ws35{word-spacing:-1.118720pt;}
.ws15{word-spacing:-1.089493pt;}
.ws33{word-spacing:-0.916480pt;}
.ws31{word-spacing:-0.620160pt;}
.ws32{word-spacing:-0.386560pt;}
.ws29{word-spacing:-0.016640pt;}
.ws3{word-spacing:0.000000pt;}
.ws34{word-spacing:0.229120pt;}
.ws36{word-spacing:0.307840pt;}
.ws13{word-spacing:0.362667pt;}
.ws37{word-spacing:0.416000pt;}
.ws9{word-spacing:0.434944pt;}
.wse{word-spacing:0.554667pt;}
.ws28{word-spacing:0.565760pt;}
.ws8{word-spacing:0.597333pt;}
.ws18{word-spacing:0.608000pt;}
.ws16{word-spacing:1.013419pt;}
.ws3a{word-spacing:1.026987pt;}
.ws1d{word-spacing:1.635200pt;}
.ws2a{word-spacing:1.750400pt;}
.ws1c{word-spacing:1.875840pt;}
.ws3c{word-spacing:2.129280pt;}
.ws3f{word-spacing:2.151680pt;}
.ws40{word-spacing:2.172587pt;}
.ws3e{word-spacing:2.238293pt;}
.ws3b{word-spacing:2.627200pt;}
.ws1{word-spacing:4.805547pt;}
.ws0{word-spacing:5.287680pt;}
.ws20{word-spacing:26.863360pt;}
.ws21{word-spacing:27.114880pt;}
.ws1f{word-spacing:27.177600pt;}
.ws22{word-spacing:27.346987pt;}
.ws23{word-spacing:34.494208pt;}
.ws26{word-spacing:34.578880pt;}
.ws24{word-spacing:34.891691pt;}
.ws25{word-spacing:34.944256pt;}
.ws27{word-spacing:34.986496pt;}
.ws4{word-spacing:58.862080pt;}
.wsa{word-spacing:60.032000pt;}
.ws2f{word-spacing:78.992213pt;}
.ws2e{word-spacing:79.966080pt;}
.ws30{word-spacing:80.049920pt;}
.ws2c{word-spacing:110.426667pt;}
.ws2b{word-spacing:110.832000pt;}
.ws2d{word-spacing:111.358080pt;}
._b{margin-left:-1387.656789pt;}
._8{margin-left:-19.721856pt;}
._d{margin-left:-18.555648pt;}
._c{margin-left:-14.152320pt;}
._a{margin-left:-11.375488pt;}
._7{margin-left:-9.988992pt;}
._f{margin-left:-8.784000pt;}
._11{margin-left:-7.169536pt;}
._6{margin-left:-5.878485pt;}
._9{margin-left:-4.866432pt;}
._2{margin-left:-3.669120pt;}
._3{margin-left:-2.511360pt;}
._0{margin-left:-1.522560pt;}
._1{width:1.223040pt;}
._5{width:2.674560pt;}
._12{width:3.977600pt;}
._15{width:19.811627pt;}
._16{width:21.063040pt;}
._14{width:24.569600pt;}
._10{width:28.000213pt;}
._18{width:30.104789pt;}
._17{width:37.209813pt;}
._4{width:55.842987pt;}
._13{width:135.422080pt;}
._e{width:852.237227pt;}
.fs15{font-size:6.400000pt;}
.fs22{font-size:74.880000pt;}
.fs23{font-size:75.008000pt;}
.fs24{font-size:76.800000pt;}
.fs25{font-size:81.280000pt;}
.fs28{font-size:81.408000pt;}
.fsb{font-size:85.120000pt;}
.fs16{font-size:85.248000pt;}
.fs17{font-size:90.880000pt;}
.fs18{font-size:91.008000pt;}
.fs1{font-size:94.080000pt;}
.fs1e{font-size:94.208000pt;}
.fs12{font-size:96.000000pt;}
.fs11{font-size:96.128000pt;}
.fs26{font-size:101.120000pt;}
.fs27{font-size:101.248000pt;}
.fs1c{font-size:102.400000pt;}
.fsc{font-size:106.880000pt;}
.fsd{font-size:107.008000pt;}
.fs20{font-size:110.720000pt;}
.fs21{font-size:110.848000pt;}
.fs0{font-size:117.120000pt;}
.fs1f{font-size:117.248000pt;}
.fs7{font-size:119.680000pt;}
.fs2{font-size:128.000000pt;}
.fs3{font-size:128.128000pt;}
.fs10{font-size:133.120000pt;}
.fse{font-size:138.880000pt;}
.fsf{font-size:139.008000pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fs13{font-size:170.880000pt;}
.fs14{font-size:171.008000pt;}
.fs19{font-size:192.000000pt;}
.fs1b{font-size:192.128000pt;}
.fsa{font-size:213.120000pt;}
.fs1d{font-size:213.248000pt;}
.fs1a{font-size:234.880000pt;}
.fs6{font-size:235.008000pt;}
.fs4{font-size:256.000000pt;}
.fs5{font-size:256.128000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:36.160000pt;}
.yc9{bottom:37.024000pt;}
.y83{bottom:41.248000pt;}
.ye3{bottom:42.080000pt;}
.yaf{bottom:47.168000pt;}
.y152{bottom:50.080000pt;}
.y135{bottom:50.368000pt;}
.yf0{bottom:51.680000pt;}
.y167{bottom:52.192000pt;}
.ye4{bottom:55.072000pt;}
.y15d{bottom:56.192000pt;}
.y104{bottom:56.832000pt;}
.y6{bottom:59.904000pt;}
.y95{bottom:60.832000pt;}
.y56{bottom:65.568000pt;}
.y133{bottom:67.680000pt;}
.y65{bottom:71.136000pt;}
.y9c{bottom:71.360000pt;}
.y3a{bottom:71.872000pt;}
.y46{bottom:73.824000pt;}
.y146{bottom:82.880000pt;}
.y149{bottom:83.840000pt;}
.y103{bottom:85.632000pt;}
.y28{bottom:87.360000pt;}
.y14f{bottom:90.906667pt;}
.y153{bottom:91.613333pt;}
.y11d{bottom:91.648000pt;}
.y14d{bottom:92.000000pt;}
.y4d{bottom:92.160000pt;}
.y55{bottom:94.368000pt;}
.y181{bottom:94.688000pt;}
.y70{bottom:94.848000pt;}
.yfa{bottom:97.152000pt;}
.y10d{bottom:98.592000pt;}
.y8d{bottom:99.328000pt;}
.y178{bottom:101.184000pt;}
.y1a3{bottom:101.504000pt;}
.y45{bottom:102.656000pt;}
.y32{bottom:104.064000pt;}
.yd3{bottom:104.832000pt;}
.y94{bottom:105.632000pt;}
.y5{bottom:109.376000pt;}
.y18a{bottom:110.240000pt;}
.y166{bottom:113.504000pt;}
.y64{bottom:115.936000pt;}
.y170{bottom:122.272000pt;}
.y54{bottom:123.168000pt;}
.yb7{bottom:123.744000pt;}
.y4c{bottom:124.192000pt;}
.y15c{bottom:125.824000pt;}
.y39{bottom:127.872000pt;}
.yef{bottom:127.968000pt;}
.y3b{bottom:128.832000pt;}
.y82{bottom:129.664000pt;}
.y14c{bottom:129.760000pt;}
.y14e{bottom:130.720000pt;}
.y44{bottom:131.456000pt;}
.y1a{bottom:136.826667pt;}
.y27{bottom:138.586667pt;}
.y11c{bottom:139.653333pt;}
.y41{bottom:140.066667pt;}
.y1a2{bottom:141.053333pt;}
.y154{bottom:141.693333pt;}
.y151{bottom:142.466667pt;}
.y1c{bottom:143.293333pt;}
.y127{bottom:145.346667pt;}
.yd2{bottom:146.266667pt;}
.y8c{bottom:147.333333pt;}
.y180{bottom:147.493333pt;}
.y93{bottom:150.466667pt;}
.y6f{bottom:150.853333pt;}
.y10c{bottom:151.386667pt;}
.y31{bottom:152.093333pt;}
.y4b{bottom:156.186667pt;}
.ybc{bottom:158.426667pt;}
.yf9{bottom:158.586667pt;}
.y4{bottom:158.653333pt;}
.y53{bottom:159.973333pt;}
.y197{bottom:161.253333pt;}
.y165{bottom:161.506667pt;}
.y102{bottom:162.560000pt;}
.y12f{bottom:163.840000pt;}
.y78{bottom:164.453333pt;}
.y63{bottom:168.733333pt;}
.y16f{bottom:170.266667pt;}
.y113{bottom:170.586667pt;}
.y189{bottom:171.520000pt;}
.y177{bottom:172.253333pt;}
.y81{bottom:172.733333pt;}
.ya9{bottom:173.146667pt;}
.y142{bottom:176.000000pt;}
.yb6{bottom:177.186667pt;}
.ydb{bottom:177.346667pt;}
.yee{bottom:177.573333pt;}
.yc8{bottom:179.653333pt;}
.y105{bottom:181.786667pt;}
.y38{bottom:183.906667pt;}
.y13a{bottom:184.293333pt;}
.y126{bottom:184.413333pt;}
.yae{bottom:185.693333pt;}
.y19{bottom:187.546667pt;}
.y11b{bottom:187.653333pt;}
.y4a{bottom:188.186667pt;}
.y1a1{bottom:188.573333pt;}
.y52{bottom:188.773333pt;}
.y26{bottom:189.786667pt;}
.y13b{bottom:191.840000pt;}
.yd1{bottom:191.866667pt;}
.y92{bottom:195.266667pt;}
.y15b{bottom:195.586667pt;}
.ye2{bottom:196.026667pt;}
.y12e{bottom:200.640000pt;}
.y8b{bottom:203.360000pt;}
.y10b{bottom:204.186667pt;}
.y40{bottom:205.693333pt;}
.y6e{bottom:206.853333pt;}
.y77{bottom:207.680000pt;}
.y30{bottom:208.093333pt;}
.y17f{bottom:210.720000pt;}
.y47{bottom:210.973333pt;}
.ybb{bottom:211.906667pt;}
.y80{bottom:211.933333pt;}
.y62{bottom:213.573333pt;}
.y143{bottom:213.853333pt;}
.ya1{bottom:213.920000pt;}
.y196{bottom:214.080000pt;}
.y147{bottom:214.973333pt;}
.y51{bottom:217.600000pt;}
.y18f{bottom:218.426667pt;}
.y164{bottom:218.813333pt;}
.y188{bottom:219.520000pt;}
.y101{bottom:219.840000pt;}
.yf8{bottom:219.866667pt;}
.y49{bottom:220.186667pt;}
.yc7{bottom:221.093333pt;}
.y150{bottom:221.626667pt;}
.y3{bottom:222.626667pt;}
.y125{bottom:223.453333pt;}
.yed{bottom:227.200000pt;}
.y1a0{bottom:228.093333pt;}
.ye{bottom:228.346667pt;}
.y176{bottom:229.853333pt;}
.y16e{bottom:230.466667pt;}
.yb5{bottom:230.813333pt;}
.y18{bottom:232.386667pt;}
.ya8{bottom:232.866667pt;}
.yd0{bottom:233.186667pt;}
.yda{bottom:234.973333pt;}
.y11a{bottom:235.680000pt;}
.y12d{bottom:237.466667pt;}
.y37{bottom:239.906667pt;}
.y91{bottom:240.066667pt;}
.yad{bottom:240.893333pt;}
.y25{bottom:241.026667pt;}
.y50{bottom:246.400000pt;}
.y76{bottom:250.880000pt;}
.y7f{bottom:250.973333pt;}
.y8a{bottom:251.360000pt;}
.y2{bottom:252.546667pt;}
.yba{bottom:253.346667pt;}
.y6d{bottom:254.880000pt;}
.ya0{bottom:255.386667pt;}
.y2f{bottom:256.093333pt;}
.ye1{bottom:256.866667pt;}
.y10a{bottom:259.266667pt;}
.y61{bottom:262.053333pt;}
.y124{bottom:262.653333pt;}
.y15a{bottom:265.213333pt;}
.y14b{bottom:266.973333pt;}
.y148{bottom:267.106667pt;}
.yc6{bottom:270.533333pt;}
.y3f{bottom:271.293333pt;}
.y163{bottom:271.613333pt;}
.yb4{bottom:272.253333pt;}
.y16d{bottom:273.666667pt;}
.y12c{bottom:274.266667pt;}
.ycf{bottom:274.626667pt;}
.y195{bottom:274.880000pt;}
.y19f{bottom:275.613333pt;}
.y187{bottom:276.666667pt;}
.yec{bottom:276.800000pt;}
.yf7{bottom:277.026667pt;}
.y17{bottom:277.186667pt;}
.y100{bottom:278.266667pt;}
.y1{bottom:282.466667pt;}
.y119{bottom:283.680000pt;}
.y17e{bottom:284.000000pt;}
.y90{bottom:284.893333pt;}
.y3c{bottom:287.261333pt;}
.y18e{bottom:289.306667pt;}
.y7e{bottom:290.013333pt;}
.y24{bottom:292.226667pt;}
.yd9{bottom:292.573333pt;}
.ya7{bottom:292.706667pt;}
.y75{bottom:294.080000pt;}
.yd{bottom:295.586667pt;}
.y36{bottom:295.933333pt;}
.yac{bottom:296.133333pt;}
.y14a{bottom:297.693333pt;}
.y139{bottom:298.400000pt;}
.y175{bottom:300.773333pt;}
.y132{bottom:301.733333pt;}
.y6c{bottom:302.880000pt;}
.y89{bottom:304.960000pt;}
.y123{bottom:305.733333pt;}
.y13f{bottom:306.080000pt;}
.y9f{bottom:308.826667pt;}
.y11{bottom:308.866667pt;}
.y106{bottom:309.506667pt;}
.y112{bottom:311.426667pt;}
.yc5{bottom:311.840000pt;}
.y2e{bottom:312.133333pt;}
.y12b{bottom:314.746667pt;}
.y19e{bottom:315.173333pt;}
.ye0{bottom:317.666667pt;}
.yce{bottom:320.226667pt;}
.y109{bottom:321.026667pt;}
.yb3{bottom:325.693333pt;}
.yeb{bottom:326.426667pt;}
.y194{bottom:327.706667pt;}
.yb9{bottom:328.386667pt;}
.y159{bottom:328.573333pt;}
.y7d{bottom:329.253333pt;}
.y8f{bottom:329.693333pt;}
.yf6{bottom:329.826667pt;}
.y16c{bottom:331.426667pt;}
.y118{bottom:331.680000pt;}
.yff{bottom:332.026667pt;}
.y60{bottom:334.213333pt;}
.y23{bottom:335.426667pt;}
.y162{bottom:336.573333pt;}
.y13c{bottom:336.800000pt;}
.y17d{bottom:336.826667pt;}
.y3e{bottom:336.893333pt;}
.y74{bottom:337.306667pt;}
.y186{bottom:337.466667pt;}
.y16{bottom:340.706667pt;}
.y122{bottom:344.773333pt;}
.yd8{bottom:350.173333pt;}
.y9e{bottom:350.266667pt;}
.y42{bottom:350.746667pt;}
.y4f{bottom:351.040000pt;}
.y12a{bottom:351.546667pt;}
.y35{bottom:351.933333pt;}
.ya6{bottom:352.573333pt;}
.y88{bottom:353.786667pt;}
.y1b{bottom:354.173333pt;}
.y19d{bottom:354.693333pt;}
.y18d{bottom:354.946667pt;}
.y174{bottom:358.373333pt;}
.y6b{bottom:358.906667pt;}
.y145{bottom:359.106667pt;}
.y2d{bottom:360.133333pt;}
.yc4{bottom:361.280000pt;}
.ycd{bottom:361.506667pt;}
.y137{bottom:363.266667pt;}
.yb2{bottom:367.173333pt;}
.ydf{bottom:370.466667pt;}
.y48{bottom:371.013333pt;}
.yea{bottom:371.706667pt;}
.y10{bottom:374.146667pt;}
.y141{bottom:374.626667pt;}
.y108{bottom:378.493333pt;}
.y5f{bottom:379.040000pt;}
.y117{bottom:379.706667pt;}
.y4e{bottom:379.840000pt;}
.y73{bottom:380.506667pt;}
.y158{bottom:381.413333pt;}
.yc{bottom:381.533333pt;}
.y111{bottom:381.853333pt;}
.y121{bottom:383.813333pt;}
.y15{bottom:385.533333pt;}
.y22{bottom:386.653333pt;}
.y7c{bottom:386.746667pt;}
.y129{bottom:388.386667pt;}
.y193{bottom:388.506667pt;}
.y9{bottom:388.773333pt;}
.y144{bottom:389.853333pt;}
.y136{bottom:390.146667pt;}
.yf5{bottom:390.653333pt;}
.y16b{bottom:392.733333pt;}
.y99{bottom:393.440000pt;}
.yfe{bottom:393.826667pt;}
.y161{bottom:397.893333pt;}
.y185{bottom:398.306667pt;}
.y34{bottom:399.933333pt;}
.yab{bottom:400.186667pt;}
.y87{bottom:401.786667pt;}
.y19c{bottom:402.213333pt;}
.yc3{bottom:402.720000pt;}
.y17c{bottom:402.906667pt;}
.ycc{bottom:402.973333pt;}
.y3d{bottom:404.933333pt;}
.yb1{bottom:408.613333pt;}
.y6a{bottom:414.906667pt;}
.yd7{bottom:415.813333pt;}
.y173{bottom:416.000000pt;}
.y9d{bottom:417.666667pt;}
.y18c{bottom:420.546667pt;}
.y2c{bottom:420.933333pt;}
.y120{bottom:423.013333pt;}
.y72{bottom:423.706667pt;}
.y128{bottom:425.186667pt;}
.y21{bottom:429.853333pt;}
.y116{bottom:430.106667pt;}
.y14{bottom:430.333333pt;}
.yde{bottom:431.293333pt;}
.y5e{bottom:431.840000pt;}
.ya5{bottom:432.546667pt;}
.ye9{bottom:436.026667pt;}
.y98{bottom:436.640000pt;}
.ybe{bottom:438.653333pt;}
.yf{bottom:439.453333pt;}
.y192{bottom:441.306667pt;}
.y157{bottom:442.213333pt;}
.y19b{bottom:442.240000pt;}
.yf4{bottom:443.453333pt;}
.ycb{bottom:444.413333pt;}
.y160{bottom:445.893333pt;}
.yfd{bottom:447.586667pt;}
.yb{bottom:448.733333pt;}
.y86{bottom:449.786667pt;}
.y16a{bottom:451.133333pt;}
.y110{bottom:452.253333pt;}
.y107{bottom:455.453333pt;}
.y17b{bottom:455.706667pt;}
.y33{bottom:458.373333pt;}
.yc2{bottom:458.906667pt;}
.y184{bottom:459.106667pt;}
.y5b{bottom:465.573333pt;}
.y8{bottom:465.600000pt;}
.y71{bottom:466.946667pt;}
.y140{bottom:467.173333pt;}
.y69{bottom:470.906667pt;}
.y7b{bottom:472.133333pt;}
.yd6{bottom:473.413333pt;}
.y131{bottom:474.973333pt;}
.y13{bottom:475.133333pt;}
.y5d{bottom:476.640000pt;}
.y18b{bottom:478.173333pt;}
.yb0{bottom:478.306667pt;}
.y97{bottom:479.840000pt;}
.y20{bottom:481.053333pt;}
.ye8{bottom:481.826667pt;}
.y172{bottom:484.000000pt;}
.ybd{bottom:486.653333pt;}
.y11f{bottom:487.520000pt;}
.ydd{bottom:487.933333pt;}
.y19a{bottom:491.360000pt;}
.y191{bottom:494.146667pt;}
.y156{bottom:495.013333pt;}
.y85{bottom:497.826667pt;}
.y13e{bottom:497.920000pt;}
.y130{bottom:499.933333pt;}
.ye5{bottom:501.373333pt;}
.y15f{bottom:503.040000pt;}
.y5a{bottom:504.480000pt;}
.yf1{bottom:504.733333pt;}
.y169{bottom:508.733333pt;}
.yca{bottom:510.720000pt;}
.ye7{bottom:511.333333pt;}
.y183{bottom:511.906667pt;}
.y138{bottom:513.413333pt;}
.y17a{bottom:518.946667pt;}
.y1f{bottom:524.293333pt;}
.y5c{bottom:525.306667pt;}
.y13d{bottom:528.640000pt;}
.y7a{bottom:529.733333pt;}
.y199{bottom:530.880000pt;}
.y96{bottom:531.066667pt;}
.y115{bottom:539.520000pt;}
.y7{bottom:542.400000pt;}
.y2b{bottom:543.333333pt;}
.yf3{bottom:543.813333pt;}
.y59{bottom:547.680000pt;}
.yc1{bottom:549.853333pt;}
.ya4{bottom:552.733333pt;}
.yfc{bottom:555.973333pt;}
.y68{bottom:557.026667pt;}
.yd5{bottom:564.800000pt;}
.ya{bottom:566.373333pt;}
.y12{bottom:568.133333pt;}
.y10f{bottom:569.733333pt;}
.y9b{bottom:570.013333pt;}
.yb8{bottom:572.960000pt;}
.y84{bottom:587.426667pt;}
.yc0{bottom:590.173333pt;}
.y58{bottom:590.880000pt;}
.y11e{bottom:591.013333pt;}
.y114{bottom:591.360000pt;}
.yaa{bottom:592.613333pt;}
.ya3{bottom:593.093333pt;}
.y43{bottom:593.760000pt;}
.y2a{bottom:594.533333pt;}
.yf2{bottom:595.653333pt;}
.y1e{bottom:597.893333pt;}
.y198{bottom:599.360000pt;}
.y171{bottom:599.746667pt;}
.y168{bottom:600.026667pt;}
.ydc{bottom:600.133333pt;}
.y15e{bottom:604.480000pt;}
.y190{bottom:605.573333pt;}
.y79{bottom:606.946667pt;}
.ye6{bottom:607.013333pt;}
.y155{bottom:607.133333pt;}
.yfb{bottom:607.813333pt;}
.y134{bottom:608.773333pt;}
.y179{bottom:608.933333pt;}
.y66{bottom:610.693333pt;}
.y8e{bottom:611.040000pt;}
.y182{bottom:612.480000pt;}
.y9a{bottom:612.773333pt;}
.y67{bottom:614.626667pt;}
.yd4{bottom:616.666667pt;}
.y10e{bottom:621.573333pt;}
.ybf{bottom:632.933333pt;}
.y57{bottom:634.106667pt;}
.ya2{bottom:634.693333pt;}
.y1d{bottom:637.893333pt;}
.h1a{height:6.365625pt;}
.h2e{height:67.750312pt;}
.h35{height:67.866125pt;}
.h20{height:76.308750pt;}
.h31{height:76.423500pt;}
.h2d{height:77.015312pt;}
.h1d{height:81.472500pt;}
.h1e{height:81.587250pt;}
.h2c{height:82.226875pt;}
.h37{height:84.662813pt;}
.h29{height:85.942563pt;}
.h13{height:86.062500pt;}
.h15{height:86.177250pt;}
.h14{height:86.859375pt;}
.h12{height:86.975188pt;}
.h3a{height:90.405625pt;}
.h39{height:90.652500pt;}
.h3b{height:90.767250pt;}
.hc{height:95.816250pt;}
.hd{height:95.931000pt;}
.h1b{height:96.703437pt;}
.h22{height:96.819250pt;}
.h25{height:104.996250pt;}
.h28{height:105.111000pt;}
.he{height:105.968437pt;}
.h27{height:106.084250pt;}
.h2{height:114.750000pt;}
.h3{height:114.864750pt;}
.h18{height:115.812500pt;}
.h38{height:115.928312pt;}
.h1{height:119.922187pt;}
.h11{height:120.445000pt;}
.hf{height:124.503750pt;}
.h10{height:124.618500pt;}
.h24{height:125.656563pt;}
.h2b{height:125.772375pt;}
.h7{height:134.921562pt;}
.h8{height:135.037375pt;}
.h16{height:154.609688pt;}
.h17{height:154.725500pt;}
.h1f{height:173.718750pt;}
.h23{height:173.834562pt;}
.hb{height:192.827812pt;}
.h26{height:192.943625pt;}
.h34{height:199.680000pt;}
.h36{height:200.800000pt;}
.h33{height:201.600000pt;}
.h6{height:210.681000pt;}
.h21{height:212.515938pt;}
.h1c{height:212.631750pt;}
.ha{height:231.625000pt;}
.h9{height:231.740813pt;}
.h4{height:262.125000pt;}
.h5{height:262.256062pt;}
.h19{height:288.706667pt;}
.h2a{height:310.946667pt;}
.h32{height:414.720000pt;}
.h2f{height:416.640000pt;}
.h30{height:528.160000pt;}
.h0{height:720.000000pt;}
.w4{width:266.560000pt;}
.w3{width:286.146667pt;}
.w2{width:383.586667pt;}
.w5{width:681.120000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7e{left:6.266667pt;}
.x85{left:7.360000pt;}
.x84{left:9.573333pt;}
.x7c{left:10.693333pt;}
.x30{left:35.359981pt;}
.x31{left:50.495981pt;}
.x16{left:54.815981pt;}
.x5b{left:58.623981pt;}
.x29{left:60.447981pt;}
.x8d{left:62.047981pt;}
.x15{left:64.703981pt;}
.x6d{left:66.335981pt;}
.x3c{left:67.295981pt;}
.x34{left:68.511981pt;}
.x2c{left:69.535981pt;}
.x5d{left:70.943981pt;}
.xf{left:71.839981pt;}
.x62{left:73.599981pt;}
.x5e{left:75.743981pt;}
.x10{left:76.639981pt;}
.x6a{left:78.943981pt;}
.x6f{left:79.903981pt;}
.x2d{left:83.775981pt;}
.x17{left:84.895981pt;}
.x32{left:86.495981pt;}
.x5c{left:88.735981pt;}
.x89{left:89.951981pt;}
.x79{left:91.391981pt;}
.x2a{left:93.823981pt;}
.x11{left:95.839981pt;}
.x6c{left:97.983981pt;}
.x57{left:99.615981pt;}
.x12{left:100.639981pt;}
.x63{left:102.399981pt;}
.x33{left:103.519981pt;}
.x8c{left:105.599981pt;}
.x6b{left:107.743981pt;}
.x87{left:110.047981pt;}
.x18{left:112.735981pt;}
.x52{left:114.687981pt;}
.x3b{left:115.839981pt;}
.x8b{left:117.183981pt;}
.x48{left:118.143981pt;}
.x2e{left:119.775981pt;}
.x65{left:121.503981pt;}
.x39{left:124.031981pt;}
.x66{left:127.199981pt;}
.x5f{left:128.543981pt;}
.x9{left:129.631981pt;}
.x70{left:132.703981pt;}
.xa{left:134.426648pt;}
.xd{left:136.186648pt;}
.x8a{left:141.093314pt;}
.x19{left:142.813314pt;}
.xc{left:146.746648pt;}
.x60{left:147.746648pt;}
.x3a{left:160.026648pt;}
.xe{left:160.986648pt;}
.x1b{left:163.679981pt;}
.x1{left:170.333314pt;}
.x88{left:172.479981pt;}
.xb{left:182.426648pt;}
.x50{left:184.186648pt;}
.x7{left:203.613314pt;}
.x8{left:205.213314pt;}
.x38{left:220.293314pt;}
.x7b{left:248.960000pt;}
.x68{left:260.226648pt;}
.x67{left:268.226648pt;}
.x42{left:270.079981pt;}
.x3{left:273.213314pt;}
.x47{left:278.786648pt;}
.x4c{left:281.573314pt;}
.x36{left:285.306648pt;}
.x3e{left:290.053314pt;}
.x51{left:291.973314pt;}
.x2{left:296.413314pt;}
.x56{left:301.533314pt;}
.x37{left:303.386648pt;}
.x7a{left:319.013314pt;}
.x35{left:332.639981pt;}
.x78{left:341.146648pt;}
.x82{left:346.853314pt;}
.x4{left:363.493314pt;}
.x5{left:437.253314pt;}
.x6{left:455.813314pt;}
.x69{left:482.946648pt;}
.x72{left:485.026648pt;}
.x73{left:503.133314pt;}
.x7d{left:515.360000pt;}
.x3d{left:523.453314pt;}
.x1d{left:528.893314pt;}
.x20{left:533.506648pt;}
.x1c{left:538.146648pt;}
.x71{left:548.093314pt;}
.x7f{left:557.626648pt;}
.x86{left:558.719981pt;}
.x1f{left:562.333314pt;}
.x27{left:567.453314pt;}
.x28{left:569.373314pt;}
.x1e{left:570.333314pt;}
.x2b{left:597.506648pt;}
.x83{left:598.813333pt;}
.x46{left:649.693314pt;}
.x81{left:657.853333pt;}
.x80{left:663.933333pt;}
.x54{left:671.266648pt;}
.x55{left:675.293314pt;}
.x40{left:678.053314pt;}
.x4d{left:681.466648pt;}
.x4a{left:683.839981pt;}
.x59{left:686.173314pt;}
.x4e{left:687.133314pt;}
.x44{left:689.026648pt;}
.x41{left:696.133314pt;}
.x5a{left:704.253314pt;}
.x4f{left:705.213314pt;}
.x4b{left:707.839981pt;}
.x45{left:713.026648pt;}
.x2f{left:826.586648pt;}
.x49{left:859.706648pt;}
.x53{left:861.279981pt;}
.x43{left:863.653314pt;}
.x1a{left:867.613333pt;}
.x3f{left:875.839981pt;}
.x23{left:880.133314pt;}
.x58{left:881.413314pt;}
.x25{left:888.453314pt;}
.x24{left:889.413314pt;}
.x76{left:895.973314pt;}
.x6e{left:905.693333pt;}
.x26{left:910.693314pt;}
.x77{left:914.053314pt;}
.x22{left:920.933314pt;}
.x74{left:945.826648pt;}
.x13{left:976.666648pt;}
.x61{left:989.279981pt;}
.x21{left:1001.599981pt;}
.x64{left:1003.493314pt;}
.x75{left:1006.626648pt;}
.x14{left:1111.999981pt;}
}




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