
    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_b8016a507a4b31531e39ccca.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.922363;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_ddc8e68673d373426215183f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.045410;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_f673d462ba5842b139180423.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_a83f9ee5369b13d49b008280.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_029ba055a374bc5e45fffe60.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916504;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_14342cdc67276dd090b69724.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_2a74fbdfd1d2fa50b8ac703f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_03261b09446e3fd2922254de.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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:ff9;src:url('chunks/assets/font_20fc254ba639270d27ae1340.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bc0b116b2603b813182e1993.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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:ffb;src:url('chunks/assets/font_ecb5b8bd2cb65160a9d889f6.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls37{letter-spacing:-0.508896px;}
.ls38{letter-spacing:-0.481536px;}
.ls2d{letter-spacing:-0.448704px;}
.ls3c{letter-spacing:-0.421344px;}
.ls3b{letter-spacing:-0.415872px;}
.ls3a{letter-spacing:-0.404928px;}
.ls2f{letter-spacing:-0.393984px;}
.ls44{letter-spacing:-0.361152px;}
.ls3d{letter-spacing:-0.350208px;}
.ls23{letter-spacing:-0.320544px;}
.lsb{letter-spacing:-0.291456px;}
.lsc{letter-spacing:-0.264960px;}
.ls22{letter-spacing:-0.260064px;}
.ls46{letter-spacing:-0.240768px;}
.lsd{letter-spacing:-0.225216px;}
.ls2e{letter-spacing:-0.207936px;}
.ls21{letter-spacing:-0.198720px;}
.ls1f{letter-spacing:-0.158976px;}
.ls24{letter-spacing:-0.145152px;}
.ls1e{letter-spacing:-0.125856px;}
.ls39{letter-spacing:-0.110592px;}
.ls20{letter-spacing:-0.079488px;}
.ls42{letter-spacing:-0.064800px;}
.ls43{letter-spacing:-0.057600px;}
.ls25{letter-spacing:-0.021600px;}
.ls1d{letter-spacing:-0.014400px;}
.ls3e{letter-spacing:-0.007200px;}
.ls9{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.000576px;}
.ls28{letter-spacing:0.001440px;}
.ls30{letter-spacing:0.006912px;}
.ls18{letter-spacing:0.007200px;}
.ls33{letter-spacing:0.010944px;}
.ls47{letter-spacing:0.011088px;}
.ls11{letter-spacing:0.014400px;}
.ls12{letter-spacing:0.057600px;}
.ls10{letter-spacing:0.077760px;}
.ls1c{letter-spacing:0.116928px;}
.ls4{letter-spacing:0.119520px;}
.ls6{letter-spacing:0.119952px;}
.ls1{letter-spacing:0.120096px;}
.ls7{letter-spacing:0.124416px;}
.ls14{letter-spacing:0.131472px;}
.ls8{letter-spacing:0.179280px;}
.lsf{letter-spacing:0.202176px;}
.lsa{letter-spacing:0.215136px;}
.ls0{letter-spacing:0.227088px;}
.ls31{letter-spacing:0.233856px;}
.ls2{letter-spacing:0.248832px;}
.ls13{letter-spacing:0.274896px;}
.ls35{letter-spacing:0.275040px;}
.ls29{letter-spacing:0.275616px;}
.lse{letter-spacing:0.279936px;}
.ls15{letter-spacing:0.286848px;}
.ls5{letter-spacing:0.295488px;}
.ls3{letter-spacing:0.311040px;}
.ls2a{letter-spacing:0.317376px;}
.ls17{letter-spacing:0.359136px;}
.ls27{letter-spacing:0.367488px;}
.ls2c{letter-spacing:0.400896px;}
.ls32{letter-spacing:8.642304px;}
.ls26{letter-spacing:14.726736px;}
.ls16{letter-spacing:15.311664px;}
.ls3f{letter-spacing:21.363840px;}
.ls45{letter-spacing:23.964480px;}
.ls41{letter-spacing:27.937152px;}
.ls40{letter-spacing:31.131360px;}
.ls36{letter-spacing:54.866880px;}
.ls19{letter-spacing:63.937152px;}
.ls1a{letter-spacing:87.499440px;}
.ls1b{letter-spacing:121.069440px;}
.ls2b{letter-spacing:153.470880px;}
.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;}
}
.ws3{word-spacing:-39.175488px;}
.ws1{word-spacing:-39.159936px;}
.ws2{word-spacing:-39.082176px;}
.ws5{word-spacing:-36.057600px;}
.ws4{word-spacing:-36.014400px;}
.ws0{word-spacing:-32.894784px;}
.ws7{word-spacing:-30.166848px;}
.ws6{word-spacing:-30.011472px;}
.ws18{word-spacing:-23.586048px;}
.wsb{word-spacing:-23.577696px;}
.ws17{word-spacing:-23.494176px;}
.wsa{word-spacing:-20.030400px;}
.ws9{word-spacing:-20.016000px;}
.ws22{word-spacing:-20.008800px;}
.wsd{word-spacing:-20.001600px;}
.ws10{word-spacing:-18.335232px;}
.wse{word-spacing:-18.288864px;}
.wsf{word-spacing:-18.255744px;}
.ws11{word-spacing:-18.216000px;}
.ws13{word-spacing:-16.668288px;}
.ws12{word-spacing:-16.553376px;}
.ws19{word-spacing:-15.212160px;}
.ws1a{word-spacing:-14.818176px;}
.ws1b{word-spacing:-14.730624px;}
.ws14{word-spacing:-0.086400px;}
.ws15{word-spacing:-0.079200px;}
.wsc{word-spacing:-0.072000px;}
.ws16{word-spacing:-0.050400px;}
.ws1c{word-spacing:-0.027648px;}
.ws8{word-spacing:0.000000px;}
.ws20{word-spacing:0.295488px;}
.ws1d{word-spacing:0.350208px;}
.ws1e{word-spacing:0.361152px;}
.ws1f{word-spacing:0.366624px;}
.ws21{word-spacing:240.221808px;}
._31{margin-left:-20.515968px;}
._11{margin-left:-18.631152px;}
._18{margin-left:-16.667856px;}
._15{margin-left:-12.950208px;}
._13{margin-left:-10.854000px;}
._17{margin-left:-8.919504px;}
._1a{margin-left:-7.026336px;}
._16{margin-left:-5.744016px;}
._14{margin-left:-3.067776px;}
._0{margin-left:-1.072656px;}
._1{width:1.059840px;}
._4{width:2.253600px;}
._7{width:3.592800px;}
._9{width:5.450400px;}
._e{width:6.487200px;}
._d{width:8.215200px;}
._a{width:9.237600px;}
._c{width:10.980000px;}
._f{width:12.105072px;}
._24{width:13.181616px;}
._6{width:14.227200px;}
._5{width:15.616800px;}
._1f{width:16.869600px;}
._8{width:18.561456px;}
._b{width:21.188448px;}
._21{width:22.319712px;}
._27{width:23.428800px;}
._1c{width:24.451200px;}
._1b{width:25.560000px;}
._10{width:26.762400px;}
._28{width:28.066464px;}
._22{width:29.131200px;}
._23{width:30.384000px;}
._3e{width:31.384800px;}
._2{width:32.385600px;}
._20{width:33.408000px;}
._1e{width:34.783200px;}
._2c{width:36.164736px;}
._3a{width:37.375200px;}
._3{width:39.427200px;}
._32{width:41.382720px;}
._2b{width:45.244800px;}
._25{width:47.124000px;}
._2a{width:48.340800px;}
._1d{width:49.986144px;}
._2d{width:51.879456px;}
._38{width:53.504784px;}
._29{width:54.850176px;}
._26{width:56.750400px;}
._35{width:60.782400px;}
._12{width:63.907200px;}
._3d{width:65.967840px;}
._33{width:71.503200px;}
._3b{width:79.394400px;}
._39{width:80.589600px;}
._34{width:82.876320px;}
._3c{width:88.385760px;}
._37{width:90.028800px;}
._3f{width:92.260080px;}
._40{width:112.276080px;}
._36{width:128.707200px;}
._30{width:253.268064px;}
._2f{width:333.183432px;}
._2e{width:363.776592px;}
._19{width:843.983856px;}
.fc4{color:transparent;}
.fc2{color:rgb(128,13,70);}
.fc1{color:rgb(128,0,0);}
.fc3{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:47.520000px;}
.fs8{font-size:54.720000px;}
.fs7{font-size:60.480000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:119.520000px;}
.fs3{font-size:132.480000px;}
.fsa{font-size:138.240000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y1fd{bottom:3.780000px;}
.y2{bottom:4.140015px;}
.yef{bottom:14.220000px;}
.yfb{bottom:14.220015px;}
.yf4{bottom:14.580000px;}
.y19e{bottom:18.540000px;}
.y121{bottom:29.340000px;}
.yf2{bottom:29.700000px;}
.yfc{bottom:29.700015px;}
.yf5{bottom:30.060000px;}
.y1{bottom:30.464985px;}
.yf7{bottom:45.180000px;}
.yfa{bottom:45.180015px;}
.yf1{bottom:45.540000px;}
.y7a{bottom:51.344985px;}
.y79{bottom:55.485000px;}
.y14d{bottom:59.040000px;}
.y1a2{bottom:76.140000px;}
.y1a4{bottom:76.500000px;}
.y140{bottom:77.580000px;}
.y15c{bottom:77.940000px;}
.y155{bottom:78.119985px;}
.y205{bottom:99.180000px;}
.y1a1{bottom:107.460000px;}
.y147{bottom:109.845000px;}
.y13f{bottom:109.980000px;}
.y1e4{bottom:111.285000px;}
.yfd{bottom:112.365000px;}
.y18c{bottom:114.885000px;}
.y1af{bottom:115.245000px;}
.y117{bottom:120.285000px;}
.yb2{bottom:123.525000px;}
.y202{bottom:124.965000px;}
.y95{bottom:125.325000px;}
.ye0{bottom:127.125000px;}
.yf9{bottom:129.824985px;}
.y1c5{bottom:130.365000px;}
.y3d{bottom:133.965000px;}
.y1a0{bottom:138.420000px;}
.y134{bottom:138.645000px;}
.y1aa{bottom:138.780000px;}
.y146{bottom:141.165000px;}
.y13e{bottom:142.020000px;}
.y1e3{bottom:142.245000px;}
.y15b{bottom:142.380000px;}
.y193{bottom:143.325000px;}
.y201{bottom:145.845000px;}
.y18b{bottom:146.205000px;}
.y170{bottom:146.565000px;}
.y116{bottom:151.605000px;}
.yb1{bottom:154.485000px;}
.y153{bottom:156.285000px;}
.y94{bottom:156.645000px;}
.ydf{bottom:158.445000px;}
.yb8{bottom:161.325000px;}
.y3c{bottom:164.925000px;}
.y200{bottom:166.365000px;}
.y1c{bottom:166.725000px;}
.y133{bottom:169.605000px;}
.y1a8{bottom:169.740000px;}
.y145{bottom:172.125000px;}
.y1e2{bottom:173.205000px;}
.y192{bottom:174.285000px;}
.y15a{bottom:174.420000px;}
.y18a{bottom:177.165000px;}
.y1ae{bottom:177.525000px;}
.y16f{bottom:177.885000px;}
.y115{bottom:182.565000px;}
.y20a{bottom:184.860000px;}
.yb0{bottom:185.445000px;}
.y152{bottom:187.245000px;}
.y93{bottom:187.605000px;}
.y14c{bottom:188.280000px;}
.y149{bottom:189.000000px;}
.yde{bottom:189.405000px;}
.yf8{bottom:192.465000px;}
.yb7{bottom:192.645000px;}
.y14e{bottom:195.480000px;}
.y3b{bottom:195.885000px;}
.y132{bottom:200.565000px;}
.y1a7{bottom:200.700000px;}
.y1b{bottom:202.005000px;}
.y14b{bottom:202.680000px;}
.y144{bottom:203.085000px;}
.y114{bottom:203.805000px;}
.y1e1{bottom:204.165000px;}
.y191{bottom:205.245000px;}
.y159{bottom:206.820000px;}
.y1ff{bottom:207.765000px;}
.y189{bottom:208.125000px;}
.y1ad{bottom:208.485000px;}
.y16e{bottom:208.845000px;}
.yaf{bottom:216.765000px;}
.y151{bottom:218.205000px;}
.y92{bottom:218.565000px;}
.ydd{bottom:220.365000px;}
.yb6{bottom:223.605000px;}
.y3a{bottom:226.845000px;}
.y1fe{bottom:228.645000px;}
.y1a6{bottom:231.660000px;}
.y131{bottom:231.885000px;}
.y143{bottom:234.045000px;}
.y1e0{bottom:235.125000px;}
.y190{bottom:236.565000px;}
.y188{bottom:239.085000px;}
.y1ac{bottom:239.445000px;}
.y16d{bottom:239.805000px;}
.y1a{bottom:242.685000px;}
.yae{bottom:247.725000px;}
.y150{bottom:249.165000px;}
.y91{bottom:249.525000px;}
.ydc{bottom:251.325000px;}
.y113{bottom:252.765000px;}
.yb5{bottom:254.565000px;}
.yf6{bottom:255.465000px;}
.y39{bottom:258.165000px;}
.y6f{bottom:259.605000px;}
.y130{bottom:262.845000px;}
.y142{bottom:265.365000px;}
.y1df{bottom:266.445000px;}
.y18f{bottom:267.525000px;}
.y187{bottom:270.045000px;}
.y1ab{bottom:270.405000px;}
.y16c{bottom:270.765000px;}
.yad{bottom:278.685000px;}
.y6e{bottom:280.485000px;}
.y19b{bottom:280.845000px;}
.ydb{bottom:282.645000px;}
.y112{bottom:283.725000px;}
.y19{bottom:284.085000px;}
.yb4{bottom:285.525000px;}
.y1fc{bottom:287.505000px;}
.y1a9{bottom:287.865000px;}
.y38{bottom:289.125000px;}
.y12f{bottom:293.805000px;}
.y141{bottom:296.325000px;}
.y154{bottom:296.685000px;}
.y1de{bottom:297.405000px;}
.y186{bottom:301.365000px;}
.y16b{bottom:302.085000px;}
.y18e{bottom:302.445000px;}
.y14f{bottom:307.125000px;}
.yac{bottom:309.645000px;}
.y6d{bottom:311.805000px;}
.y1fb{bottom:312.885000px;}
.yda{bottom:313.605000px;}
.y13d{bottom:313.785000px;}
.y111{bottom:314.685000px;}
.yb3{bottom:316.485000px;}
.yf3{bottom:318.105000px;}
.y37{bottom:320.085000px;}
.y12e{bottom:324.765000px;}
.y18d{bottom:325.125000px;}
.y18{bottom:328.365000px;}
.y14a{bottom:331.920000px;}
.y185{bottom:332.325000px;}
.y16a{bottom:333.045000px;}
.y1fa{bottom:333.405000px;}
.yab{bottom:340.965000px;}
.y90{bottom:342.765000px;}
.y6c{bottom:343.125000px;}
.yd9{bottom:344.565000px;}
.y110{bottom:346.005000px;}
.y57{bottom:347.805000px;}
.y36{bottom:351.045000px;}
.y1f9{bottom:354.285000px;}
.y12d{bottom:356.085000px;}
.y1dd{bottom:359.325000px;}
.y184{bottom:363.285000px;}
.y169{bottom:364.005000px;}
.yaa{bottom:371.925000px;}
.y17{bottom:372.645000px;}
.y8f{bottom:373.725000px;}
.yd8{bottom:375.525000px;}
.y10f{bottom:376.965000px;}
.y56{bottom:378.765000px;}
.yf0{bottom:381.105000px;}
.y35{bottom:382.365000px;}
.y6b{bottom:383.085000px;}
.y12c{bottom:387.045000px;}
.y1dc{bottom:390.645000px;}
.y183{bottom:394.245000px;}
.y168{bottom:394.965000px;}
.y1f8{bottom:396.045000px;}
.ya9{bottom:402.885000px;}
.y8e{bottom:404.685000px;}
.y19a{bottom:405.045000px;}
.yd7{bottom:406.845000px;}
.y10e{bottom:407.925000px;}
.y55{bottom:409.725000px;}
.y34{bottom:413.325000px;}
.y16{bottom:416.925000px;}
.y12b{bottom:418.005000px;}
.y1db{bottom:421.605000px;}
.y6a{bottom:423.405000px;}
.y182{bottom:425.565000px;}
.y167{bottom:426.285000px;}
.ya8{bottom:433.845000px;}
.y8d{bottom:436.005000px;}
.y1f7{bottom:437.445000px;}
.yd6{bottom:437.805000px;}
.y1c4{bottom:438.885000px;}
.y54{bottom:440.685000px;}
.y10d{bottom:441.405000px;}
.yee{bottom:444.105000px;}
.y33{bottom:444.285000px;}
.y12a{bottom:448.965000px;}
.y1da{bottom:452.565000px;}
.y181{bottom:456.525000px;}
.y166{bottom:457.245000px;}
.y1f6{bottom:458.325000px;}
.y69{bottom:463.365000px;}
.ya7{bottom:465.165000px;}
.y8c{bottom:466.965000px;}
.yd5{bottom:468.765000px;}
.yc2{bottom:469.485000px;}
.y1c3{bottom:470.205000px;}
.y53{bottom:472.005000px;}
.y13c{bottom:473.265000px;}
.y32{bottom:475.245000px;}
.y1f5{bottom:478.845000px;}
.y129{bottom:479.925000px;}
.y15{bottom:483.165000px;}
.y1d9{bottom:483.525000px;}
.y1b4{bottom:484.425000px;}
.y180{bottom:487.485000px;}
.y165{bottom:488.205000px;}
.ya6{bottom:496.125000px;}
.y8b{bottom:497.925000px;}
.yd4{bottom:499.725000px;}
.yc1{bottom:500.445000px;}
.y68{bottom:501.165000px;}
.yed{bottom:501.525000px;}
.y52{bottom:502.965000px;}
.y1a5{bottom:506.025000px;}
.y10c{bottom:506.205000px;}
.y31{bottom:506.565000px;}
.y128{bottom:511.245000px;}
.y1d8{bottom:514.845000px;}
.y17f{bottom:518.445000px;}
.y164{bottom:519.165000px;}
.y1f4{bottom:520.245000px;}
.y67{bottom:527.085000px;}
.yec{bottom:528.525000px;}
.y8a{bottom:528.885000px;}
.y199{bottom:529.245000px;}
.yd3{bottom:531.045000px;}
.yc0{bottom:531.405000px;}
.y51{bottom:533.925000px;}
.y10b{bottom:537.165000px;}
.y30{bottom:537.525000px;}
.y1f3{bottom:541.125000px;}
.y127{bottom:542.205000px;}
.y1d7{bottom:545.805000px;}
.y14{bottom:549.405000px;}
.y17e{bottom:549.765000px;}
.y163{bottom:550.485000px;}
.y66{bottom:552.645000px;}
.y1c2{bottom:553.005000px;}
.y13b{bottom:554.445000px;}
.ya5{bottom:558.045000px;}
.yeb{bottom:559.485000px;}
.y89{bottom:560.205000px;}
.y1f2{bottom:561.645000px;}
.yd2{bottom:562.005000px;}
.ybf{bottom:562.725000px;}
.y50{bottom:564.885000px;}
.y20b{bottom:565.965000px;}
.y2f{bottom:568.485000px;}
.y126{bottom:573.165000px;}
.y1d6{bottom:576.765000px;}
.y65{bottom:578.565000px;}
.y17d{bottom:580.725000px;}
.y13a{bottom:581.085000px;}
.y162{bottom:581.445000px;}
.y1f1{bottom:582.525000px;}
.y209{bottom:586.305000px;}
.ya4{bottom:589.005000px;}
.yea{bottom:590.445000px;}
.y88{bottom:591.165000px;}
.yd1{bottom:592.965000px;}
.ybe{bottom:593.685000px;}
.y4f{bottom:596.205000px;}
.y2e{bottom:599.445000px;}
.y139{bottom:601.965000px;}
.y1f0{bottom:603.045000px;}
.y125{bottom:604.125000px;}
.y64{bottom:604.485000px;}
.y1c1{bottom:605.205000px;}
.y1d5{bottom:607.725000px;}
.y17c{bottom:611.685000px;}
.y161{bottom:612.405000px;}
.y13{bottom:615.645000px;}
.ya3{bottom:620.325000px;}
.ye9{bottom:621.405000px;}
.y87{bottom:622.125000px;}
.yd0{bottom:623.925000px;}
.ybd{bottom:624.645000px;}
.y4e{bottom:627.165000px;}
.y2d{bottom:630.405000px;}
.y63{bottom:631.485000px;}
.y124{bottom:635.445000px;}
.y138{bottom:635.805000px;}
.y1ef{bottom:636.525000px;}
.y1d4{bottom:639.045000px;}
.y17b{bottom:642.645000px;}
.y160{bottom:643.365000px;}
.y1b3{bottom:644.265000px;}
.ya2{bottom:651.285000px;}
.ye8{bottom:652.365000px;}
.y86{bottom:653.085000px;}
.ycf{bottom:655.245000px;}
.ybc{bottom:655.605000px;}
.y1c0{bottom:657.405000px;}
.y4d{bottom:658.125000px;}
.y10a{bottom:661.365000px;}
.y2c{bottom:661.725000px;}
.y123{bottom:666.405000px;}
.y137{bottom:666.765000px;}
.y62{bottom:668.925000px;}
.y1d3{bottom:670.005000px;}
.y198{bottom:670.905000px;}
.y1ee{bottom:672.525000px;}
.y17a{bottom:673.965000px;}
.y15f{bottom:674.685000px;}
.y12{bottom:682.245000px;}
.ye7{bottom:683.685000px;}
.y85{bottom:684.405000px;}
.yce{bottom:686.205000px;}
.ybb{bottom:686.925000px;}
.y1bf{bottom:688.365000px;}
.y4c{bottom:689.085000px;}
.y2b{bottom:692.685000px;}
.y1b2{bottom:694.125000px;}
.y122{bottom:697.365000px;}
.y136{bottom:698.085000px;}
.y1d2{bottom:700.965000px;}
.y179{bottom:704.925000px;}
.y15e{bottom:705.645000px;}
.y61{bottom:706.365000px;}
.y1ed{bottom:706.725000px;}
.ya1{bottom:713.205000px;}
.ye6{bottom:714.645000px;}
.y120{bottom:714.825000px;}
.y84{bottom:715.365000px;}
.ycd{bottom:717.165000px;}
.yba{bottom:717.885000px;}
.y1be{bottom:719.325000px;}
.y4b{bottom:720.405000px;}
.y1b1{bottom:720.765000px;}
.y2a{bottom:723.645000px;}
.y109{bottom:724.725000px;}
.y1d1{bottom:731.925000px;}
.y135{bottom:732.645000px;}
.ye5{bottom:735.525000px;}
.y178{bottom:735.885000px;}
.y15d{bottom:736.605000px;}
.y1ec{bottom:737.685000px;}
.y1b0{bottom:741.645000px;}
.y60{bottom:743.805000px;}
.ya0{bottom:744.525000px;}
.y148{bottom:745.245000px;}
.y83{bottom:746.325000px;}
.ycc{bottom:748.125000px;}
.y11{bottom:748.485000px;}
.yb9{bottom:749.205000px;}
.y1bd{bottom:750.285000px;}
.y4a{bottom:751.365000px;}
.y158{bottom:754.065000px;}
.y29{bottom:754.605000px;}
.y1a3{bottom:755.145000px;}
.y108{bottom:756.045000px;}
.ye4{bottom:757.125000px;}
.y11f{bottom:761.625000px;}
.y1d0{bottom:763.245000px;}
.y177{bottom:766.845000px;}
.y9f{bottom:775.485000px;}
.y82{bottom:777.285000px;}
.y107{bottom:778.005000px;}
.ycb{bottom:779.085000px;}
.y5f{bottom:781.245000px;}
.y49{bottom:782.325000px;}
.y28{bottom:785.925000px;}
.y1eb{bottom:786.825000px;}
.y10{bottom:787.725000px;}
.y208{bottom:792.405000px;}
.y1cf{bottom:794.205000px;}
.y11e{bottom:794.745000px;}
.y176{bottom:798.165000px;}
.y106{bottom:799.245000px;}
.y1bc{bottom:802.485000px;}
.ye3{bottom:806.085000px;}
.y9e{bottom:806.445000px;}
.yf{bottom:808.605000px;}
.yca{bottom:810.405000px;}
.y78{bottom:812.925000px;}
.y48{bottom:813.285000px;}
.y27{bottom:816.885000px;}
.y5e{bottom:818.685000px;}
.y1ea{bottom:818.865000px;}
.y1ce{bottom:825.165000px;}
.y11d{bottom:827.505000px;}
.ye{bottom:829.125000px;}
.y197{bottom:830.385000px;}
.y175{bottom:830.565000px;}
.y1bb{bottom:833.445000px;}
.y207{bottom:833.805000px;}
.y9d{bottom:837.405000px;}
.ye2{bottom:838.485000px;}
.y81{bottom:839.565000px;}
.yc9{bottom:841.365000px;}
.y47{bottom:844.605000px;}
.y26{bottom:847.845000px;}
.y105{bottom:848.205000px;}
.yd{bottom:850.005000px;}
.y1e9{bottom:850.545000px;}
.y206{bottom:854.685000px;}
.y1cd{bottom:856.125000px;}
.y5d{bottom:856.485000px;}
.y11c{bottom:860.625000px;}
.y174{bottom:862.605000px;}
.y1ba{bottom:864.405000px;}
.y9c{bottom:868.725000px;}
.yc{bottom:870.525000px;}
.y204{bottom:872.145000px;}
.yc8{bottom:872.325000px;}
.y46{bottom:875.565000px;}
.y77{bottom:875.925000px;}
.y25{bottom:878.805000px;}
.y104{bottom:879.525000px;}
.y196{bottom:880.245000px;}
.y1e8{bottom:882.225000px;}
.y1cc{bottom:887.445000px;}
.yb{bottom:891.405000px;}
.y11b{bottom:892.305000px;}
.y5c{bottom:895.005000px;}
.y1b9{bottom:895.725000px;}
.y9b{bottom:899.685000px;}
.y80{bottom:901.485000px;}
.yc7{bottom:903.285000px;}
.y45{bottom:906.525000px;}
.y195{bottom:906.885000px;}
.y76{bottom:907.245000px;}
.y24{bottom:910.125000px;}
.y19f{bottom:911.385000px;}
.ya{bottom:911.925000px;}
.y1e7{bottom:914.265000px;}
.y1cb{bottom:918.405000px;}
.y173{bottom:927.045000px;}
.y194{bottom:927.765000px;}
.y9a{bottom:930.645000px;}
.ye1{bottom:932.445000px;}
.y9{bottom:932.805000px;}
.yc6{bottom:934.605000px;}
.y5b{bottom:934.965000px;}
.y44{bottom:937.485000px;}
.y75{bottom:938.925000px;}
.y23{bottom:941.085000px;}
.y103{bottom:943.965000px;}
.y1e6{bottom:945.945000px;}
.y1b8{bottom:947.565000px;}
.y1ca{bottom:949.365000px;}
.y8{bottom:953.325000px;}
.y172{bottom:959.445000px;}
.y99{bottom:961.605000px;}
.y7f{bottom:963.765000px;}
.yc5{bottom:965.565000px;}
.y43{bottom:968.805000px;}
.y74{bottom:970.605000px;}
.y22{bottom:972.045000px;}
.y11a{bottom:973.485000px;}
.y7{bottom:974.205000px;}
.y5a{bottom:974.925000px;}
.y102{bottom:976.365000px;}
.y1e5{bottom:977.625000px;}
.y157{bottom:978.345000px;}
.y1b7{bottom:978.525000px;}
.y1c9{bottom:980.325000px;}
.yc4{bottom:986.445000px;}
.y171{bottom:991.845000px;}
.y98{bottom:992.925000px;}
.y7e{bottom:994.725000px;}
.y6{bottom:998.325000px;}
.y42{bottom:999.765000px;}
.y119{bottom:1000.125000px;}
.y73{bottom:1002.285000px;}
.y21{bottom:1003.005000px;}
.yc3{bottom:1008.045000px;}
.y101{bottom:1008.405000px;}
.y1b6{bottom:1009.845000px;}
.y1c8{bottom:1011.645000px;}
.y203{bottom:1013.445000px;}
.y59{bottom:1015.245000px;}
.y118{bottom:1021.005000px;}
.y97{bottom:1023.885000px;}
.y7d{bottom:1025.685000px;}
.y41{bottom:1030.725000px;}
.y1c7{bottom:1032.525000px;}
.y72{bottom:1033.965000px;}
.y20{bottom:1034.325000px;}
.y5{bottom:1035.765000px;}
.y100{bottom:1040.805000px;}
.y1c6{bottom:1053.765000px;}
.y71{bottom:1054.845000px;}
.y7c{bottom:1057.005000px;}
.y58{bottom:1057.365000px;}
.y156{bottom:1059.165000px;}
.y40{bottom:1061.685000px;}
.y1f{bottom:1065.285000px;}
.y19d{bottom:1067.265000px;}
.yff{bottom:1071.765000px;}
.y1b5{bottom:1072.125000px;}
.y4{bottom:1072.485000px;}
.y70{bottom:1075.725000px;}
.y7b{bottom:1078.245000px;}
.y96{bottom:1085.805000px;}
.yfe{bottom:1092.645000px;}
.y3f{bottom:1093.005000px;}
.y1e{bottom:1096.245000px;}
.y3{bottom:1106.685000px;}
.y3e{bottom:1114.245000px;}
.y1d{bottom:1117.125000px;}
.y19c{bottom:1121.445000px;}
.h25{height:20.520000px;}
.h2{height:20.880000px;}
.hf{height:21.240000px;}
.h11{height:30.960000px;}
.h24{height:31.320000px;}
.h16{height:32.040000px;}
.h15{height:32.400000px;}
.h20{height:35.280000px;}
.h1c{height:38.528438px;}
.h1e{height:39.410156px;}
.h10{height:39.837656px;}
.h17{height:46.080000px;}
.h3{height:50.695313px;}
.he{height:52.417969px;}
.hd{height:54.219375px;}
.hc{height:59.803594px;}
.h13{height:61.920000px;}
.h14{height:61.920015px;}
.h12{height:62.280000px;}
.h9{height:64.546875px;}
.h7{height:65.003906px;}
.hb{height:65.074219px;}
.h18{height:67.080938px;}
.ha{height:75.404531px;}
.h1b{height:97.335000px;}
.h4{height:105.046875px;}
.h26{height:115.920000px;}
.h6{height:116.437500px;}
.h5{height:126.562500px;}
.h8{height:136.687500px;}
.h1d{height:154.080000px;}
.h21{height:155.160000px;}
.h19{height:158.760000px;}
.h27{height:201.600000px;}
.h23{height:217.440000px;}
.h1f{height:223.560000px;}
.h22{height:248.400000px;}
.h1a{height:388.800000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:6.120000px;}
.w5{width:9.720000px;}
.w2{width:10.440000px;}
.w4{width:11.880000px;}
.wf{width:19.800000px;}
.w1a{width:62.640000px;}
.w19{width:63.000000px;}
.wd{width:69.120000px;}
.w6{width:69.480000px;}
.w7{width:75.960000px;}
.we{width:76.680000px;}
.w9{width:78.840000px;}
.wa{width:79.200000px;}
.wb{width:84.240000px;}
.w8{width:86.760000px;}
.wc{width:87.840000px;}
.w18{width:120.600000px;}
.w17{width:298.800000px;}
.w16{width:299.160000px;}
.w14{width:308.160000px;}
.w12{width:322.920000px;}
.w11{width:323.280000px;}
.w15{width:338.040000px;}
.w1b{width:635.760000px;}
.w10{width:646.920000px;}
.w13{width:892.125000px;}
.w0{width:892.935000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:4.500180px;}
.x1d{left:7.380036px;}
.x3a{left:21.106440px;}
.x31{left:26.434836px;}
.x22{left:34.380000px;}
.x23{left:61.380144px;}
.x21{left:120.870000px;}
.x1c{left:123.750000px;}
.x6{left:128.250144px;}
.x10{left:146.250144px;}
.x2e{left:147.870000px;}
.xb{left:149.892840px;}
.x13{left:155.250000px;}
.x9{left:159.366708px;}
.x11{left:164.250144px;}
.x2b{left:174.870000px;}
.x12{left:182.250144px;}
.xa{left:186.912360px;}
.x7{left:190.949472px;}
.x32{left:192.870000px;}
.x8{left:201.813480px;}
.x1e{left:209.250144px;}
.x14{left:212.670000px;}
.xc{left:224.826552px;}
.x3b{left:236.250144px;}
.x30{left:251.904564px;}
.x33{left:256.590000px;}
.x2f{left:269.190000px;}
.x16{left:283.230000px;}
.x28{left:286.995300px;}
.x2d{left:302.898708px;}
.x34{left:320.310000px;}
.x1f{left:340.650252px;}
.xe{left:352.103904px;}
.x3{left:356.160780px;}
.x17{left:359.910000px;}
.x25{left:381.153750px;}
.x35{left:384.030000px;}
.x2a{left:429.750000px;}
.x26{left:434.925000px;}
.x20{left:437.310000px;}
.x1{left:441.990000px;}
.xf{left:444.150000px;}
.x18{left:447.390000px;}
.x2c{left:474.750000px;}
.x36{left:511.110000px;}
.x19{left:526.950000px;}
.x4{left:535.962960px;}
.x27{left:555.644700px;}
.x37{left:574.830000px;}
.x1a{left:606.510000px;}
.x5{left:609.487920px;}
.x38{left:638.550000px;}
.x1b{left:686.430000px;}
.x39{left:702.270000px;}
.xd{left:765.600120px;}
.x24{left:776.250000px;}
.x29{left:812.250000px;}
.x2{left:829.949760px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls37{letter-spacing:-0.452352pt;}
.ls38{letter-spacing:-0.428032pt;}
.ls2d{letter-spacing:-0.398848pt;}
.ls3c{letter-spacing:-0.374528pt;}
.ls3b{letter-spacing:-0.369664pt;}
.ls3a{letter-spacing:-0.359936pt;}
.ls2f{letter-spacing:-0.350208pt;}
.ls44{letter-spacing:-0.321024pt;}
.ls3d{letter-spacing:-0.311296pt;}
.ls23{letter-spacing:-0.284928pt;}
.lsb{letter-spacing:-0.259072pt;}
.lsc{letter-spacing:-0.235520pt;}
.ls22{letter-spacing:-0.231168pt;}
.ls46{letter-spacing:-0.214016pt;}
.lsd{letter-spacing:-0.200192pt;}
.ls2e{letter-spacing:-0.184832pt;}
.ls21{letter-spacing:-0.176640pt;}
.ls1f{letter-spacing:-0.141312pt;}
.ls24{letter-spacing:-0.129024pt;}
.ls1e{letter-spacing:-0.111872pt;}
.ls39{letter-spacing:-0.098304pt;}
.ls20{letter-spacing:-0.070656pt;}
.ls42{letter-spacing:-0.057600pt;}
.ls43{letter-spacing:-0.051200pt;}
.ls25{letter-spacing:-0.019200pt;}
.ls1d{letter-spacing:-0.012800pt;}
.ls3e{letter-spacing:-0.006400pt;}
.ls9{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.000512pt;}
.ls28{letter-spacing:0.001280pt;}
.ls30{letter-spacing:0.006144pt;}
.ls18{letter-spacing:0.006400pt;}
.ls33{letter-spacing:0.009728pt;}
.ls47{letter-spacing:0.009856pt;}
.ls11{letter-spacing:0.012800pt;}
.ls12{letter-spacing:0.051200pt;}
.ls10{letter-spacing:0.069120pt;}
.ls1c{letter-spacing:0.103936pt;}
.ls4{letter-spacing:0.106240pt;}
.ls6{letter-spacing:0.106624pt;}
.ls1{letter-spacing:0.106752pt;}
.ls7{letter-spacing:0.110592pt;}
.ls14{letter-spacing:0.116864pt;}
.ls8{letter-spacing:0.159360pt;}
.lsf{letter-spacing:0.179712pt;}
.lsa{letter-spacing:0.191232pt;}
.ls0{letter-spacing:0.201856pt;}
.ls31{letter-spacing:0.207872pt;}
.ls2{letter-spacing:0.221184pt;}
.ls13{letter-spacing:0.244352pt;}
.ls35{letter-spacing:0.244480pt;}
.ls29{letter-spacing:0.244992pt;}
.lse{letter-spacing:0.248832pt;}
.ls15{letter-spacing:0.254976pt;}
.ls5{letter-spacing:0.262656pt;}
.ls3{letter-spacing:0.276480pt;}
.ls2a{letter-spacing:0.282112pt;}
.ls17{letter-spacing:0.319232pt;}
.ls27{letter-spacing:0.326656pt;}
.ls2c{letter-spacing:0.356352pt;}
.ls32{letter-spacing:7.682048pt;}
.ls26{letter-spacing:13.090432pt;}
.ls16{letter-spacing:13.610368pt;}
.ls3f{letter-spacing:18.990080pt;}
.ls45{letter-spacing:21.301760pt;}
.ls41{letter-spacing:24.833024pt;}
.ls40{letter-spacing:27.672320pt;}
.ls36{letter-spacing:48.770560pt;}
.ls19{letter-spacing:56.833024pt;}
.ls1a{letter-spacing:77.777280pt;}
.ls1b{letter-spacing:107.617280pt;}
.ls2b{letter-spacing:136.418560pt;}
.ws3{word-spacing:-34.822656pt;}
.ws1{word-spacing:-34.808832pt;}
.ws2{word-spacing:-34.739712pt;}
.ws5{word-spacing:-32.051200pt;}
.ws4{word-spacing:-32.012800pt;}
.ws0{word-spacing:-29.239808pt;}
.ws7{word-spacing:-26.814976pt;}
.ws6{word-spacing:-26.676864pt;}
.ws18{word-spacing:-20.965376pt;}
.wsb{word-spacing:-20.957952pt;}
.ws17{word-spacing:-20.883712pt;}
.wsa{word-spacing:-17.804800pt;}
.ws9{word-spacing:-17.792000pt;}
.ws22{word-spacing:-17.785600pt;}
.wsd{word-spacing:-17.779200pt;}
.ws10{word-spacing:-16.297984pt;}
.wse{word-spacing:-16.256768pt;}
.wsf{word-spacing:-16.227328pt;}
.ws11{word-spacing:-16.192000pt;}
.ws13{word-spacing:-14.816256pt;}
.ws12{word-spacing:-14.714112pt;}
.ws19{word-spacing:-13.521920pt;}
.ws1a{word-spacing:-13.171712pt;}
.ws1b{word-spacing:-13.093888pt;}
.ws14{word-spacing:-0.076800pt;}
.ws15{word-spacing:-0.070400pt;}
.wsc{word-spacing:-0.064000pt;}
.ws16{word-spacing:-0.044800pt;}
.ws1c{word-spacing:-0.024576pt;}
.ws8{word-spacing:0.000000pt;}
.ws20{word-spacing:0.262656pt;}
.ws1d{word-spacing:0.311296pt;}
.ws1e{word-spacing:0.321024pt;}
.ws1f{word-spacing:0.325888pt;}
.ws21{word-spacing:213.530496pt;}
._31{margin-left:-18.236416pt;}
._11{margin-left:-16.561024pt;}
._18{margin-left:-14.815872pt;}
._15{margin-left:-11.511296pt;}
._13{margin-left:-9.648000pt;}
._17{margin-left:-7.928448pt;}
._1a{margin-left:-6.245632pt;}
._16{margin-left:-5.105792pt;}
._14{margin-left:-2.726912pt;}
._0{margin-left:-0.953472pt;}
._1{width:0.942080pt;}
._4{width:2.003200pt;}
._7{width:3.193600pt;}
._9{width:4.844800pt;}
._e{width:5.766400pt;}
._d{width:7.302400pt;}
._a{width:8.211200pt;}
._c{width:9.760000pt;}
._f{width:10.760064pt;}
._24{width:11.716992pt;}
._6{width:12.646400pt;}
._5{width:13.881600pt;}
._1f{width:14.995200pt;}
._8{width:16.499072pt;}
._b{width:18.834176pt;}
._21{width:19.839744pt;}
._27{width:20.825600pt;}
._1c{width:21.734400pt;}
._1b{width:22.720000pt;}
._10{width:23.788800pt;}
._28{width:24.947968pt;}
._22{width:25.894400pt;}
._23{width:27.008000pt;}
._3e{width:27.897600pt;}
._2{width:28.787200pt;}
._20{width:29.696000pt;}
._1e{width:30.918400pt;}
._2c{width:32.146432pt;}
._3a{width:33.222400pt;}
._3{width:35.046400pt;}
._32{width:36.784640pt;}
._2b{width:40.217600pt;}
._25{width:41.888000pt;}
._2a{width:42.969600pt;}
._1d{width:44.432128pt;}
._2d{width:46.115072pt;}
._38{width:47.559808pt;}
._29{width:48.755712pt;}
._26{width:50.444800pt;}
._35{width:54.028800pt;}
._12{width:56.806400pt;}
._3d{width:58.638080pt;}
._33{width:63.558400pt;}
._3b{width:70.572800pt;}
._39{width:71.635200pt;}
._34{width:73.667840pt;}
._3c{width:78.565120pt;}
._37{width:80.025600pt;}
._3f{width:82.008960pt;}
._40{width:99.800960pt;}
._36{width:114.406400pt;}
._30{width:225.127168pt;}
._2f{width:296.163051pt;}
._2e{width:323.356971pt;}
._19{width:750.207872pt;}
.fs9{font-size:42.240000pt;}
.fs8{font-size:48.640000pt;}
.fs7{font-size:53.760000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:106.240000pt;}
.fs3{font-size:117.760000pt;}
.fsa{font-size:122.880000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y1fd{bottom:3.360000pt;}
.y2{bottom:3.680013pt;}
.yef{bottom:12.640000pt;}
.yfb{bottom:12.640013pt;}
.yf4{bottom:12.960000pt;}
.y19e{bottom:16.480000pt;}
.y121{bottom:26.080000pt;}
.yf2{bottom:26.400000pt;}
.yfc{bottom:26.400013pt;}
.yf5{bottom:26.720000pt;}
.y1{bottom:27.079987pt;}
.yf7{bottom:40.160000pt;}
.yfa{bottom:40.160013pt;}
.yf1{bottom:40.480000pt;}
.y7a{bottom:45.639987pt;}
.y79{bottom:49.320000pt;}
.y14d{bottom:52.480000pt;}
.y1a2{bottom:67.680000pt;}
.y1a4{bottom:68.000000pt;}
.y140{bottom:68.960000pt;}
.y15c{bottom:69.280000pt;}
.y155{bottom:69.439987pt;}
.y205{bottom:88.160000pt;}
.y1a1{bottom:95.520000pt;}
.y147{bottom:97.640000pt;}
.y13f{bottom:97.760000pt;}
.y1e4{bottom:98.920000pt;}
.yfd{bottom:99.880000pt;}
.y18c{bottom:102.120000pt;}
.y1af{bottom:102.440000pt;}
.y117{bottom:106.920000pt;}
.yb2{bottom:109.800000pt;}
.y202{bottom:111.080000pt;}
.y95{bottom:111.400000pt;}
.ye0{bottom:113.000000pt;}
.yf9{bottom:115.399987pt;}
.y1c5{bottom:115.880000pt;}
.y3d{bottom:119.080000pt;}
.y1a0{bottom:123.040000pt;}
.y134{bottom:123.240000pt;}
.y1aa{bottom:123.360000pt;}
.y146{bottom:125.480000pt;}
.y13e{bottom:126.240000pt;}
.y1e3{bottom:126.440000pt;}
.y15b{bottom:126.560000pt;}
.y193{bottom:127.400000pt;}
.y201{bottom:129.640000pt;}
.y18b{bottom:129.960000pt;}
.y170{bottom:130.280000pt;}
.y116{bottom:134.760000pt;}
.yb1{bottom:137.320000pt;}
.y153{bottom:138.920000pt;}
.y94{bottom:139.240000pt;}
.ydf{bottom:140.840000pt;}
.yb8{bottom:143.400000pt;}
.y3c{bottom:146.600000pt;}
.y200{bottom:147.880000pt;}
.y1c{bottom:148.200000pt;}
.y133{bottom:150.760000pt;}
.y1a8{bottom:150.880000pt;}
.y145{bottom:153.000000pt;}
.y1e2{bottom:153.960000pt;}
.y192{bottom:154.920000pt;}
.y15a{bottom:155.040000pt;}
.y18a{bottom:157.480000pt;}
.y1ae{bottom:157.800000pt;}
.y16f{bottom:158.120000pt;}
.y115{bottom:162.280000pt;}
.y20a{bottom:164.320000pt;}
.yb0{bottom:164.840000pt;}
.y152{bottom:166.440000pt;}
.y93{bottom:166.760000pt;}
.y14c{bottom:167.360000pt;}
.y149{bottom:168.000000pt;}
.yde{bottom:168.360000pt;}
.yf8{bottom:171.080000pt;}
.yb7{bottom:171.240000pt;}
.y14e{bottom:173.760000pt;}
.y3b{bottom:174.120000pt;}
.y132{bottom:178.280000pt;}
.y1a7{bottom:178.400000pt;}
.y1b{bottom:179.560000pt;}
.y14b{bottom:180.160000pt;}
.y144{bottom:180.520000pt;}
.y114{bottom:181.160000pt;}
.y1e1{bottom:181.480000pt;}
.y191{bottom:182.440000pt;}
.y159{bottom:183.840000pt;}
.y1ff{bottom:184.680000pt;}
.y189{bottom:185.000000pt;}
.y1ad{bottom:185.320000pt;}
.y16e{bottom:185.640000pt;}
.yaf{bottom:192.680000pt;}
.y151{bottom:193.960000pt;}
.y92{bottom:194.280000pt;}
.ydd{bottom:195.880000pt;}
.yb6{bottom:198.760000pt;}
.y3a{bottom:201.640000pt;}
.y1fe{bottom:203.240000pt;}
.y1a6{bottom:205.920000pt;}
.y131{bottom:206.120000pt;}
.y143{bottom:208.040000pt;}
.y1e0{bottom:209.000000pt;}
.y190{bottom:210.280000pt;}
.y188{bottom:212.520000pt;}
.y1ac{bottom:212.840000pt;}
.y16d{bottom:213.160000pt;}
.y1a{bottom:215.720000pt;}
.yae{bottom:220.200000pt;}
.y150{bottom:221.480000pt;}
.y91{bottom:221.800000pt;}
.ydc{bottom:223.400000pt;}
.y113{bottom:224.680000pt;}
.yb5{bottom:226.280000pt;}
.yf6{bottom:227.080000pt;}
.y39{bottom:229.480000pt;}
.y6f{bottom:230.760000pt;}
.y130{bottom:233.640000pt;}
.y142{bottom:235.880000pt;}
.y1df{bottom:236.840000pt;}
.y18f{bottom:237.800000pt;}
.y187{bottom:240.040000pt;}
.y1ab{bottom:240.360000pt;}
.y16c{bottom:240.680000pt;}
.yad{bottom:247.720000pt;}
.y6e{bottom:249.320000pt;}
.y19b{bottom:249.640000pt;}
.ydb{bottom:251.240000pt;}
.y112{bottom:252.200000pt;}
.y19{bottom:252.520000pt;}
.yb4{bottom:253.800000pt;}
.y1fc{bottom:255.560000pt;}
.y1a9{bottom:255.880000pt;}
.y38{bottom:257.000000pt;}
.y12f{bottom:261.160000pt;}
.y141{bottom:263.400000pt;}
.y154{bottom:263.720000pt;}
.y1de{bottom:264.360000pt;}
.y186{bottom:267.880000pt;}
.y16b{bottom:268.520000pt;}
.y18e{bottom:268.840000pt;}
.y14f{bottom:273.000000pt;}
.yac{bottom:275.240000pt;}
.y6d{bottom:277.160000pt;}
.y1fb{bottom:278.120000pt;}
.yda{bottom:278.760000pt;}
.y13d{bottom:278.920000pt;}
.y111{bottom:279.720000pt;}
.yb3{bottom:281.320000pt;}
.yf3{bottom:282.760000pt;}
.y37{bottom:284.520000pt;}
.y12e{bottom:288.680000pt;}
.y18d{bottom:289.000000pt;}
.y18{bottom:291.880000pt;}
.y14a{bottom:295.040000pt;}
.y185{bottom:295.400000pt;}
.y16a{bottom:296.040000pt;}
.y1fa{bottom:296.360000pt;}
.yab{bottom:303.080000pt;}
.y90{bottom:304.680000pt;}
.y6c{bottom:305.000000pt;}
.yd9{bottom:306.280000pt;}
.y110{bottom:307.560000pt;}
.y57{bottom:309.160000pt;}
.y36{bottom:312.040000pt;}
.y1f9{bottom:314.920000pt;}
.y12d{bottom:316.520000pt;}
.y1dd{bottom:319.400000pt;}
.y184{bottom:322.920000pt;}
.y169{bottom:323.560000pt;}
.yaa{bottom:330.600000pt;}
.y17{bottom:331.240000pt;}
.y8f{bottom:332.200000pt;}
.yd8{bottom:333.800000pt;}
.y10f{bottom:335.080000pt;}
.y56{bottom:336.680000pt;}
.yf0{bottom:338.760000pt;}
.y35{bottom:339.880000pt;}
.y6b{bottom:340.520000pt;}
.y12c{bottom:344.040000pt;}
.y1dc{bottom:347.240000pt;}
.y183{bottom:350.440000pt;}
.y168{bottom:351.080000pt;}
.y1f8{bottom:352.040000pt;}
.ya9{bottom:358.120000pt;}
.y8e{bottom:359.720000pt;}
.y19a{bottom:360.040000pt;}
.yd7{bottom:361.640000pt;}
.y10e{bottom:362.600000pt;}
.y55{bottom:364.200000pt;}
.y34{bottom:367.400000pt;}
.y16{bottom:370.600000pt;}
.y12b{bottom:371.560000pt;}
.y1db{bottom:374.760000pt;}
.y6a{bottom:376.360000pt;}
.y182{bottom:378.280000pt;}
.y167{bottom:378.920000pt;}
.ya8{bottom:385.640000pt;}
.y8d{bottom:387.560000pt;}
.y1f7{bottom:388.840000pt;}
.yd6{bottom:389.160000pt;}
.y1c4{bottom:390.120000pt;}
.y54{bottom:391.720000pt;}
.y10d{bottom:392.360000pt;}
.yee{bottom:394.760000pt;}
.y33{bottom:394.920000pt;}
.y12a{bottom:399.080000pt;}
.y1da{bottom:402.280000pt;}
.y181{bottom:405.800000pt;}
.y166{bottom:406.440000pt;}
.y1f6{bottom:407.400000pt;}
.y69{bottom:411.880000pt;}
.ya7{bottom:413.480000pt;}
.y8c{bottom:415.080000pt;}
.yd5{bottom:416.680000pt;}
.yc2{bottom:417.320000pt;}
.y1c3{bottom:417.960000pt;}
.y53{bottom:419.560000pt;}
.y13c{bottom:420.680000pt;}
.y32{bottom:422.440000pt;}
.y1f5{bottom:425.640000pt;}
.y129{bottom:426.600000pt;}
.y15{bottom:429.480000pt;}
.y1d9{bottom:429.800000pt;}
.y1b4{bottom:430.600000pt;}
.y180{bottom:433.320000pt;}
.y165{bottom:433.960000pt;}
.ya6{bottom:441.000000pt;}
.y8b{bottom:442.600000pt;}
.yd4{bottom:444.200000pt;}
.yc1{bottom:444.840000pt;}
.y68{bottom:445.480000pt;}
.yed{bottom:445.800000pt;}
.y52{bottom:447.080000pt;}
.y1a5{bottom:449.800000pt;}
.y10c{bottom:449.960000pt;}
.y31{bottom:450.280000pt;}
.y128{bottom:454.440000pt;}
.y1d8{bottom:457.640000pt;}
.y17f{bottom:460.840000pt;}
.y164{bottom:461.480000pt;}
.y1f4{bottom:462.440000pt;}
.y67{bottom:468.520000pt;}
.yec{bottom:469.800000pt;}
.y8a{bottom:470.120000pt;}
.y199{bottom:470.440000pt;}
.yd3{bottom:472.040000pt;}
.yc0{bottom:472.360000pt;}
.y51{bottom:474.600000pt;}
.y10b{bottom:477.480000pt;}
.y30{bottom:477.800000pt;}
.y1f3{bottom:481.000000pt;}
.y127{bottom:481.960000pt;}
.y1d7{bottom:485.160000pt;}
.y14{bottom:488.360000pt;}
.y17e{bottom:488.680000pt;}
.y163{bottom:489.320000pt;}
.y66{bottom:491.240000pt;}
.y1c2{bottom:491.560000pt;}
.y13b{bottom:492.840000pt;}
.ya5{bottom:496.040000pt;}
.yeb{bottom:497.320000pt;}
.y89{bottom:497.960000pt;}
.y1f2{bottom:499.240000pt;}
.yd2{bottom:499.560000pt;}
.ybf{bottom:500.200000pt;}
.y50{bottom:502.120000pt;}
.y20b{bottom:503.080000pt;}
.y2f{bottom:505.320000pt;}
.y126{bottom:509.480000pt;}
.y1d6{bottom:512.680000pt;}
.y65{bottom:514.280000pt;}
.y17d{bottom:516.200000pt;}
.y13a{bottom:516.520000pt;}
.y162{bottom:516.840000pt;}
.y1f1{bottom:517.800000pt;}
.y209{bottom:521.160000pt;}
.ya4{bottom:523.560000pt;}
.yea{bottom:524.840000pt;}
.y88{bottom:525.480000pt;}
.yd1{bottom:527.080000pt;}
.ybe{bottom:527.720000pt;}
.y4f{bottom:529.960000pt;}
.y2e{bottom:532.840000pt;}
.y139{bottom:535.080000pt;}
.y1f0{bottom:536.040000pt;}
.y125{bottom:537.000000pt;}
.y64{bottom:537.320000pt;}
.y1c1{bottom:537.960000pt;}
.y1d5{bottom:540.200000pt;}
.y17c{bottom:543.720000pt;}
.y161{bottom:544.360000pt;}
.y13{bottom:547.240000pt;}
.ya3{bottom:551.400000pt;}
.ye9{bottom:552.360000pt;}
.y87{bottom:553.000000pt;}
.yd0{bottom:554.600000pt;}
.ybd{bottom:555.240000pt;}
.y4e{bottom:557.480000pt;}
.y2d{bottom:560.360000pt;}
.y63{bottom:561.320000pt;}
.y124{bottom:564.840000pt;}
.y138{bottom:565.160000pt;}
.y1ef{bottom:565.800000pt;}
.y1d4{bottom:568.040000pt;}
.y17b{bottom:571.240000pt;}
.y160{bottom:571.880000pt;}
.y1b3{bottom:572.680000pt;}
.ya2{bottom:578.920000pt;}
.ye8{bottom:579.880000pt;}
.y86{bottom:580.520000pt;}
.ycf{bottom:582.440000pt;}
.ybc{bottom:582.760000pt;}
.y1c0{bottom:584.360000pt;}
.y4d{bottom:585.000000pt;}
.y10a{bottom:587.880000pt;}
.y2c{bottom:588.200000pt;}
.y123{bottom:592.360000pt;}
.y137{bottom:592.680000pt;}
.y62{bottom:594.600000pt;}
.y1d3{bottom:595.560000pt;}
.y198{bottom:596.360000pt;}
.y1ee{bottom:597.800000pt;}
.y17a{bottom:599.080000pt;}
.y15f{bottom:599.720000pt;}
.y12{bottom:606.440000pt;}
.ye7{bottom:607.720000pt;}
.y85{bottom:608.360000pt;}
.yce{bottom:609.960000pt;}
.ybb{bottom:610.600000pt;}
.y1bf{bottom:611.880000pt;}
.y4c{bottom:612.520000pt;}
.y2b{bottom:615.720000pt;}
.y1b2{bottom:617.000000pt;}
.y122{bottom:619.880000pt;}
.y136{bottom:620.520000pt;}
.y1d2{bottom:623.080000pt;}
.y179{bottom:626.600000pt;}
.y15e{bottom:627.240000pt;}
.y61{bottom:627.880000pt;}
.y1ed{bottom:628.200000pt;}
.ya1{bottom:633.960000pt;}
.ye6{bottom:635.240000pt;}
.y120{bottom:635.400000pt;}
.y84{bottom:635.880000pt;}
.ycd{bottom:637.480000pt;}
.yba{bottom:638.120000pt;}
.y1be{bottom:639.400000pt;}
.y4b{bottom:640.360000pt;}
.y1b1{bottom:640.680000pt;}
.y2a{bottom:643.240000pt;}
.y109{bottom:644.200000pt;}
.y1d1{bottom:650.600000pt;}
.y135{bottom:651.240000pt;}
.ye5{bottom:653.800000pt;}
.y178{bottom:654.120000pt;}
.y15d{bottom:654.760000pt;}
.y1ec{bottom:655.720000pt;}
.y1b0{bottom:659.240000pt;}
.y60{bottom:661.160000pt;}
.ya0{bottom:661.800000pt;}
.y148{bottom:662.440000pt;}
.y83{bottom:663.400000pt;}
.ycc{bottom:665.000000pt;}
.y11{bottom:665.320000pt;}
.yb9{bottom:665.960000pt;}
.y1bd{bottom:666.920000pt;}
.y4a{bottom:667.880000pt;}
.y158{bottom:670.280000pt;}
.y29{bottom:670.760000pt;}
.y1a3{bottom:671.240000pt;}
.y108{bottom:672.040000pt;}
.ye4{bottom:673.000000pt;}
.y11f{bottom:677.000000pt;}
.y1d0{bottom:678.440000pt;}
.y177{bottom:681.640000pt;}
.y9f{bottom:689.320000pt;}
.y82{bottom:690.920000pt;}
.y107{bottom:691.560000pt;}
.ycb{bottom:692.520000pt;}
.y5f{bottom:694.440000pt;}
.y49{bottom:695.400000pt;}
.y28{bottom:698.600000pt;}
.y1eb{bottom:699.400000pt;}
.y10{bottom:700.200000pt;}
.y208{bottom:704.360000pt;}
.y1cf{bottom:705.960000pt;}
.y11e{bottom:706.440000pt;}
.y176{bottom:709.480000pt;}
.y106{bottom:710.440000pt;}
.y1bc{bottom:713.320000pt;}
.ye3{bottom:716.520000pt;}
.y9e{bottom:716.840000pt;}
.yf{bottom:718.760000pt;}
.yca{bottom:720.360000pt;}
.y78{bottom:722.600000pt;}
.y48{bottom:722.920000pt;}
.y27{bottom:726.120000pt;}
.y5e{bottom:727.720000pt;}
.y1ea{bottom:727.880000pt;}
.y1ce{bottom:733.480000pt;}
.y11d{bottom:735.560000pt;}
.ye{bottom:737.000000pt;}
.y197{bottom:738.120000pt;}
.y175{bottom:738.280000pt;}
.y1bb{bottom:740.840000pt;}
.y207{bottom:741.160000pt;}
.y9d{bottom:744.360000pt;}
.ye2{bottom:745.320000pt;}
.y81{bottom:746.280000pt;}
.yc9{bottom:747.880000pt;}
.y47{bottom:750.760000pt;}
.y26{bottom:753.640000pt;}
.y105{bottom:753.960000pt;}
.yd{bottom:755.560000pt;}
.y1e9{bottom:756.040000pt;}
.y206{bottom:759.720000pt;}
.y1cd{bottom:761.000000pt;}
.y5d{bottom:761.320000pt;}
.y11c{bottom:765.000000pt;}
.y174{bottom:766.760000pt;}
.y1ba{bottom:768.360000pt;}
.y9c{bottom:772.200000pt;}
.yc{bottom:773.800000pt;}
.y204{bottom:775.240000pt;}
.yc8{bottom:775.400000pt;}
.y46{bottom:778.280000pt;}
.y77{bottom:778.600000pt;}
.y25{bottom:781.160000pt;}
.y104{bottom:781.800000pt;}
.y196{bottom:782.440000pt;}
.y1e8{bottom:784.200000pt;}
.y1cc{bottom:788.840000pt;}
.yb{bottom:792.360000pt;}
.y11b{bottom:793.160000pt;}
.y5c{bottom:795.560000pt;}
.y1b9{bottom:796.200000pt;}
.y9b{bottom:799.720000pt;}
.y80{bottom:801.320000pt;}
.yc7{bottom:802.920000pt;}
.y45{bottom:805.800000pt;}
.y195{bottom:806.120000pt;}
.y76{bottom:806.440000pt;}
.y24{bottom:809.000000pt;}
.y19f{bottom:810.120000pt;}
.ya{bottom:810.600000pt;}
.y1e7{bottom:812.680000pt;}
.y1cb{bottom:816.360000pt;}
.y173{bottom:824.040000pt;}
.y194{bottom:824.680000pt;}
.y9a{bottom:827.240000pt;}
.ye1{bottom:828.840000pt;}
.y9{bottom:829.160000pt;}
.yc6{bottom:830.760000pt;}
.y5b{bottom:831.080000pt;}
.y44{bottom:833.320000pt;}
.y75{bottom:834.600000pt;}
.y23{bottom:836.520000pt;}
.y103{bottom:839.080000pt;}
.y1e6{bottom:840.840000pt;}
.y1b8{bottom:842.280000pt;}
.y1ca{bottom:843.880000pt;}
.y8{bottom:847.400000pt;}
.y172{bottom:852.840000pt;}
.y99{bottom:854.760000pt;}
.y7f{bottom:856.680000pt;}
.yc5{bottom:858.280000pt;}
.y43{bottom:861.160000pt;}
.y74{bottom:862.760000pt;}
.y22{bottom:864.040000pt;}
.y11a{bottom:865.320000pt;}
.y7{bottom:865.960000pt;}
.y5a{bottom:866.600000pt;}
.y102{bottom:867.880000pt;}
.y1e5{bottom:869.000000pt;}
.y157{bottom:869.640000pt;}
.y1b7{bottom:869.800000pt;}
.y1c9{bottom:871.400000pt;}
.yc4{bottom:876.840000pt;}
.y171{bottom:881.640000pt;}
.y98{bottom:882.600000pt;}
.y7e{bottom:884.200000pt;}
.y6{bottom:887.400000pt;}
.y42{bottom:888.680000pt;}
.y119{bottom:889.000000pt;}
.y73{bottom:890.920000pt;}
.y21{bottom:891.560000pt;}
.yc3{bottom:896.040000pt;}
.y101{bottom:896.360000pt;}
.y1b6{bottom:897.640000pt;}
.y1c8{bottom:899.240000pt;}
.y203{bottom:900.840000pt;}
.y59{bottom:902.440000pt;}
.y118{bottom:907.560000pt;}
.y97{bottom:910.120000pt;}
.y7d{bottom:911.720000pt;}
.y41{bottom:916.200000pt;}
.y1c7{bottom:917.800000pt;}
.y72{bottom:919.080000pt;}
.y20{bottom:919.400000pt;}
.y5{bottom:920.680000pt;}
.y100{bottom:925.160000pt;}
.y1c6{bottom:936.680000pt;}
.y71{bottom:937.640000pt;}
.y7c{bottom:939.560000pt;}
.y58{bottom:939.880000pt;}
.y156{bottom:941.480000pt;}
.y40{bottom:943.720000pt;}
.y1f{bottom:946.920000pt;}
.y19d{bottom:948.680000pt;}
.yff{bottom:952.680000pt;}
.y1b5{bottom:953.000000pt;}
.y4{bottom:953.320000pt;}
.y70{bottom:956.200000pt;}
.y7b{bottom:958.440000pt;}
.y96{bottom:965.160000pt;}
.yfe{bottom:971.240000pt;}
.y3f{bottom:971.560000pt;}
.y1e{bottom:974.440000pt;}
.y3{bottom:983.720000pt;}
.y3e{bottom:990.440000pt;}
.y1d{bottom:993.000000pt;}
.y19c{bottom:996.840000pt;}
.h25{height:18.240000pt;}
.h2{height:18.560000pt;}
.hf{height:18.880000pt;}
.h11{height:27.520000pt;}
.h24{height:27.840000pt;}
.h16{height:28.480000pt;}
.h15{height:28.800000pt;}
.h20{height:31.360000pt;}
.h1c{height:34.247500pt;}
.h1e{height:35.031250pt;}
.h10{height:35.411250pt;}
.h17{height:40.960000pt;}
.h3{height:45.062500pt;}
.he{height:46.593750pt;}
.hd{height:48.195000pt;}
.hc{height:53.158750pt;}
.h13{height:55.040000pt;}
.h14{height:55.040013pt;}
.h12{height:55.360000pt;}
.h9{height:57.375000pt;}
.h7{height:57.781250pt;}
.hb{height:57.843750pt;}
.h18{height:59.627500pt;}
.ha{height:67.026250pt;}
.h1b{height:86.520000pt;}
.h4{height:93.375000pt;}
.h26{height:103.040000pt;}
.h6{height:103.500000pt;}
.h5{height:112.500000pt;}
.h8{height:121.500000pt;}
.h1d{height:136.960000pt;}
.h21{height:137.920000pt;}
.h19{height:141.120000pt;}
.h27{height:179.200000pt;}
.h23{height:193.280000pt;}
.h1f{height:198.720000pt;}
.h22{height:220.800000pt;}
.h1a{height:345.600000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:5.440000pt;}
.w5{width:8.640000pt;}
.w2{width:9.280000pt;}
.w4{width:10.560000pt;}
.wf{width:17.600000pt;}
.w1a{width:55.680000pt;}
.w19{width:56.000000pt;}
.wd{width:61.440000pt;}
.w6{width:61.760000pt;}
.w7{width:67.520000pt;}
.we{width:68.160000pt;}
.w9{width:70.080000pt;}
.wa{width:70.400000pt;}
.wb{width:74.880000pt;}
.w8{width:77.120000pt;}
.wc{width:78.080000pt;}
.w18{width:107.200000pt;}
.w17{width:265.600000pt;}
.w16{width:265.920000pt;}
.w14{width:273.920000pt;}
.w12{width:287.040000pt;}
.w11{width:287.360000pt;}
.w15{width:300.480000pt;}
.w1b{width:565.120000pt;}
.w10{width:575.040000pt;}
.w13{width:793.000000pt;}
.w0{width:793.720000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:4.000160pt;}
.x1d{left:6.560032pt;}
.x3a{left:18.761280pt;}
.x31{left:23.497632pt;}
.x22{left:30.560000pt;}
.x23{left:54.560128pt;}
.x21{left:107.440000pt;}
.x1c{left:110.000000pt;}
.x6{left:114.000128pt;}
.x10{left:130.000128pt;}
.x2e{left:131.440000pt;}
.xb{left:133.238080pt;}
.x13{left:138.000000pt;}
.x9{left:141.659296pt;}
.x11{left:146.000128pt;}
.x2b{left:155.440000pt;}
.x12{left:162.000128pt;}
.xa{left:166.144320pt;}
.x7{left:169.732864pt;}
.x32{left:171.440000pt;}
.x8{left:179.389760pt;}
.x1e{left:186.000128pt;}
.x14{left:189.040000pt;}
.xc{left:199.845824pt;}
.x3b{left:210.000128pt;}
.x30{left:223.915168pt;}
.x33{left:228.080000pt;}
.x2f{left:239.280000pt;}
.x16{left:251.760000pt;}
.x28{left:255.106933pt;}
.x2d{left:269.243296pt;}
.x34{left:284.720000pt;}
.x1f{left:302.800224pt;}
.xe{left:312.981248pt;}
.x3{left:316.587360pt;}
.x17{left:319.920000pt;}
.x25{left:338.803333pt;}
.x35{left:341.360000pt;}
.x2a{left:382.000000pt;}
.x26{left:386.600000pt;}
.x20{left:388.720000pt;}
.x1{left:392.880000pt;}
.xf{left:394.800000pt;}
.x18{left:397.680000pt;}
.x2c{left:422.000000pt;}
.x36{left:454.320000pt;}
.x19{left:468.400000pt;}
.x4{left:476.411520pt;}
.x27{left:493.906400pt;}
.x37{left:510.960000pt;}
.x1a{left:539.120000pt;}
.x5{left:541.767040pt;}
.x38{left:567.600000pt;}
.x1b{left:610.160000pt;}
.x39{left:624.240000pt;}
.xd{left:680.533440pt;}
.x24{left:690.000000pt;}
.x29{left:722.000000pt;}
.x2{left:737.733120pt;}
}




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