
    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_a23203b750764f29a9d951a5.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_876181c52f5160ca8d0ae115.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_06d98ab5312c1f109ed619fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.813477;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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_8217fe6764bdca7b9fbebe1a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_5620e7eef19e72be5e144d72.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_ffc6be37e6e587649702ffba.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_450567c44c74feb3b42ab5a4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_39af0e0da9896874edd157e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_e9039e0c29a9590639bbf0cf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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:ffc;src:url('chunks/assets/font_01bacdd186770cd0410a8f3d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.063477;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:ffd;src:url('chunks/assets/font_7afe63dc9e83ab16e243622c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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);}
.v8{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v7{vertical-align:20.880000px;}
.v6{vertical-align:22.440000px;}
.v5{vertical-align:40.320000px;}
.v1{vertical-align:46.080000px;}
.v3{vertical-align:48.240000px;}
.v2{vertical-align:68.400000px;}
.ls1e{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.206400px;}
.ls20{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.012960px;}
.ls1f{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.070560px;}
.ls19{letter-spacing:0.106800px;}
.lsd{letter-spacing:0.149760px;}
.ls21{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.259800px;}
.lse{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.288000px;}
.ls22{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.403920px;}
.ls1d{letter-spacing:0.540000px;}
.lsa{letter-spacing:0.756000px;}
.lsc{letter-spacing:0.828000px;}
.ls23{letter-spacing:0.900000px;}
.ls18{letter-spacing:0.924000px;}
.ls24{letter-spacing:0.979920px;}
.ls2{letter-spacing:1.386720px;}
.ls14{letter-spacing:3.754800px;}
.ls16{letter-spacing:3.769200px;}
.ls15{letter-spacing:16.140960px;}
.ls26{letter-spacing:16.506720px;}
.ls1c{letter-spacing:16.559280px;}
.ls3{letter-spacing:23.909760px;}
.ls4{letter-spacing:24.768000px;}
.ls13{letter-spacing:44.010720px;}
.ls1{letter-spacing:46.026720px;}
.ls25{letter-spacing:46.170720px;}
.ls5{letter-spacing:63.360000px;}
.ls10{letter-spacing:64.026720px;}
.ls11{letter-spacing:64.170720px;}
.ls17{letter-spacing:153.060960px;}
.ls1b{letter-spacing:217.140960px;}
.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;}
}
.ws9{word-spacing:-59.760000px;}
.ws2{word-spacing:-24.696000px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws8{word-spacing:-15.864000px;}
.ws3{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.wsf{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.733600px;}
.wse{word-spacing:-14.580000px;}
.wsd{word-spacing:-13.160160px;}
.wsa{word-spacing:-13.147200px;}
.ws10{word-spacing:-9.720000px;}
.wsb{word-spacing:-0.187920px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:0.532080px;}
._11{margin-left:-3.927600px;}
._b{margin-left:-2.450160px;}
._2{margin-left:-1.152000px;}
._0{width:1.185840px;}
._a{width:2.399760px;}
._9{width:3.786960px;}
._8{width:5.236800px;}
._7{width:6.274800px;}
._5{width:7.290720px;}
._6{width:8.472960px;}
._10{width:9.624240px;}
._d{width:10.792080px;}
._c{width:11.892240px;}
._4{width:13.206960px;}
._13{width:14.286000px;}
._12{width:18.257760px;}
._f{width:21.463200px;}
._e{width:22.649040px;}
._17{width:30.597120px;}
._19{width:32.389920px;}
._3{width:39.337200px;}
._18{width:61.433280px;}
._1b{width:66.333600px;}
._1c{width:74.640240px;}
._1a{width:82.110240px;}
._15{width:87.309360px;}
._14{width:90.118080px;}
._1d{width:102.846960px;}
._1e{width:123.174720px;}
._16{width:143.244720px;}
._1{width:1099.908000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.620000px;}
.y38{bottom:5.760000px;}
.y106{bottom:5.805000px;}
.y114{bottom:5.940000px;}
.y1a4{bottom:6.114000px;}
.y104{bottom:6.120000px;}
.y11a{bottom:6.150000px;}
.y12a{bottom:6.165000px;}
.y135{bottom:6.294000px;}
.y10a{bottom:6.300000px;}
.y173{bottom:6.480000px;}
.y17b{bottom:6.525000px;}
.y1aa{bottom:6.840000px;}
.y1f2{bottom:7.020000px;}
.y1f0{bottom:7.200000px;}
.y7{bottom:8.280000px;}
.y36{bottom:11.340000px;}
.y1b0{bottom:16.020000px;}
.y185{bottom:16.560000px;}
.y19b{bottom:16.965000px;}
.y168{bottom:18.360000px;}
.y18b{bottom:20.370000px;}
.y1af{bottom:25.560000px;}
.y133{bottom:25.920000px;}
.y102{bottom:25.965000px;}
.y14c{bottom:26.100000px;}
.y1ef{bottom:27.000000px;}
.y35{bottom:31.320000px;}
.y127{bottom:35.820000px;}
.y163{bottom:35.865000px;}
.y1a6{bottom:36.000000px;}
.y6{bottom:36.180000px;}
.y184{bottom:36.540000px;}
.y17e{bottom:36.720000px;}
.y1eb{bottom:36.765000px;}
.y1f4{bottom:36.900000px;}
.y176{bottom:37.125000px;}
.y167{bottom:38.160000px;}
.y18a{bottom:40.170000px;}
.y13b{bottom:40.500000px;}
.y108{bottom:45.720000px;}
.y155{bottom:45.750000px;}
.y10f{bottom:45.900000px;}
.y1b2{bottom:50.400000px;}
.y116{bottom:50.430000px;}
.y34{bottom:51.120000px;}
.y126{bottom:55.800000px;}
.y17d{bottom:56.520000px;}
.y175{bottom:56.925000px;}
.yb{bottom:57.060000px;}
.y5{bottom:58.140000px;}
.y189{bottom:59.970000px;}
.y13a{bottom:60.300000px;}
.y33{bottom:70.560000px;}
.y4{bottom:81.930000px;}
.y1df{bottom:83.916000px;}
.y132{bottom:84.996000px;}
.y70{bottom:86.976000px;}
.yce{bottom:88.776000px;}
.y1a5{bottom:89.316000px;}
.y32{bottom:90.360000px;}
.ya2{bottom:90.576000px;}
.yf5{bottom:95.796000px;}
.y26{bottom:100.656000px;}
.y1de{bottom:103.896000px;}
.y137{bottom:104.796000px;}
.y6f{bottom:106.776000px;}
.y170{bottom:107.136000px;}
.ycd{bottom:108.576000px;}
.y9{bottom:108.750000px;}
.y1a8{bottom:109.296000px;}
.y31{bottom:110.190000px;}
.ya1{bottom:110.556000px;}
.yf4{bottom:115.596000px;}
.y3{bottom:118.290000px;}
.y25{bottom:120.456000px;}
.y1dd{bottom:123.696000px;}
.y136{bottom:124.596000px;}
.y6e{bottom:126.576000px;}
.y211{bottom:126.756000px;}
.y16f{bottom:126.936000px;}
.ycc{bottom:128.556000px;}
.y1a7{bottom:129.096000px;}
.ya0{bottom:130.356000px;}
.y30{bottom:130.530000px;}
.y8{bottom:130.710000px;}
.yf3{bottom:135.396000px;}
.y24{bottom:140.256000px;}
.y1dc{bottom:143.496000px;}
.y134{bottom:144.396000px;}
.y6d{bottom:146.556000px;}
.y16e{bottom:146.916000px;}
.ycb{bottom:148.356000px;}
.y1a3{bottom:148.896000px;}
.y9f{bottom:150.150000px;}
.y2f{bottom:150.330000px;}
.yf2{bottom:155.370000px;}
.y23{bottom:160.230000px;}
.y1db{bottom:163.290000px;}
.y12d{bottom:165.090000px;}
.y6c{bottom:166.350000px;}
.y16d{bottom:166.710000px;}
.yca{bottom:168.150000px;}
.y241{bottom:168.510000px;}
.y1a2{bottom:168.690000px;}
.y2e{bottom:169.770000px;}
.y9e{bottom:169.950000px;}
.yf1{bottom:171.930000px;}
.y22{bottom:180.030000px;}
.yf0{bottom:182.010000px;}
.y1da{bottom:183.090000px;}
.y131{bottom:184.890000px;}
.y6b{bottom:186.150000px;}
.y16c{bottom:186.510000px;}
.yc9{bottom:187.590000px;}
.y240{bottom:188.670000px;}
.y19e{bottom:189.390000px;}
.y2d{bottom:189.570000px;}
.y9d{bottom:189.750000px;}
.y21{bottom:199.830000px;}
.y1d9{bottom:203.070000px;}
.y130{bottom:204.690000px;}
.y6a{bottom:205.950000px;}
.y16b{bottom:206.310000px;}
.yc8{bottom:207.390000px;}
.y23f{bottom:208.470000px;}
.y1a1{bottom:209.190000px;}
.y2c{bottom:209.370000px;}
.y9c{bottom:209.730000px;}
.yef{bottom:213.690000px;}
.y20{bottom:219.630000px;}
.y1d8{bottom:222.870000px;}
.y12f{bottom:224.490000px;}
.y69{bottom:225.750000px;}
.y210{bottom:225.930000px;}
.yc7{bottom:227.730000px;}
.y23e{bottom:228.450000px;}
.y1a0{bottom:228.990000px;}
.y2b{bottom:229.350000px;}
.y9b{bottom:229.530000px;}
.yee{bottom:233.490000px;}
.y1f{bottom:239.430000px;}
.y166{bottom:242.130000px;}
.y1d7{bottom:242.670000px;}
.y12e{bottom:244.470000px;}
.y20f{bottom:245.370000px;}
.y68{bottom:245.730000px;}
.yc6{bottom:247.530000px;}
.y23d{bottom:248.250000px;}
.y19f{bottom:248.790000px;}
.y2a{bottom:249.150000px;}
.y9a{bottom:249.330000px;}
.yed{bottom:253.290000px;}
.y1e{bottom:259.410000px;}
.y1d6{bottom:262.470000px;}
.y16a{bottom:264.270000px;}
.y125{bottom:264.990000px;}
.y67{bottom:265.530000px;}
.yc5{bottom:267.330000px;}
.y23c{bottom:268.050000px;}
.y19d{bottom:268.590000px;}
.y29{bottom:268.950000px;}
.y99{bottom:269.130000px;}
.yec{bottom:273.090000px;}
.y20e{bottom:274.530000px;}
.y1d{bottom:279.210000px;}
.y1d5{bottom:283.350000px;}
.y12c{bottom:284.790000px;}
.y66{bottom:285.330000px;}
.y169{bottom:286.230000px;}
.yc4{bottom:287.130000px;}
.y23b{bottom:287.850000px;}
.y19c{bottom:288.570000px;}
.y98{bottom:288.930000px;}
.yeb{bottom:292.890000px;}
.y20d{bottom:294.330000px;}
.y1c{bottom:299.010000px;}
.y1d4{bottom:304.410000px;}
.y12b{bottom:304.590000px;}
.y65{bottom:305.130000px;}
.yc3{bottom:306.930000px;}
.y23a{bottom:307.650000px;}
.y97{bottom:308.910000px;}
.y19a{bottom:310.530000px;}
.yea{bottom:312.870000px;}
.y20c{bottom:314.130000px;}
.y1b{bottom:318.810000px;}
.y1d3{bottom:324.210000px;}
.y129{bottom:324.570000px;}
.y64{bottom:324.930000px;}
.y165{bottom:326.730000px;}
.yc2{bottom:326.910000px;}
.y239{bottom:327.675000px;}
.y96{bottom:328.755000px;}
.ye9{bottom:332.715000px;}
.y20b{bottom:334.155000px;}
.y1a{bottom:338.655000px;}
.y128{bottom:344.415000px;}
.y63{bottom:344.955000px;}
.y1d2{bottom:345.135000px;}
.y164{bottom:346.575000px;}
.yc1{bottom:346.755000px;}
.y238{bottom:347.475000px;}
.y95{bottom:348.195000px;}
.y28{bottom:348.690000px;}
.ye8{bottom:352.515000px;}
.y20a{bottom:353.955000px;}
.y19{bottom:358.635000px;}
.y199{bottom:360.615000px;}
.y62{bottom:364.755000px;}
.y1d1{bottom:366.015000px;}
.y124{bottom:366.375000px;}
.yc0{bottom:366.555000px;}
.y237{bottom:367.275000px;}
.ye7{bottom:372.315000px;}
.y209{bottom:373.755000px;}
.y94{bottom:377.355000px;}
.y18{bottom:378.435000px;}
.y198{bottom:380.415000px;}
.y61{bottom:384.555000px;}
.ybf{bottom:386.355000px;}
.y1d0{bottom:386.895000px;}
.y160{bottom:387.075000px;}
.ye6{bottom:392.115000px;}
.y208{bottom:393.555000px;}
.y123{bottom:394.275000px;}
.y93{bottom:397.155000px;}
.y17{bottom:398.235000px;}
.y60{bottom:404.355000px;}
.ybe{bottom:406.155000px;}
.y162{bottom:406.875000px;}
.y1cf{bottom:407.955000px;}
.y197{bottom:409.575000px;}
.ye5{bottom:411.915000px;}
.y207{bottom:413.355000px;}
.y122{bottom:414.615000px;}
.y92{bottom:417.135000px;}
.y16{bottom:418.035000px;}
.y5f{bottom:424.155000px;}
.ybd{bottom:426.135000px;}
.y161{bottom:426.675000px;}
.y236{bottom:426.855000px;}
.y1ce{bottom:427.755000px;}
.y196{bottom:429.375000px;}
.ye4{bottom:431.895000px;}
.y206{bottom:433.335000px;}
.y121{bottom:434.415000px;}
.y91{bottom:436.935000px;}
.y15{bottom:437.475000px;}
.y5e{bottom:444.135000px;}
.ybc{bottom:445.935000px;}
.y235{bottom:446.655000px;}
.y15d{bottom:447.195000px;}
.y1cd{bottom:447.555000px;}
.y195{bottom:449.355000px;}
.ye3{bottom:451.695000px;}
.y205{bottom:453.135000px;}
.y120{bottom:454.215000px;}
.y90{bottom:456.735000px;}
.y14{bottom:457.455000px;}
.y5d{bottom:463.935000px;}
.ybb{bottom:465.735000px;}
.y234{bottom:466.455000px;}
.y15f{bottom:467.175000px;}
.y1cc{bottom:467.355000px;}
.y194{bottom:469.155000px;}
.ye2{bottom:471.495000px;}
.y204{bottom:472.935000px;}
.y11f{bottom:474.015000px;}
.y8f{bottom:476.535000px;}
.y13{bottom:477.615000px;}
.y5c{bottom:483.735000px;}
.yba{bottom:485.535000px;}
.y233{bottom:486.255000px;}
.y15e{bottom:486.975000px;}
.y1cb{bottom:487.155000px;}
.y193{bottom:488.955000px;}
.ye1{bottom:490.935000px;}
.y203{bottom:492.735000px;}
.y11e{bottom:493.815000px;}
.y8e{bottom:496.335000px;}
.y27{bottom:496.515000px;}
.y5b{bottom:503.535000px;}
.yb9{bottom:505.335000px;}
.y232{bottom:506.055000px;}
.y15a{bottom:507.495000px;}
.y1ca{bottom:508.035000px;}
.y192{bottom:508.755000px;}
.y202{bottom:512.535000px;}
.y11d{bottom:513.795000px;}
.y8d{bottom:516.315000px;}
.ye0{bottom:520.095000px;}
.y5a{bottom:523.335000px;}
.yb8{bottom:525.315000px;}
.y231{bottom:526.035000px;}
.y15c{bottom:527.295000px;}
.y191{bottom:528.555000px;}
.y1c9{bottom:529.095000px;}
.y201{bottom:532.515000px;}
.y11c{bottom:533.235000px;}
.y8c{bottom:536.115000px;}
.ydf{bottom:540.075000px;}
.y59{bottom:543.315000px;}
.yb7{bottom:545.115000px;}
.y230{bottom:545.835000px;}
.y15b{bottom:547.095000px;}
.y190{bottom:548.535000px;}
.y1c8{bottom:548.895000px;}
.y115{bottom:549.435000px;}
.y200{bottom:552.315000px;}
.y8b{bottom:555.915000px;}
.yde{bottom:559.875000px;}
.y58{bottom:563.115000px;}
.yb6{bottom:564.915000px;}
.y22f{bottom:565.635000px;}
.y154{bottom:567.795000px;}
.y18f{bottom:567.975000px;}
.y1c7{bottom:568.695000px;}
.y11b{bottom:571.575000px;}
.y1ff{bottom:572.115000px;}
.y8a{bottom:575.715000px;}
.ydd{bottom:579.675000px;}
.y57{bottom:582.915000px;}
.y188{bottom:584.175000px;}
.yb5{bottom:584.715000px;}
.y22e{bottom:585.435000px;}
.y159{bottom:587.595000px;}
.y1c6{bottom:588.495000px;}
.y1fe{bottom:591.915000px;}
.y119{bottom:593.715000px;}
.y89{bottom:595.545000px;}
.ydc{bottom:599.505000px;}
.y56{bottom:602.745000px;}
.yb4{bottom:604.185000px;}
.y22d{bottom:605.265000px;}
.y18e{bottom:607.245000px;}
.y158{bottom:607.425000px;}
.y1c5{bottom:607.965000px;}
.y1fd{bottom:611.745000px;}
.y88{bottom:615.525000px;}
.y118{bottom:615.705000px;}
.ydb{bottom:618.945000px;}
.y55{bottom:622.545000px;}
.y22c{bottom:625.245000px;}
.y157{bottom:627.225000px;}
.y18d{bottom:629.385000px;}
.y1fc{bottom:631.725000px;}
.yb3{bottom:633.525000px;}
.y87{bottom:635.325000px;}
.y1c4{bottom:637.305000px;}
.y117{bottom:637.845000px;}
.yda{bottom:640.365000px;}
.y54{bottom:642.525000px;}
.y22b{bottom:645.045000px;}
.y156{bottom:647.205000px;}
.y1fb{bottom:651.525000px;}
.y18c{bottom:651.705000px;}
.yb2{bottom:653.325000px;}
.y86{bottom:655.125000px;}
.y1c3{bottom:657.105000px;}
.y10e{bottom:658.365000px;}
.yd9{bottom:660.165000px;}
.y53{bottom:662.325000px;}
.y22a{bottom:664.845000px;}
.y14f{bottom:667.725000px;}
.y1fa{bottom:671.325000px;}
.y183{bottom:672.585000px;}
.yb1{bottom:673.125000px;}
.y85{bottom:674.565000px;}
.y1c2{bottom:676.905000px;}
.y113{bottom:678.345000px;}
.yd8{bottom:679.965000px;}
.y52{bottom:682.125000px;}
.y229{bottom:684.645000px;}
.y153{bottom:687.525000px;}
.y1f9{bottom:691.125000px;}
.y187{bottom:692.745000px;}
.yb0{bottom:692.925000px;}
.y1c1{bottom:696.705000px;}
.y112{bottom:698.145000px;}
.yd7{bottom:699.405000px;}
.y51{bottom:701.925000px;}
.y84{bottom:703.725000px;}
.y228{bottom:704.445000px;}
.y1f8{bottom:705.525000px;}
.y152{bottom:707.325000px;}
.yaf{bottom:712.725000px;}
.y186{bottom:713.085000px;}
.y1c0{bottom:716.505000px;}
.y111{bottom:717.945000px;}
.yd6{bottom:720.645000px;}
.y50{bottom:721.725000px;}
.y83{bottom:723.705000px;}
.y227{bottom:724.425000px;}
.y1f3{bottom:726.225000px;}
.y151{bottom:727.305000px;}
.yae{bottom:732.705000px;}
.y17c{bottom:733.965000px;}
.y1bf{bottom:736.485000px;}
.y110{bottom:737.745000px;}
.yd5{bottom:740.625000px;}
.y4f{bottom:741.705000px;}
.y82{bottom:743.505000px;}
.y226{bottom:743.865000px;}
.y1f7{bottom:746.745000px;}
.y150{bottom:747.105000px;}
.yad{bottom:752.505000px;}
.y182{bottom:754.125000px;}
.y1be{bottom:756.285000px;}
.y107{bottom:758.445000px;}
.yd4{bottom:760.425000px;}
.y4e{bottom:761.505000px;}
.y81{bottom:763.305000px;}
.y225{bottom:763.665000px;}
.y1f6{bottom:767.265000px;}
.y14b{bottom:767.625000px;}
.yac{bottom:772.305000px;}
.y181{bottom:774.285000px;}
.y1bd{bottom:776.085000px;}
.y10d{bottom:778.245000px;}
.yd3{bottom:780.225000px;}
.y4d{bottom:781.305000px;}
.y80{bottom:783.105000px;}
.y224{bottom:783.825000px;}
.y14e{bottom:787.425000px;}
.y1f5{bottom:787.965000px;}
.yab{bottom:792.105000px;}
.y180{bottom:794.445000px;}
.y1bc{bottom:795.885000px;}
.y10c{bottom:798.045000px;}
.yd2{bottom:800.025000px;}
.y4c{bottom:801.105000px;}
.y7f{bottom:802.545000px;}
.y223{bottom:803.625000px;}
.y14d{bottom:807.405000px;}
.y1ee{bottom:809.025000px;}
.yaa{bottom:811.905000px;}
.y17f{bottom:814.605000px;}
.y1bb{bottom:815.685000px;}
.y10b{bottom:817.845000px;}
.yd1{bottom:819.465000px;}
.y4b{bottom:820.905000px;}
.y222{bottom:824.685000px;}
.y14a{bottom:829.365000px;}
.y1f1{bottom:829.725000px;}
.y7e{bottom:831.885000px;}
.y174{bottom:835.485000px;}
.y1ba{bottom:835.665000px;}
.y109{bottom:837.645000px;}
.y37{bottom:839.085000px;}
.y4a{bottom:840.525000px;}
.yd0{bottom:840.885000px;}
.y221{bottom:844.485000px;}
.y7d{bottom:851.685000px;}
.y1ea{bottom:852.225000px;}
.y1b9{bottom:855.465000px;}
.y17a{bottom:855.645000px;}
.y149{bottom:857.265000px;}
.y101{bottom:858.345000px;}
.ycf{bottom:860.325000px;}
.y220{bottom:865.410000px;}
.y49{bottom:869.730000px;}
.y7c{bottom:871.530000px;}
.y12{bottom:872.790000px;}
.y1b8{bottom:875.310000px;}
.y179{bottom:876.030000px;}
.y148{bottom:877.470000px;}
.y105{bottom:878.190000px;}
.y21f{bottom:885.210000px;}
.y48{bottom:889.530000px;}
.y7b{bottom:891.330000px;}
.y11{bottom:892.770000px;}
.y1ed{bottom:893.490000px;}
.y1b7{bottom:895.110000px;}
.y178{bottom:896.190000px;}
.y147{bottom:897.450000px;}
.y103{bottom:897.990000px;}
.y21e{bottom:906.090000px;}
.y47{bottom:909.330000px;}
.y7a{bottom:911.130000px;}
.y10{bottom:912.570000px;}
.y1ec{bottom:914.010000px;}
.y1b6{bottom:914.550000px;}
.y177{bottom:916.350000px;}
.y146{bottom:917.250000px;}
.y100{bottom:920.130000px;}
.y21d{bottom:925.890000px;}
.y46{bottom:929.130000px;}
.y79{bottom:930.750000px;}
.y1b1{bottom:930.930000px;}
.ya9{bottom:931.110000px;}
.yf{bottom:932.730000px;}
.y1e8{bottom:934.710000px;}
.y145{bottom:937.050000px;}
.y172{bottom:939.210000px;}
.y21c{bottom:946.950000px;}
.yff{bottom:948.030000px;}
.y45{bottom:949.110000px;}
.ya8{bottom:950.550000px;}
.y78{bottom:950.910000px;}
.y1b5{bottom:953.070000px;}
.ye{bottom:953.790000px;}
.y1e9{bottom:955.230000px;}
.y144{bottom:956.850000px;}
.y21b{bottom:966.750000px;}
.yfe{bottom:967.830000px;}
.y171{bottom:968.550000px;}
.y44{bottom:968.910000px;}
.y77{bottom:970.710000px;}
.y1b4{bottom:975.030000px;}
.y1e4{bottom:975.750000px;}
.y143{bottom:976.650000px;}
.yd{bottom:977.370000px;}
.ya7{bottom:979.710000px;}
.y21a{bottom:986.550000px;}
.yfd{bottom:987.630000px;}
.y43{bottom:988.710000px;}
.y76{bottom:990.510000px;}
.y1e7{bottom:996.450000px;}
.y142{bottom:996.630000px;}
.y1b3{bottom:997.170000px;}
.ya6{bottom:999.510000px;}
.y219{bottom:1006.350000px;}
.yfc{bottom:1007.790000px;}
.y42{bottom:1008.510000px;}
.yc{bottom:1009.050000px;}
.y75{bottom:1010.310000px;}
.y141{bottom:1016.430000px;}
.y1e6{bottom:1016.970000px;}
.ya5{bottom:1019.310000px;}
.y218{bottom:1026.150000px;}
.yfb{bottom:1027.590000px;}
.y41{bottom:1028.310000px;}
.y74{bottom:1029.930000px;}
.y140{bottom:1035.870000px;}
.ya{bottom:1036.050000px;}
.y1e5{bottom:1037.490000px;}
.y1ae{bottom:1039.110000px;}
.ya4{bottom:1039.290000px;}
.y217{bottom:1046.130000px;}
.yfa{bottom:1047.570000px;}
.y40{bottom:1048.290000px;}
.y139{bottom:1052.070000px;}
.y1{bottom:1052.250000px;}
.y1e1{bottom:1058.190000px;}
.ya3{bottom:1058.730000px;}
.y73{bottom:1059.090000px;}
.y216{bottom:1065.930000px;}
.yf9{bottom:1067.370000px;}
.y3f{bottom:1068.090000px;}
.y13f{bottom:1074.210000px;}
.y1e3{bottom:1078.710000px;}
.y72{bottom:1078.890000px;}
.y1ab{bottom:1079.610000px;}
.y215{bottom:1085.730000px;}
.yf8{bottom:1087.170000px;}
.y3e{bottom:1087.890000px;}
.y13e{bottom:1096.350000px;}
.y71{bottom:1098.330000px;}
.y1ad{bottom:1099.410000px;}
.yf7{bottom:1105.530000px;}
.y3d{bottom:1107.690000px;}
.yf6{bottom:1115.610000px;}
.y13d{bottom:1118.490000px;}
.y1ac{bottom:1119.210000px;}
.y1e2{bottom:1119.930000px;}
.y214{bottom:1125.330000px;}
.y3c{bottom:1127.490000px;}
.y1a9{bottom:1139.040000px;}
.y13c{bottom:1140.480000px;}
.y213{bottom:1146.420000px;}
.y3b{bottom:1147.500000px;}
.y138{bottom:1161.180000px;}
.y212{bottom:1166.220000px;}
.y1e0{bottom:1166.940000px;}
.y3a{bottom:1167.300000px;}
.y39{bottom:1195.740000px;}
.he{height:19.800000px;}
.h14{height:19.836000px;}
.h16{height:19.980000px;}
.h21{height:20.160000px;}
.h25{height:20.340000px;}
.h22{height:20.376000px;}
.h20{height:20.700000px;}
.h27{height:20.736000px;}
.h1e{height:21.240000px;}
.h31{height:21.780000px;}
.h2b{height:39.600000px;}
.h2f{height:40.320000px;}
.h28{height:41.976000px;}
.h30{height:42.480000px;}
.ha{height:58.651172px;}
.h29{height:59.038594px;}
.h1b{height:59.400000px;}
.h13{height:59.436000px;}
.h1a{height:59.580000px;}
.h8{height:60.226875px;}
.h24{height:60.660000px;}
.hf{height:61.423863px;}
.hb{height:62.211094px;}
.h1d{height:63.900000px;}
.h6{height:65.010937px;}
.h5{height:65.884219px;}
.h9{height:66.757500px;}
.hd{height:71.613281px;}
.h3{height:73.722656px;}
.h1c{height:79.236000px;}
.h19{height:79.380000px;}
.h2a{height:80.676000px;}
.h2d{height:81.576000px;}
.h2e{height:81.720000px;}
.h32{height:82.080000px;}
.h26{height:87.696000px;}
.h7{height:96.508125px;}
.h11{height:98.971172px;}
.h15{height:99.180000px;}
.h18{height:99.216000px;}
.h23{height:100.800000px;}
.h1f{height:101.556000px;}
.h10{height:103.594219px;}
.h12{height:103.714219px;}
.h4{height:105.060586px;}
.h2c{height:108.180000px;}
.h17{height:108.216000px;}
.h2{height:156.810000px;}
.hc{height:362.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:89.460000px;}
.w26{width:102.600000px;}
.w29{width:102.636000px;}
.w28{width:102.960000px;}
.w27{width:102.996000px;}
.w1e{width:116.640000px;}
.w22{width:117.000000px;}
.w16{width:123.840000px;}
.w1a{width:124.200000px;}
.w2c{width:127.116000px;}
.w2{width:127.656000px;}
.wb{width:130.176000px;}
.w2d{width:137.916000px;}
.w2e{width:142.740000px;}
.w1f{width:144.756000px;}
.w23{width:145.116000px;}
.w1c{width:149.076000px;}
.w20{width:149.436000px;}
.wc{width:150.120000px;}
.w10{width:150.660000px;}
.w17{width:153.390000px;}
.w1b{width:153.750000px;}
.w15{width:153.930000px;}
.w19{width:154.290000px;}
.w4{width:157.140000px;}
.wd{width:161.130000px;}
.w11{width:161.490000px;}
.we{width:167.430000px;}
.w12{width:167.970000px;}
.w24{width:169.920000px;}
.w2a{width:179.670000px;}
.w8{width:184.530000px;}
.w2b{width:191.010000px;}
.w9{width:196.230000px;}
.wf{width:202.350000px;}
.w13{width:202.710000px;}
.w1d{width:205.590000px;}
.w25{width:205.635000px;}
.w21{width:206.130000px;}
.w14{width:250.590000px;}
.w18{width:250.950000px;}
.w6{width:285.555000px;}
.w7{width:494.715000px;}
.w3{width:499.785000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:5.214000px;}
.x6{left:8.100000px;}
.x4{left:34.020000px;}
.x1{left:54.000000px;}
.xb{left:56.699987px;}
.xc{left:81.179987px;}
.xa{left:83.699987px;}
.x7{left:102.285000px;}
.x1a{left:104.976000px;}
.xf{left:108.035987px;}
.x2{left:115.950000px;}
.x5{left:131.805000px;}
.x8{left:133.785000px;}
.x21{left:137.556000px;}
.x15{left:146.376000px;}
.x14{left:160.229987px;}
.xe{left:163.469987px;}
.x3{left:181.650000px;}
.x2a{left:234.750000px;}
.x1b{left:255.630000px;}
.x25{left:273.990000px;}
.x22{left:286.995000px;}
.x17{left:330.915000px;}
.x12{left:331.994987px;}
.xd{left:342.795000px;}
.x1e{left:355.755000px;}
.x29{left:376.995000px;}
.x10{left:380.414987px;}
.x13{left:412.994987px;}
.x1c{left:417.135000px;}
.x2b{left:426.315000px;}
.x11{left:449.894987px;}
.x26{left:480.345000px;}
.x23{left:493.125000px;}
.x1f{left:510.045000px;}
.x18{left:527.145000px;}
.x2c{left:553.785000px;}
.x27{left:582.945000px;}
.x1d{left:585.105000px;}
.x24{left:610.125000px;}
.x19{left:616.605000px;}
.x20{left:634.245000px;}
.x9{left:681.450000px;}
.x28{left:685.950000px;}
.x2d{left:692.070000px;}
@media print{
.v8{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v7{vertical-align:18.560000pt;}
.v6{vertical-align:19.946667pt;}
.v5{vertical-align:35.840000pt;}
.v1{vertical-align:40.960000pt;}
.v3{vertical-align:42.880000pt;}
.v2{vertical-align:60.800000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.183467pt;}
.ls20{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.011520pt;}
.ls1f{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.062720pt;}
.ls19{letter-spacing:0.094933pt;}
.lsd{letter-spacing:0.133120pt;}
.ls21{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.256000pt;}
.ls22{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.359040pt;}
.ls1d{letter-spacing:0.480000pt;}
.lsa{letter-spacing:0.672000pt;}
.lsc{letter-spacing:0.736000pt;}
.ls23{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.821333pt;}
.ls24{letter-spacing:0.871040pt;}
.ls2{letter-spacing:1.232640pt;}
.ls14{letter-spacing:3.337600pt;}
.ls16{letter-spacing:3.350400pt;}
.ls15{letter-spacing:14.347520pt;}
.ls26{letter-spacing:14.672640pt;}
.ls1c{letter-spacing:14.719360pt;}
.ls3{letter-spacing:21.253120pt;}
.ls4{letter-spacing:22.016000pt;}
.ls13{letter-spacing:39.120640pt;}
.ls1{letter-spacing:40.912640pt;}
.ls25{letter-spacing:41.040640pt;}
.ls5{letter-spacing:56.320000pt;}
.ls10{letter-spacing:56.912640pt;}
.ls11{letter-spacing:57.040640pt;}
.ls17{letter-spacing:136.054187pt;}
.ls1b{letter-spacing:193.014187pt;}
.ws9{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.952000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws8{word-spacing:-14.101333pt;}
.ws3{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.096533pt;}
.wse{word-spacing:-12.960000pt;}
.wsd{word-spacing:-11.697920pt;}
.wsa{word-spacing:-11.686400pt;}
.ws10{word-spacing:-8.640000pt;}
.wsb{word-spacing:-0.167040pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:0.472960pt;}
._11{margin-left:-3.491200pt;}
._b{margin-left:-2.177920pt;}
._2{margin-left:-1.024000pt;}
._0{width:1.054080pt;}
._a{width:2.133120pt;}
._9{width:3.366187pt;}
._8{width:4.654933pt;}
._7{width:5.577600pt;}
._5{width:6.480640pt;}
._6{width:7.531520pt;}
._10{width:8.554880pt;}
._d{width:9.592960pt;}
._c{width:10.570880pt;}
._4{width:11.739520pt;}
._13{width:12.698667pt;}
._12{width:16.229120pt;}
._f{width:19.078400pt;}
._e{width:20.132480pt;}
._17{width:27.197440pt;}
._19{width:28.791040pt;}
._3{width:34.966400pt;}
._18{width:54.607360pt;}
._1b{width:58.963200pt;}
._1c{width:66.346880pt;}
._1a{width:72.986880pt;}
._15{width:77.608320pt;}
._14{width:80.104960pt;}
._1d{width:91.419520pt;}
._1e{width:109.488640pt;}
._16{width:127.328640pt;}
._1{width:977.696000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.440000pt;}
.y38{bottom:5.120000pt;}
.y106{bottom:5.160000pt;}
.y114{bottom:5.280000pt;}
.y1a4{bottom:5.434667pt;}
.y104{bottom:5.440000pt;}
.y11a{bottom:5.466667pt;}
.y12a{bottom:5.480000pt;}
.y135{bottom:5.594667pt;}
.y10a{bottom:5.600000pt;}
.y173{bottom:5.760000pt;}
.y17b{bottom:5.800000pt;}
.y1aa{bottom:6.080000pt;}
.y1f2{bottom:6.240000pt;}
.y1f0{bottom:6.400000pt;}
.y7{bottom:7.360000pt;}
.y36{bottom:10.080000pt;}
.y1b0{bottom:14.240000pt;}
.y185{bottom:14.720000pt;}
.y19b{bottom:15.080000pt;}
.y168{bottom:16.320000pt;}
.y18b{bottom:18.106667pt;}
.y1af{bottom:22.720000pt;}
.y133{bottom:23.040000pt;}
.y102{bottom:23.080000pt;}
.y14c{bottom:23.200000pt;}
.y1ef{bottom:24.000000pt;}
.y35{bottom:27.840000pt;}
.y127{bottom:31.840000pt;}
.y163{bottom:31.880000pt;}
.y1a6{bottom:32.000000pt;}
.y6{bottom:32.160000pt;}
.y184{bottom:32.480000pt;}
.y17e{bottom:32.640000pt;}
.y1eb{bottom:32.680000pt;}
.y1f4{bottom:32.800000pt;}
.y176{bottom:33.000000pt;}
.y167{bottom:33.920000pt;}
.y18a{bottom:35.706667pt;}
.y13b{bottom:36.000000pt;}
.y108{bottom:40.640000pt;}
.y155{bottom:40.666667pt;}
.y10f{bottom:40.800000pt;}
.y1b2{bottom:44.800000pt;}
.y116{bottom:44.826667pt;}
.y34{bottom:45.440000pt;}
.y126{bottom:49.600000pt;}
.y17d{bottom:50.240000pt;}
.y175{bottom:50.600000pt;}
.yb{bottom:50.720000pt;}
.y5{bottom:51.680000pt;}
.y189{bottom:53.306667pt;}
.y13a{bottom:53.600000pt;}
.y33{bottom:62.720000pt;}
.y4{bottom:72.826667pt;}
.y1df{bottom:74.592000pt;}
.y132{bottom:75.552000pt;}
.y70{bottom:77.312000pt;}
.yce{bottom:78.912000pt;}
.y1a5{bottom:79.392000pt;}
.y32{bottom:80.320000pt;}
.ya2{bottom:80.512000pt;}
.yf5{bottom:85.152000pt;}
.y26{bottom:89.472000pt;}
.y1de{bottom:92.352000pt;}
.y137{bottom:93.152000pt;}
.y6f{bottom:94.912000pt;}
.y170{bottom:95.232000pt;}
.ycd{bottom:96.512000pt;}
.y9{bottom:96.666667pt;}
.y1a8{bottom:97.152000pt;}
.y31{bottom:97.946667pt;}
.ya1{bottom:98.272000pt;}
.yf4{bottom:102.752000pt;}
.y3{bottom:105.146667pt;}
.y25{bottom:107.072000pt;}
.y1dd{bottom:109.952000pt;}
.y136{bottom:110.752000pt;}
.y6e{bottom:112.512000pt;}
.y211{bottom:112.672000pt;}
.y16f{bottom:112.832000pt;}
.ycc{bottom:114.272000pt;}
.y1a7{bottom:114.752000pt;}
.ya0{bottom:115.872000pt;}
.y30{bottom:116.026667pt;}
.y8{bottom:116.186667pt;}
.yf3{bottom:120.352000pt;}
.y24{bottom:124.672000pt;}
.y1dc{bottom:127.552000pt;}
.y134{bottom:128.352000pt;}
.y6d{bottom:130.272000pt;}
.y16e{bottom:130.592000pt;}
.ycb{bottom:131.872000pt;}
.y1a3{bottom:132.352000pt;}
.y9f{bottom:133.466667pt;}
.y2f{bottom:133.626667pt;}
.yf2{bottom:138.106667pt;}
.y23{bottom:142.426667pt;}
.y1db{bottom:145.146667pt;}
.y12d{bottom:146.746667pt;}
.y6c{bottom:147.866667pt;}
.y16d{bottom:148.186667pt;}
.yca{bottom:149.466667pt;}
.y241{bottom:149.786667pt;}
.y1a2{bottom:149.946667pt;}
.y2e{bottom:150.906667pt;}
.y9e{bottom:151.066667pt;}
.yf1{bottom:152.826667pt;}
.y22{bottom:160.026667pt;}
.yf0{bottom:161.786667pt;}
.y1da{bottom:162.746667pt;}
.y131{bottom:164.346667pt;}
.y6b{bottom:165.466667pt;}
.y16c{bottom:165.786667pt;}
.yc9{bottom:166.746667pt;}
.y240{bottom:167.706667pt;}
.y19e{bottom:168.346667pt;}
.y2d{bottom:168.506667pt;}
.y9d{bottom:168.666667pt;}
.y21{bottom:177.626667pt;}
.y1d9{bottom:180.506667pt;}
.y130{bottom:181.946667pt;}
.y6a{bottom:183.066667pt;}
.y16b{bottom:183.386667pt;}
.yc8{bottom:184.346667pt;}
.y23f{bottom:185.306667pt;}
.y1a1{bottom:185.946667pt;}
.y2c{bottom:186.106667pt;}
.y9c{bottom:186.426667pt;}
.yef{bottom:189.946667pt;}
.y20{bottom:195.226667pt;}
.y1d8{bottom:198.106667pt;}
.y12f{bottom:199.546667pt;}
.y69{bottom:200.666667pt;}
.y210{bottom:200.826667pt;}
.yc7{bottom:202.426667pt;}
.y23e{bottom:203.066667pt;}
.y1a0{bottom:203.546667pt;}
.y2b{bottom:203.866667pt;}
.y9b{bottom:204.026667pt;}
.yee{bottom:207.546667pt;}
.y1f{bottom:212.826667pt;}
.y166{bottom:215.226667pt;}
.y1d7{bottom:215.706667pt;}
.y12e{bottom:217.306667pt;}
.y20f{bottom:218.106667pt;}
.y68{bottom:218.426667pt;}
.yc6{bottom:220.026667pt;}
.y23d{bottom:220.666667pt;}
.y19f{bottom:221.146667pt;}
.y2a{bottom:221.466667pt;}
.y9a{bottom:221.626667pt;}
.yed{bottom:225.146667pt;}
.y1e{bottom:230.586667pt;}
.y1d6{bottom:233.306667pt;}
.y16a{bottom:234.906667pt;}
.y125{bottom:235.546667pt;}
.y67{bottom:236.026667pt;}
.yc5{bottom:237.626667pt;}
.y23c{bottom:238.266667pt;}
.y19d{bottom:238.746667pt;}
.y29{bottom:239.066667pt;}
.y99{bottom:239.226667pt;}
.yec{bottom:242.746667pt;}
.y20e{bottom:244.026667pt;}
.y1d{bottom:248.186667pt;}
.y1d5{bottom:251.866667pt;}
.y12c{bottom:253.146667pt;}
.y66{bottom:253.626667pt;}
.y169{bottom:254.426667pt;}
.yc4{bottom:255.226667pt;}
.y23b{bottom:255.866667pt;}
.y19c{bottom:256.506667pt;}
.y98{bottom:256.826667pt;}
.yeb{bottom:260.346667pt;}
.y20d{bottom:261.626667pt;}
.y1c{bottom:265.786667pt;}
.y1d4{bottom:270.586667pt;}
.y12b{bottom:270.746667pt;}
.y65{bottom:271.226667pt;}
.yc3{bottom:272.826667pt;}
.y23a{bottom:273.466667pt;}
.y97{bottom:274.586667pt;}
.y19a{bottom:276.026667pt;}
.yea{bottom:278.106667pt;}
.y20c{bottom:279.226667pt;}
.y1b{bottom:283.386667pt;}
.y1d3{bottom:288.186667pt;}
.y129{bottom:288.506667pt;}
.y64{bottom:288.826667pt;}
.y165{bottom:290.426667pt;}
.yc2{bottom:290.586667pt;}
.y239{bottom:291.266667pt;}
.y96{bottom:292.226667pt;}
.ye9{bottom:295.746667pt;}
.y20b{bottom:297.026667pt;}
.y1a{bottom:301.026667pt;}
.y128{bottom:306.146667pt;}
.y63{bottom:306.626667pt;}
.y1d2{bottom:306.786667pt;}
.y164{bottom:308.066667pt;}
.yc1{bottom:308.226667pt;}
.y238{bottom:308.866667pt;}
.y95{bottom:309.506667pt;}
.y28{bottom:309.946667pt;}
.ye8{bottom:313.346667pt;}
.y20a{bottom:314.626667pt;}
.y19{bottom:318.786667pt;}
.y199{bottom:320.546667pt;}
.y62{bottom:324.226667pt;}
.y1d1{bottom:325.346667pt;}
.y124{bottom:325.666667pt;}
.yc0{bottom:325.826667pt;}
.y237{bottom:326.466667pt;}
.ye7{bottom:330.946667pt;}
.y209{bottom:332.226667pt;}
.y94{bottom:335.426667pt;}
.y18{bottom:336.386667pt;}
.y198{bottom:338.146667pt;}
.y61{bottom:341.826667pt;}
.ybf{bottom:343.426667pt;}
.y1d0{bottom:343.906667pt;}
.y160{bottom:344.066667pt;}
.ye6{bottom:348.546667pt;}
.y208{bottom:349.826667pt;}
.y123{bottom:350.466667pt;}
.y93{bottom:353.026667pt;}
.y17{bottom:353.986667pt;}
.y60{bottom:359.426667pt;}
.ybe{bottom:361.026667pt;}
.y162{bottom:361.666667pt;}
.y1cf{bottom:362.626667pt;}
.y197{bottom:364.066667pt;}
.ye5{bottom:366.146667pt;}
.y207{bottom:367.426667pt;}
.y122{bottom:368.546667pt;}
.y92{bottom:370.786667pt;}
.y16{bottom:371.586667pt;}
.y5f{bottom:377.026667pt;}
.ybd{bottom:378.786667pt;}
.y161{bottom:379.266667pt;}
.y236{bottom:379.426667pt;}
.y1ce{bottom:380.226667pt;}
.y196{bottom:381.666667pt;}
.ye4{bottom:383.906667pt;}
.y206{bottom:385.186667pt;}
.y121{bottom:386.146667pt;}
.y91{bottom:388.386667pt;}
.y15{bottom:388.866667pt;}
.y5e{bottom:394.786667pt;}
.ybc{bottom:396.386667pt;}
.y235{bottom:397.026667pt;}
.y15d{bottom:397.506667pt;}
.y1cd{bottom:397.826667pt;}
.y195{bottom:399.426667pt;}
.ye3{bottom:401.506667pt;}
.y205{bottom:402.786667pt;}
.y120{bottom:403.746667pt;}
.y90{bottom:405.986667pt;}
.y14{bottom:406.626667pt;}
.y5d{bottom:412.386667pt;}
.ybb{bottom:413.986667pt;}
.y234{bottom:414.626667pt;}
.y15f{bottom:415.266667pt;}
.y1cc{bottom:415.426667pt;}
.y194{bottom:417.026667pt;}
.ye2{bottom:419.106667pt;}
.y204{bottom:420.386667pt;}
.y11f{bottom:421.346667pt;}
.y8f{bottom:423.586667pt;}
.y13{bottom:424.546667pt;}
.y5c{bottom:429.986667pt;}
.yba{bottom:431.586667pt;}
.y233{bottom:432.226667pt;}
.y15e{bottom:432.866667pt;}
.y1cb{bottom:433.026667pt;}
.y193{bottom:434.626667pt;}
.ye1{bottom:436.386667pt;}
.y203{bottom:437.986667pt;}
.y11e{bottom:438.946667pt;}
.y8e{bottom:441.186667pt;}
.y27{bottom:441.346667pt;}
.y5b{bottom:447.586667pt;}
.yb9{bottom:449.186667pt;}
.y232{bottom:449.826667pt;}
.y15a{bottom:451.106667pt;}
.y1ca{bottom:451.586667pt;}
.y192{bottom:452.226667pt;}
.y202{bottom:455.586667pt;}
.y11d{bottom:456.706667pt;}
.y8d{bottom:458.946667pt;}
.ye0{bottom:462.306667pt;}
.y5a{bottom:465.186667pt;}
.yb8{bottom:466.946667pt;}
.y231{bottom:467.586667pt;}
.y15c{bottom:468.706667pt;}
.y191{bottom:469.826667pt;}
.y1c9{bottom:470.306667pt;}
.y201{bottom:473.346667pt;}
.y11c{bottom:473.986667pt;}
.y8c{bottom:476.546667pt;}
.ydf{bottom:480.066667pt;}
.y59{bottom:482.946667pt;}
.yb7{bottom:484.546667pt;}
.y230{bottom:485.186667pt;}
.y15b{bottom:486.306667pt;}
.y190{bottom:487.586667pt;}
.y1c8{bottom:487.906667pt;}
.y115{bottom:488.386667pt;}
.y200{bottom:490.946667pt;}
.y8b{bottom:494.146667pt;}
.yde{bottom:497.666667pt;}
.y58{bottom:500.546667pt;}
.yb6{bottom:502.146667pt;}
.y22f{bottom:502.786667pt;}
.y154{bottom:504.706667pt;}
.y18f{bottom:504.866667pt;}
.y1c7{bottom:505.506667pt;}
.y11b{bottom:508.066667pt;}
.y1ff{bottom:508.546667pt;}
.y8a{bottom:511.746667pt;}
.ydd{bottom:515.266667pt;}
.y57{bottom:518.146667pt;}
.y188{bottom:519.266667pt;}
.yb5{bottom:519.746667pt;}
.y22e{bottom:520.386667pt;}
.y159{bottom:522.306667pt;}
.y1c6{bottom:523.106667pt;}
.y1fe{bottom:526.146667pt;}
.y119{bottom:527.746667pt;}
.y89{bottom:529.373333pt;}
.ydc{bottom:532.893333pt;}
.y56{bottom:535.773333pt;}
.yb4{bottom:537.053333pt;}
.y22d{bottom:538.013333pt;}
.y18e{bottom:539.773333pt;}
.y158{bottom:539.933333pt;}
.y1c5{bottom:540.413333pt;}
.y1fd{bottom:543.773333pt;}
.y88{bottom:547.133333pt;}
.y118{bottom:547.293333pt;}
.ydb{bottom:550.173333pt;}
.y55{bottom:553.373333pt;}
.y22c{bottom:555.773333pt;}
.y157{bottom:557.533333pt;}
.y18d{bottom:559.453333pt;}
.y1fc{bottom:561.533333pt;}
.yb3{bottom:563.133333pt;}
.y87{bottom:564.733333pt;}
.y1c4{bottom:566.493333pt;}
.y117{bottom:566.973333pt;}
.yda{bottom:569.213333pt;}
.y54{bottom:571.133333pt;}
.y22b{bottom:573.373333pt;}
.y156{bottom:575.293333pt;}
.y1fb{bottom:579.133333pt;}
.y18c{bottom:579.293333pt;}
.yb2{bottom:580.733333pt;}
.y86{bottom:582.333333pt;}
.y1c3{bottom:584.093333pt;}
.y10e{bottom:585.213333pt;}
.yd9{bottom:586.813333pt;}
.y53{bottom:588.733333pt;}
.y22a{bottom:590.973333pt;}
.y14f{bottom:593.533333pt;}
.y1fa{bottom:596.733333pt;}
.y183{bottom:597.853333pt;}
.yb1{bottom:598.333333pt;}
.y85{bottom:599.613333pt;}
.y1c2{bottom:601.693333pt;}
.y113{bottom:602.973333pt;}
.yd8{bottom:604.413333pt;}
.y52{bottom:606.333333pt;}
.y229{bottom:608.573333pt;}
.y153{bottom:611.133333pt;}
.y1f9{bottom:614.333333pt;}
.y187{bottom:615.773333pt;}
.yb0{bottom:615.933333pt;}
.y1c1{bottom:619.293333pt;}
.y112{bottom:620.573333pt;}
.yd7{bottom:621.693333pt;}
.y51{bottom:623.933333pt;}
.y84{bottom:625.533333pt;}
.y228{bottom:626.173333pt;}
.y1f8{bottom:627.133333pt;}
.y152{bottom:628.733333pt;}
.yaf{bottom:633.533333pt;}
.y186{bottom:633.853333pt;}
.y1c0{bottom:636.893333pt;}
.y111{bottom:638.173333pt;}
.yd6{bottom:640.573333pt;}
.y50{bottom:641.533333pt;}
.y83{bottom:643.293333pt;}
.y227{bottom:643.933333pt;}
.y1f3{bottom:645.533333pt;}
.y151{bottom:646.493333pt;}
.yae{bottom:651.293333pt;}
.y17c{bottom:652.413333pt;}
.y1bf{bottom:654.653333pt;}
.y110{bottom:655.773333pt;}
.yd5{bottom:658.333333pt;}
.y4f{bottom:659.293333pt;}
.y82{bottom:660.893333pt;}
.y226{bottom:661.213333pt;}
.y1f7{bottom:663.773333pt;}
.y150{bottom:664.093333pt;}
.yad{bottom:668.893333pt;}
.y182{bottom:670.333333pt;}
.y1be{bottom:672.253333pt;}
.y107{bottom:674.173333pt;}
.yd4{bottom:675.933333pt;}
.y4e{bottom:676.893333pt;}
.y81{bottom:678.493333pt;}
.y225{bottom:678.813333pt;}
.y1f6{bottom:682.013333pt;}
.y14b{bottom:682.333333pt;}
.yac{bottom:686.493333pt;}
.y181{bottom:688.253333pt;}
.y1bd{bottom:689.853333pt;}
.y10d{bottom:691.773333pt;}
.yd3{bottom:693.533333pt;}
.y4d{bottom:694.493333pt;}
.y80{bottom:696.093333pt;}
.y224{bottom:696.733333pt;}
.y14e{bottom:699.933333pt;}
.y1f5{bottom:700.413333pt;}
.yab{bottom:704.093333pt;}
.y180{bottom:706.173333pt;}
.y1bc{bottom:707.453333pt;}
.y10c{bottom:709.373333pt;}
.yd2{bottom:711.133333pt;}
.y4c{bottom:712.093333pt;}
.y7f{bottom:713.373333pt;}
.y223{bottom:714.333333pt;}
.y14d{bottom:717.693333pt;}
.y1ee{bottom:719.133333pt;}
.yaa{bottom:721.693333pt;}
.y17f{bottom:724.093333pt;}
.y1bb{bottom:725.053333pt;}
.y10b{bottom:726.973333pt;}
.yd1{bottom:728.413333pt;}
.y4b{bottom:729.693333pt;}
.y222{bottom:733.053333pt;}
.y14a{bottom:737.213333pt;}
.y1f1{bottom:737.533333pt;}
.y7e{bottom:739.453333pt;}
.y174{bottom:742.653333pt;}
.y1ba{bottom:742.813333pt;}
.y109{bottom:744.573333pt;}
.y37{bottom:745.853333pt;}
.y4a{bottom:747.133333pt;}
.yd0{bottom:747.453333pt;}
.y221{bottom:750.653333pt;}
.y7d{bottom:757.053333pt;}
.y1ea{bottom:757.533333pt;}
.y1b9{bottom:760.413333pt;}
.y17a{bottom:760.573333pt;}
.y149{bottom:762.013333pt;}
.y101{bottom:762.973333pt;}
.ycf{bottom:764.733333pt;}
.y220{bottom:769.253333pt;}
.y49{bottom:773.093333pt;}
.y7c{bottom:774.693333pt;}
.y12{bottom:775.813333pt;}
.y1b8{bottom:778.053333pt;}
.y179{bottom:778.693333pt;}
.y148{bottom:779.973333pt;}
.y105{bottom:780.613333pt;}
.y21f{bottom:786.853333pt;}
.y48{bottom:790.693333pt;}
.y7b{bottom:792.293333pt;}
.y11{bottom:793.573333pt;}
.y1ed{bottom:794.213333pt;}
.y1b7{bottom:795.653333pt;}
.y178{bottom:796.613333pt;}
.y147{bottom:797.733333pt;}
.y103{bottom:798.213333pt;}
.y21e{bottom:805.413333pt;}
.y47{bottom:808.293333pt;}
.y7a{bottom:809.893333pt;}
.y10{bottom:811.173333pt;}
.y1ec{bottom:812.453333pt;}
.y1b6{bottom:812.933333pt;}
.y177{bottom:814.533333pt;}
.y146{bottom:815.333333pt;}
.y100{bottom:817.893333pt;}
.y21d{bottom:823.013333pt;}
.y46{bottom:825.893333pt;}
.y79{bottom:827.333333pt;}
.y1b1{bottom:827.493333pt;}
.ya9{bottom:827.653333pt;}
.yf{bottom:829.093333pt;}
.y1e8{bottom:830.853333pt;}
.y145{bottom:832.933333pt;}
.y172{bottom:834.853333pt;}
.y21c{bottom:841.733333pt;}
.yff{bottom:842.693333pt;}
.y45{bottom:843.653333pt;}
.ya8{bottom:844.933333pt;}
.y78{bottom:845.253333pt;}
.y1b5{bottom:847.173333pt;}
.ye{bottom:847.813333pt;}
.y1e9{bottom:849.093333pt;}
.y144{bottom:850.533333pt;}
.y21b{bottom:859.333333pt;}
.yfe{bottom:860.293333pt;}
.y171{bottom:860.933333pt;}
.y44{bottom:861.253333pt;}
.y77{bottom:862.853333pt;}
.y1b4{bottom:866.693333pt;}
.y1e4{bottom:867.333333pt;}
.y143{bottom:868.133333pt;}
.yd{bottom:868.773333pt;}
.ya7{bottom:870.853333pt;}
.y21a{bottom:876.933333pt;}
.yfd{bottom:877.893333pt;}
.y43{bottom:878.853333pt;}
.y76{bottom:880.453333pt;}
.y1e7{bottom:885.733333pt;}
.y142{bottom:885.893333pt;}
.y1b3{bottom:886.373333pt;}
.ya6{bottom:888.453333pt;}
.y219{bottom:894.533333pt;}
.yfc{bottom:895.813333pt;}
.y42{bottom:896.453333pt;}
.yc{bottom:896.933333pt;}
.y75{bottom:898.053333pt;}
.y141{bottom:903.493333pt;}
.y1e6{bottom:903.973333pt;}
.ya5{bottom:906.053333pt;}
.y218{bottom:912.133333pt;}
.yfb{bottom:913.413333pt;}
.y41{bottom:914.053333pt;}
.y74{bottom:915.493333pt;}
.y140{bottom:920.773333pt;}
.ya{bottom:920.933333pt;}
.y1e5{bottom:922.213333pt;}
.y1ae{bottom:923.653333pt;}
.ya4{bottom:923.813333pt;}
.y217{bottom:929.893333pt;}
.yfa{bottom:931.173333pt;}
.y40{bottom:931.813333pt;}
.y139{bottom:935.173333pt;}
.y1{bottom:935.333333pt;}
.y1e1{bottom:940.613333pt;}
.ya3{bottom:941.093333pt;}
.y73{bottom:941.413333pt;}
.y216{bottom:947.493333pt;}
.yf9{bottom:948.773333pt;}
.y3f{bottom:949.413333pt;}
.y13f{bottom:954.853333pt;}
.y1e3{bottom:958.853333pt;}
.y72{bottom:959.013333pt;}
.y1ab{bottom:959.653333pt;}
.y215{bottom:965.093333pt;}
.yf8{bottom:966.373333pt;}
.y3e{bottom:967.013333pt;}
.y13e{bottom:974.533333pt;}
.y71{bottom:976.293333pt;}
.y1ad{bottom:977.253333pt;}
.yf7{bottom:982.693333pt;}
.y3d{bottom:984.613333pt;}
.yf6{bottom:991.653333pt;}
.y13d{bottom:994.213333pt;}
.y1ac{bottom:994.853333pt;}
.y1e2{bottom:995.493333pt;}
.y214{bottom:1000.293333pt;}
.y3c{bottom:1002.213333pt;}
.y1a9{bottom:1012.480000pt;}
.y13c{bottom:1013.760000pt;}
.y213{bottom:1019.040000pt;}
.y3b{bottom:1020.000000pt;}
.y138{bottom:1032.160000pt;}
.y212{bottom:1036.640000pt;}
.y1e0{bottom:1037.280000pt;}
.y3a{bottom:1037.600000pt;}
.y39{bottom:1062.880000pt;}
.he{height:17.600000pt;}
.h14{height:17.632000pt;}
.h16{height:17.760000pt;}
.h21{height:17.920000pt;}
.h25{height:18.080000pt;}
.h22{height:18.112000pt;}
.h20{height:18.400000pt;}
.h27{height:18.432000pt;}
.h1e{height:18.880000pt;}
.h31{height:19.360000pt;}
.h2b{height:35.200000pt;}
.h2f{height:35.840000pt;}
.h28{height:37.312000pt;}
.h30{height:37.760000pt;}
.ha{height:52.134375pt;}
.h29{height:52.478750pt;}
.h1b{height:52.800000pt;}
.h13{height:52.832000pt;}
.h1a{height:52.960000pt;}
.h8{height:53.535000pt;}
.h24{height:53.920000pt;}
.hf{height:54.598989pt;}
.hb{height:55.298750pt;}
.h1d{height:56.800000pt;}
.h6{height:57.787500pt;}
.h5{height:58.563750pt;}
.h9{height:59.340000pt;}
.hd{height:63.656250pt;}
.h3{height:65.531250pt;}
.h1c{height:70.432000pt;}
.h19{height:70.560000pt;}
.h2a{height:71.712000pt;}
.h2d{height:72.512000pt;}
.h2e{height:72.640000pt;}
.h32{height:72.960000pt;}
.h26{height:77.952000pt;}
.h7{height:85.785000pt;}
.h11{height:87.974375pt;}
.h15{height:88.160000pt;}
.h18{height:88.192000pt;}
.h23{height:89.600000pt;}
.h1f{height:90.272000pt;}
.h10{height:92.083750pt;}
.h12{height:92.190417pt;}
.h4{height:93.387187pt;}
.h2c{height:96.160000pt;}
.h17{height:96.192000pt;}
.h2{height:139.386667pt;}
.hc{height:322.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:79.520000pt;}
.w26{width:91.200000pt;}
.w29{width:91.232000pt;}
.w28{width:91.520000pt;}
.w27{width:91.552000pt;}
.w1e{width:103.680000pt;}
.w22{width:104.000000pt;}
.w16{width:110.080000pt;}
.w1a{width:110.400000pt;}
.w2c{width:112.992000pt;}
.w2{width:113.472000pt;}
.wb{width:115.712000pt;}
.w2d{width:122.592000pt;}
.w2e{width:126.880000pt;}
.w1f{width:128.672000pt;}
.w23{width:128.992000pt;}
.w1c{width:132.512000pt;}
.w20{width:132.832000pt;}
.wc{width:133.440000pt;}
.w10{width:133.920000pt;}
.w17{width:136.346667pt;}
.w1b{width:136.666667pt;}
.w15{width:136.826667pt;}
.w19{width:137.146667pt;}
.w4{width:139.680000pt;}
.wd{width:143.226667pt;}
.w11{width:143.546667pt;}
.we{width:148.826667pt;}
.w12{width:149.306667pt;}
.w24{width:151.040000pt;}
.w2a{width:159.706667pt;}
.w8{width:164.026667pt;}
.w2b{width:169.786667pt;}
.w9{width:174.426667pt;}
.wf{width:179.866667pt;}
.w13{width:180.186667pt;}
.w1d{width:182.746667pt;}
.w25{width:182.786667pt;}
.w21{width:183.226667pt;}
.w14{width:222.746667pt;}
.w18{width:223.066667pt;}
.w6{width:253.826667pt;}
.w7{width:439.746667pt;}
.w3{width:444.253333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:4.634667pt;}
.x6{left:7.200000pt;}
.x4{left:30.240000pt;}
.x1{left:48.000000pt;}
.xb{left:50.399988pt;}
.xc{left:72.159988pt;}
.xa{left:74.399988pt;}
.x7{left:90.920000pt;}
.x1a{left:93.312000pt;}
.xf{left:96.031988pt;}
.x2{left:103.066667pt;}
.x5{left:117.160000pt;}
.x8{left:118.920000pt;}
.x21{left:122.272000pt;}
.x15{left:130.112000pt;}
.x14{left:142.426655pt;}
.xe{left:145.306655pt;}
.x3{left:161.466667pt;}
.x2a{left:208.666667pt;}
.x1b{left:227.226667pt;}
.x25{left:243.546667pt;}
.x22{left:255.106667pt;}
.x17{left:294.146667pt;}
.x12{left:295.106655pt;}
.xd{left:304.706667pt;}
.x1e{left:316.226667pt;}
.x29{left:335.106667pt;}
.x10{left:338.146655pt;}
.x13{left:367.106655pt;}
.x1c{left:370.786667pt;}
.x2b{left:378.946667pt;}
.x11{left:399.906655pt;}
.x26{left:426.973333pt;}
.x23{left:438.333333pt;}
.x1f{left:453.373333pt;}
.x18{left:468.573333pt;}
.x2c{left:492.253333pt;}
.x27{left:518.173333pt;}
.x1d{left:520.093333pt;}
.x24{left:542.333333pt;}
.x19{left:548.093333pt;}
.x20{left:563.773333pt;}
.x9{left:605.733333pt;}
.x28{left:609.733333pt;}
.x2d{left:615.173333pt;}
}




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