
    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_6ed9068d0626aed1f9c58e23.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_bbabb93049d90024f9ddfd71.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.006000;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_4ac99326dd3f0002a9241dc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_0bec820aba0bdecdda4cac11.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.005000;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_43cb59b701d7213b14117cbe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_3317f6d85e27f8dba398ce61.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.892000;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_4f49de81ab46c2ace39e133d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_c1d6ed77c69bcf102e2d324c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.676270;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_fc362c7c83f595e38ec118f9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006000;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_8b79456cee0e5b699867d3c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.184000;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_af3d5ad06adf51b6fe94a9b8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_384a60734f2f98df22d07969.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006000;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_b2b993f7836b58f4495fb594.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006000;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:ffe;src:url('chunks/assets/font_8c3f0999e65fec0b56e9bb43.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006000;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:fff;src:url('chunks/assets/font_5855d06603cfcdc344ed83b3.woff2')format("woff");}.fff{font-family:fff;line-height:1.006000;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:ff10;src:url('chunks/assets/font_d57f3a833dedb3086801d7d5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.005000;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:ff11;src:url('chunks/assets/font_498057dc38a1baeed9867a0d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:14.820000px;}
.v2{vertical-align:17.982600px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.024000px;}
.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:-54.000000px;}
.wsd{word-spacing:-36.000000px;}
.ws0{word-spacing:-14.040000px;}
.ws5{word-spacing:-13.500000px;}
.wsa{word-spacing:-12.480000px;}
.ws4{word-spacing:-11.700000px;}
.ws7{word-spacing:-11.250000px;}
.wsb{word-spacing:-9.360000px;}
.ws6{word-spacing:-7.870500px;}
.ws8{word-spacing:-6.558750px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:5.868000px;}
.wsc{word-spacing:26.460000px;}
.ws2{word-spacing:341.964000px;}
.ws1{word-spacing:387.564000px;}
._6{margin-left:-13.680600px;}
._11{margin-left:-12.519600px;}
._20{margin-left:-11.262600px;}
._2c{margin-left:-7.033200px;}
._1a{margin-left:-5.994000px;}
._2d{margin-left:-4.956000px;}
._1b{margin-left:-3.942000px;}
._8{margin-left:-2.592000px;}
._7{margin-left:-1.350000px;}
._f{width:1.139400px;}
._29{width:2.808000px;}
._1f{width:4.500000px;}
._23{width:5.940000px;}
._1c{width:7.128000px;}
._19{width:8.802000px;}
._1d{width:10.098000px;}
._4{width:11.826000px;}
._27{width:12.888000px;}
._b{width:14.526000px;}
._e{width:15.616200px;}
._9{width:16.740000px;}
._10{width:18.252000px;}
._5{width:19.872000px;}
._17{width:21.438000px;}
._0{width:22.524000px;}
._d{width:23.922000px;}
._14{width:25.056000px;}
._a{width:26.244000px;}
._13{width:27.378000px;}
._18{width:29.106000px;}
._c{width:30.564000px;}
._21{width:31.806000px;}
._16{width:33.102000px;}
._15{width:34.398000px;}
._1e{width:35.964000px;}
._12{width:37.584000px;}
._25{width:38.988000px;}
._22{width:41.850000px;}
._24{width:42.984000px;}
._28{width:47.466000px;}
._26{width:48.870000px;}
._2a{width:51.516000px;}
._2b{width:52.650000px;}
._2e{width:62.460000px;}
._2f{width:67.512000px;}
._1{width:72.000000px;}
._3{width:81.012000px;}
._30{width:175.500000px;}
._2{width:242.604000px;}
.fc7{color:transparent;}
.fc6{color:rgb(0,68,148);}
.fc1{color:rgb(0,68,148);}
.fc5{color:rgb(35,31,32);}
.fc4{color:rgb(35,31,32);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,51);}
.fsc{font-size:26.235000px;}
.fsb{font-size:31.482000px;}
.fs7{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsf{font-size:63.000000px;}
.fs3{font-size:78.000000px;}
.fs8{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fse{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:16.725000px;}
.y1f{bottom:16.740000px;}
.y2f{bottom:45.135000px;}
.y20{bottom:46.155000px;}
.y31{bottom:61.500000px;}
.y30{bottom:70.185000px;}
.yfb{bottom:87.355950px;}
.y103{bottom:87.390300px;}
.y76{bottom:89.386350px;}
.yac{bottom:89.610750px;}
.y1b8{bottom:99.305850px;}
.y137{bottom:99.591000px;}
.y130{bottom:99.732750px;}
.y1b2{bottom:100.182750px;}
.y102{bottom:100.890300px;}
.yab{bottom:103.110750px;}
.yfa{bottom:103.855950px;}
.y142{bottom:104.091000px;}
.y148{bottom:105.355950px;}
.y156{bottom:105.555600px;}
.y75{bottom:105.886350px;}
.y1b7{bottom:112.805850px;}
.y136{bottom:113.091000px;}
.y12f{bottom:113.232750px;}
.y101{bottom:114.390300px;}
.y1b1{bottom:116.682750px;}
.y141{bottom:117.591000px;}
.y260{bottom:117.735000px;}
.y155{bottom:119.055600px;}
.yf9{bottom:120.355950px;}
.yaa{bottom:121.106250px;}
.y147{bottom:121.855950px;}
.y1b6{bottom:126.305850px;}
.y135{bottom:126.591000px;}
.y100{bottom:127.890300px;}
.y23a{bottom:129.885000px;}
.y12e{bottom:131.228250px;}
.y74{bottom:131.386350px;}
.y154{bottom:132.555600px;}
.y140{bottom:135.586500px;}
.yf8{bottom:136.855950px;}
.y146{bottom:138.355950px;}
.y25f{bottom:138.585000px;}
.y1b5{bottom:139.805850px;}
.y134{bottom:140.091000px;}
.yff{bottom:141.390300px;}
.y153{bottom:146.055600px;}
.y12d{bottom:147.732750px;}
.y73{bottom:147.886350px;}
.y239{bottom:152.085000px;}
.y1b4{bottom:153.305850px;}
.yf7{bottom:153.355950px;}
.y133{bottom:153.591000px;}
.y13e{bottom:154.855950px;}
.yfe{bottom:154.890300px;}
.y25e{bottom:158.085000px;}
.y152{bottom:159.555600px;}
.y12c{bottom:161.232750px;}
.y72{bottom:164.386350px;}
.y21{bottom:166.080000px;}
.y132{bottom:167.091000px;}
.yfd{bottom:168.390300px;}
.y1b0{bottom:169.182750px;}
.yf6{bottom:169.855950px;}
.y1b3{bottom:171.301500px;}
.y13d{bottom:171.355950px;}
.ya9{bottom:173.493750px;}
.y12b{bottom:174.732750px;}
.y151{bottom:177.551100px;}
.y25d{bottom:177.585000px;}
.y71{bottom:180.886350px;}
.y131{bottom:185.086500px;}
.y1af{bottom:185.682750px;}
.yf5{bottom:186.355950px;}
.yfc{bottom:186.385800px;}
.y13c{bottom:187.855950px;}
.y12a{bottom:188.232750px;}
.y238{bottom:189.285000px;}
.ya8{bottom:189.993750px;}
.y25c{bottom:197.085000px;}
.y70{bottom:197.386350px;}
.y129{bottom:201.732750px;}
.yf4{bottom:202.855950px;}
.y13b{bottom:204.355950px;}
.ya7{bottom:206.493750px;}
.y237{bottom:211.485000px;}
.y6f{bottom:213.886350px;}
.y128{bottom:215.232750px;}
.y25b{bottom:216.585000px;}
.y13f{bottom:219.355950px;}
.y1ae{bottom:220.182750px;}
.y13a{bottom:220.855950px;}
.ya6{bottom:222.993750px;}
.y6e{bottom:230.386350px;}
.y127{bottom:233.228250px;}
.y25a{bottom:236.085000px;}
.y1ad{bottom:236.682600px;}
.ydb{bottom:237.355950px;}
.ya5{bottom:239.493750px;}
.y6d{bottom:246.886350px;}
.y236{bottom:248.685000px;}
.y185{bottom:250.182600px;}
.y1ac{bottom:253.182600px;}
.yda{bottom:253.855950px;}
.y126{bottom:255.355950px;}
.y259{bottom:255.585000px;}
.ya4{bottom:255.993750px;}
.y6c{bottom:263.386350px;}
.y184{bottom:266.682600px;}
.y1ab{bottom:269.682600px;}
.yd9{bottom:270.355950px;}
.y1e{bottom:270.555000px;}
.y235{bottom:270.885000px;}
.y125{bottom:271.855950px;}
.ya3{bottom:272.493750px;}
.y258{bottom:275.085000px;}
.y6b{bottom:279.886350px;}
.y183{bottom:283.182600px;}
.y1aa{bottom:286.182600px;}
.yd8{bottom:286.855950px;}
.y124{bottom:288.355950px;}
.ya2{bottom:288.993750px;}
.y234{bottom:293.085000px;}
.y257{bottom:294.585000px;}
.y11d{bottom:295.855950px;}
.y6a{bottom:296.386350px;}
.y182{bottom:299.682600px;}
.y1a9{bottom:302.682600px;}
.yf3{bottom:303.355950px;}
.y123{bottom:304.855950px;}
.ya1{bottom:305.493750px;}
.y11c{bottom:312.355950px;}
.y69{bottom:312.886350px;}
.y256{bottom:314.085000px;}
.y181{bottom:316.182600px;}
.y1a8{bottom:319.182600px;}
.yf2{bottom:319.855950px;}
.yd7{bottom:321.355950px;}
.ya0{bottom:321.993750px;}
.y11b{bottom:328.855950px;}
.y233{bottom:330.285000px;}
.y180{bottom:332.682600px;}
.y255{bottom:333.585000px;}
.y1a7{bottom:335.682600px;}
.yf1{bottom:336.355950px;}
.yd6{bottom:337.855950px;}
.y9f{bottom:338.493750px;}
.y11a{bottom:345.355950px;}
.y68{bottom:347.386350px;}
.y1a6{bottom:352.182600px;}
.y232{bottom:352.485000px;}
.yf0{bottom:352.855950px;}
.y254{bottom:353.085000px;}
.yd5{bottom:354.355950px;}
.y9e{bottom:354.993750px;}
.y119{bottom:361.855950px;}
.y67{bottom:363.886350px;}
.y17f{bottom:367.182600px;}
.y1a5{bottom:368.682600px;}
.yef{bottom:369.355950px;}
.yd4{bottom:370.855950px;}
.y9d{bottom:371.493750px;}
.y253{bottom:372.585000px;}
.y231{bottom:373.335000px;}
.y118{bottom:378.355950px;}
.y66{bottom:380.386350px;}
.y17e{bottom:383.682600px;}
.y1a4{bottom:385.182750px;}
.yee{bottom:385.855950px;}
.yd3{bottom:387.355950px;}
.y9c{bottom:387.993750px;}
.y1d{bottom:388.770000px;}
.y252{bottom:392.085000px;}
.y230{bottom:392.835000px;}
.y117{bottom:394.855950px;}
.y65{bottom:396.886350px;}
.y17d{bottom:400.182750px;}
.y1a3{bottom:401.682750px;}
.yed{bottom:402.355950px;}
.yd2{bottom:403.855950px;}
.y1c{bottom:406.320000px;}
.y116{bottom:411.355950px;}
.y251{bottom:411.585000px;}
.y22f{bottom:412.335000px;}
.y64{bottom:413.386350px;}
.y17c{bottom:416.682750px;}
.y1a2{bottom:418.182750px;}
.yec{bottom:418.855950px;}
.yd1{bottom:420.355950px;}
.y9b{bottom:422.493750px;}
.y1b{bottom:423.870000px;}
.y115{bottom:427.855950px;}
.y63{bottom:429.886350px;}
.y250{bottom:431.085000px;}
.y22e{bottom:431.835000px;}
.y17b{bottom:433.182750px;}
.yeb{bottom:435.355950px;}
.y122{bottom:436.855950px;}
.y9a{bottom:438.993750px;}
.y114{bottom:444.355950px;}
.y62{bottom:446.386350px;}
.y17a{bottom:449.682750px;}
.y24f{bottom:450.585000px;}
.y22d{bottom:451.335000px;}
.yea{bottom:451.855950px;}
.y1a1{bottom:452.682750px;}
.y121{bottom:453.355950px;}
.yd0{bottom:454.855950px;}
.y99{bottom:455.493750px;}
.y217{bottom:458.554200px;}
.y1e8{bottom:459.035250px;}
.y113{bottom:460.855950px;}
.y61{bottom:462.886350px;}
.y179{bottom:466.182750px;}
.y1a{bottom:467.385000px;}
.ye9{bottom:468.355950px;}
.y1a0{bottom:469.182750px;}
.y216{bottom:469.354050px;}
.y120{bottom:469.855950px;}
.y24e{bottom:470.085000px;}
.y22c{bottom:470.835000px;}
.ycf{bottom:471.355950px;}
.y98{bottom:471.993750px;}
.y1e7{bottom:472.835250px;}
.y60{bottom:479.386350px;}
.y215{bottom:480.154200px;}
.y178{bottom:482.682750px;}
.y1e6{bottom:483.635400px;}
.ye8{bottom:484.855950px;}
.y19f{bottom:485.682750px;}
.y11f{bottom:486.355950px;}
.y19{bottom:487.365000px;}
.yce{bottom:487.855950px;}
.y97{bottom:488.493750px;}
.y24d{bottom:489.585000px;}
.y22b{bottom:490.335000px;}
.y214{bottom:494.404200px;}
.y1e5{bottom:494.435250px;}
.y112{bottom:495.355950px;}
.y5f{bottom:495.886350px;}
.y177{bottom:499.182750px;}
.y19e{bottom:502.182750px;}
.y11e{bottom:502.855950px;}
.ycd{bottom:504.355950px;}
.y213{bottom:505.204050px;}
.y18{bottom:507.345000px;}
.y1e4{bottom:508.235250px;}
.y24c{bottom:509.085000px;}
.y22a{bottom:509.835000px;}
.y111{bottom:511.855950px;}
.y96{bottom:512.493750px;}
.y2d{bottom:514.725000px;}
.y176{bottom:515.682750px;}
.y212{bottom:516.004050px;}
.y19d{bottom:518.682750px;}
.y1e3{bottom:519.035250px;}
.ye7{bottom:519.355950px;}
.y26d{bottom:519.810000px;}
.ycc{bottom:520.855950px;}
.y211{bottom:526.804200px;}
.y17{bottom:527.325000px;}
.y110{bottom:528.355950px;}
.y24b{bottom:528.585000px;}
.y95{bottom:528.993750px;}
.y229{bottom:529.335000px;}
.y5e{bottom:530.386350px;}
.y175{bottom:532.182750px;}
.y1e2{bottom:532.835250px;}
.y19c{bottom:535.182750px;}
.ye6{bottom:535.855950px;}
.ycb{bottom:537.355950px;}
.y2c{bottom:538.260000px;}
.y210{bottom:541.054200px;}
.y26c{bottom:542.010000px;}
.y1e1{bottom:543.635400px;}
.y10f{bottom:544.855950px;}
.y94{bottom:545.493750px;}
.y5d{bottom:546.886350px;}
.y16{bottom:547.320000px;}
.y174{bottom:548.682750px;}
.y228{bottom:548.835000px;}
.y19b{bottom:551.682750px;}
.y20f{bottom:551.854050px;}
.ye5{bottom:552.355950px;}
.yca{bottom:553.855950px;}
.y1e0{bottom:554.435250px;}
.y10e{bottom:561.355950px;}
.y93{bottom:561.993750px;}
.y20e{bottom:562.654200px;}
.y5c{bottom:563.386350px;}
.y24a{bottom:564.435000px;}
.y173{bottom:565.182750px;}
.y15{bottom:567.300000px;}
.y19a{bottom:568.182750px;}
.y1df{bottom:568.235250px;}
.y2b{bottom:568.320000px;}
.y227{bottom:568.335000px;}
.ye4{bottom:568.855950px;}
.yc9{bottom:570.355950px;}
.y20d{bottom:573.454200px;}
.y10d{bottom:577.855950px;}
.y92{bottom:578.493750px;}
.y1de{bottom:579.035250px;}
.y26b{bottom:579.210000px;}
.y5b{bottom:579.886350px;}
.y172{bottom:581.682750px;}
.y199{bottom:584.682750px;}
.ye3{bottom:585.355950px;}
.y249{bottom:586.635000px;}
.yc8{bottom:586.855950px;}
.y14{bottom:587.280000px;}
.y20c{bottom:587.704200px;}
.y226{bottom:587.835000px;}
.y2a{bottom:591.870000px;}
.y1dd{bottom:592.835250px;}
.y10c{bottom:594.355950px;}
.y91{bottom:594.993750px;}
.y5a{bottom:596.386350px;}
.y171{bottom:598.182750px;}
.y20b{bottom:598.504050px;}
.y198{bottom:601.182750px;}
.y26a{bottom:601.410000px;}
.ye2{bottom:601.855950px;}
.yc7{bottom:603.355950px;}
.y1dc{bottom:603.635400px;}
.y13{bottom:607.260000px;}
.y225{bottom:607.335000px;}
.y20a{bottom:609.304200px;}
.y10b{bottom:610.855950px;}
.y90{bottom:611.493750px;}
.y59{bottom:612.886350px;}
.y1db{bottom:617.435250px;}
.y197{bottom:617.682750px;}
.ye1{bottom:618.355950px;}
.yc6{bottom:619.855950px;}
.y209{bottom:620.104050px;}
.y269{bottom:623.610000px;}
.y29{bottom:623.700000px;}
.y224{bottom:626.835000px;}
.y12{bottom:627.240000px;}
.y10a{bottom:627.355950px;}
.y8f{bottom:627.993750px;}
.y1da{bottom:628.235250px;}
.y58{bottom:629.386350px;}
.y170{bottom:632.682750px;}
.y196{bottom:634.182750px;}
.y208{bottom:634.354050px;}
.ye0{bottom:634.855950px;}
.yc5{bottom:636.355950px;}
.y1d9{bottom:639.035400px;}
.y248{bottom:641.490000px;}
.y109{bottom:643.855950px;}
.y8e{bottom:644.493750px;}
.y207{bottom:645.154200px;}
.y57{bottom:645.886350px;}
.y223{bottom:646.335000px;}
.y11{bottom:647.220000px;}
.y28{bottom:647.235000px;}
.y16f{bottom:649.182750px;}
.y195{bottom:650.682750px;}
.ydf{bottom:651.355950px;}
.y1d8{bottom:652.835250px;}
.yc4{bottom:652.855950px;}
.y206{bottom:655.954050px;}
.y268{bottom:660.810000px;}
.y247{bottom:660.990000px;}
.y56{bottom:662.386350px;}
.y1d7{bottom:663.635250px;}
.y16e{bottom:665.682750px;}
.y222{bottom:665.835000px;}
.y194{bottom:667.182750px;}
.y10{bottom:667.200000px;}
.yde{bottom:667.855950px;}
.yc3{bottom:669.355950px;}
.y205{bottom:670.204050px;}
.y1d6{bottom:674.435250px;}
.y8d{bottom:678.993750px;}
.y246{bottom:680.490000px;}
.y204{bottom:681.004050px;}
.y16d{bottom:682.182750px;}
.y193{bottom:683.682750px;}
.y108{bottom:684.355950px;}
.yc2{bottom:685.855950px;}
.y27{bottom:686.670000px;}
.yf{bottom:687.180000px;}
.y1d5{bottom:688.235250px;}
.y203{bottom:691.804200px;}
.y8c{bottom:695.493750px;}
.y55{bottom:696.886350px;}
.y267{bottom:698.010000px;}
.y16c{bottom:698.682750px;}
.y1d4{bottom:699.035400px;}
.y192{bottom:700.182750px;}
.y107{bottom:700.855950px;}
.y221{bottom:701.685000px;}
.yc1{bottom:702.355950px;}
.y26{bottom:703.425000px;}
.y202{bottom:706.054200px;}
.ye{bottom:707.160000px;}
.y1d3{bottom:709.835250px;}
.y8b{bottom:711.993750px;}
.y54{bottom:713.386350px;}
.y16b{bottom:715.182750px;}
.y191{bottom:716.682750px;}
.y201{bottom:716.854050px;}
.y106{bottom:717.355950px;}
.yc0{bottom:718.855950px;}
.y266{bottom:720.210000px;}
.y245{bottom:721.335000px;}
.y1d2{bottom:723.635250px;}
.y220{bottom:725.040000px;}
.yd{bottom:725.925000px;}
.y200{bottom:727.654200px;}
.y8a{bottom:728.493750px;}
.y53{bottom:729.886350px;}
.y16a{bottom:731.682750px;}
.y190{bottom:733.182750px;}
.y105{bottom:733.855950px;}
.y1d1{bottom:734.435250px;}
.ybf{bottom:735.355950px;}
.y1ff{bottom:741.904200px;}
.y265{bottom:742.410000px;}
.yc{bottom:743.475000px;}
.y89{bottom:744.993750px;}
.y1d0{bottom:745.235250px;}
.y52{bottom:746.386350px;}
.y25{bottom:746.460000px;}
.y169{bottom:748.182750px;}
.y18f{bottom:749.682750px;}
.y150{bottom:750.355950px;}
.ybe{bottom:751.855950px;}
.y1fe{bottom:752.704050px;}
.y244{bottom:753.165000px;}
.y1cf{bottom:759.035400px;}
.y88{bottom:761.493750px;}
.y51{bottom:762.886350px;}
.y168{bottom:764.682750px;}
.y18e{bottom:766.182750px;}
.y14f{bottom:766.855950px;}
.y1fd{bottom:766.954050px;}
.ybd{bottom:768.355950px;}
.y1ce{bottom:769.835250px;}
.y1fc{bottom:777.754050px;}
.ya{bottom:777.765000px;}
.y87{bottom:777.993750px;}
.y50{bottom:779.386350px;}
.y264{bottom:779.610000px;}
.y21f{bottom:779.895000px;}
.y1cd{bottom:780.635250px;}
.y167{bottom:781.182750px;}
.y24{bottom:781.245000px;}
.y18d{bottom:782.682750px;}
.y14e{bottom:783.355950px;}
.ybc{bottom:784.855950px;}
.y1fb{bottom:788.554200px;}
.y9{bottom:792.765000px;}
.y1cc{bottom:794.435250px;}
.y86{bottom:794.493750px;}
.y4f{bottom:795.886350px;}
.y166{bottom:797.682750px;}
.y18c{bottom:799.182750px;}
.y21e{bottom:799.395000px;}
.y14d{bottom:799.855950px;}
.ybb{bottom:801.355950px;}
.y243{bottom:801.810000px;}
.y1fa{bottom:802.804200px;}
.y1cb{bottom:805.235250px;}
.y85{bottom:810.993750px;}
.y4e{bottom:812.386350px;}
.y8{bottom:813.165000px;}
.y1f9{bottom:813.604200px;}
.y165{bottom:814.182750px;}
.y18b{bottom:815.682750px;}
.y1ca{bottom:816.035400px;}
.y14c{bottom:816.355950px;}
.yba{bottom:817.855950px;}
.y21d{bottom:818.895000px;}
.y145{bottom:819.355950px;}
.y23{bottom:822.855000px;}
.y242{bottom:824.010000px;}
.y1f8{bottom:824.404200px;}
.yb{bottom:825.630000px;}
.y1c9{bottom:826.835250px;}
.y84{bottom:827.493750px;}
.y7{bottom:828.165000px;}
.y4d{bottom:828.886350px;}
.y18a{bottom:832.182750px;}
.yb9{bottom:834.355950px;}
.y3e{bottom:835.815000px;}
.y144{bottom:835.855950px;}
.y1f7{bottom:838.654200px;}
.y263{bottom:839.010000px;}
.y1c8{bottom:840.635250px;}
.y83{bottom:843.993750px;}
.y164{bottom:848.682750px;}
.y1f6{bottom:849.454050px;}
.yb8{bottom:850.855950px;}
.y1c7{bottom:851.435250px;}
.y143{bottom:852.355950px;}
.y3d{bottom:855.840000px;}
.y21c{bottom:859.740000px;}
.y1f5{bottom:860.254050px;}
.y82{bottom:860.493750px;}
.y241{bottom:861.210000px;}
.y1c6{bottom:862.235250px;}
.y4c{bottom:863.386350px;}
.y163{bottom:865.182750px;}
.yb7{bottom:867.355950px;}
.ydd{bottom:868.855950px;}
.y3c{bottom:870.465000px;}
.y1f4{bottom:874.504050px;}
.y1c5{bottom:876.035400px;}
.y81{bottom:876.993750px;}
.y4b{bottom:879.886350px;}
.y162{bottom:881.682750px;}
.y6{bottom:882.990000px;}
.y104{bottom:883.855950px;}
.y1f3{bottom:885.304200px;}
.ydc{bottom:885.355950px;}
.y1c4{bottom:886.835250px;}
.y3b{bottom:890.490000px;}
.y21b{bottom:891.570000px;}
.y80{bottom:893.493750px;}
.y1f2{bottom:896.104200px;}
.y4a{bottom:896.386350px;}
.y1c3{bottom:897.635250px;}
.y161{bottom:898.182750px;}
.y240{bottom:898.410000px;}
.y139{bottom:900.355950px;}
.yb6{bottom:901.855950px;}
.y3a{bottom:905.115000px;}
.y7f{bottom:909.993750px;}
.y1f1{bottom:910.354200px;}
.y1c2{bottom:911.435250px;}
.y49{bottom:912.886350px;}
.y160{bottom:914.682750px;}
.y5{bottom:916.800000px;}
.y138{bottom:916.855950px;}
.yb5{bottom:918.355950px;}
.y262{bottom:920.610000px;}
.y1f0{bottom:921.154200px;}
.y1c1{bottom:922.235250px;}
.y39{bottom:925.140000px;}
.y48{bottom:929.386350px;}
.y15f{bottom:931.182750px;}
.y1ef{bottom:931.954050px;}
.y1c0{bottom:933.035400px;}
.y14b{bottom:933.355950px;}
.yb4{bottom:934.855950px;}
.y23f{bottom:935.610000px;}
.y38{bottom:939.765000px;}
.y21a{bottom:941.145000px;}
.y1ee{bottom:942.754050px;}
.y1bf{bottom:943.835250px;}
.y7e{bottom:944.493750px;}
.y47{bottom:945.886350px;}
.y4{bottom:946.620000px;}
.y15e{bottom:947.682750px;}
.y14a{bottom:949.855950px;}
.yb3{bottom:951.355950px;}
.y37{bottom:954.390000px;}
.y1ed{bottom:957.004050px;}
.y1be{bottom:957.635250px;}
.y23e{bottom:957.810000px;}
.y7d{bottom:960.993750px;}
.y46{bottom:962.386350px;}
.y15d{bottom:964.182750px;}
.y149{bottom:966.355950px;}
.y1ec{bottom:967.804200px;}
.yb2{bottom:967.855950px;}
.y1bd{bottom:968.435250px;}
.y3{bottom:973.470000px;}
.y36{bottom:974.415000px;}
.y7c{bottom:977.493750px;}
.y1eb{bottom:978.604200px;}
.y45{bottom:978.886350px;}
.y23d{bottom:980.010000px;}
.y15c{bottom:980.682750px;}
.y1bc{bottom:982.235250px;}
.yb1{bottom:984.355950px;}
.y1ea{bottom:992.854200px;}
.y1bb{bottom:993.035400px;}
.y7b{bottom:993.993750px;}
.y35{bottom:994.440000px;}
.y44{bottom:995.386350px;}
.y15b{bottom:997.182750px;}
.y189{bottom:998.682750px;}
.yb0{bottom:1000.855950px;}
.y261{bottom:1002.210000px;}
.y1e9{bottom:1003.654200px;}
.y1ba{bottom:1003.835250px;}
.y219{bottom:1006.350000px;}
.y34{bottom:1009.065000px;}
.y43{bottom:1011.886350px;}
.y15a{bottom:1013.682750px;}
.y188{bottom:1015.182750px;}
.y23c{bottom:1017.210000px;}
.yaf{bottom:1017.355950px;}
.y2{bottom:1020.540000px;}
.y42{bottom:1028.386350px;}
.y7a{bottom:1028.493750px;}
.y33{bottom:1029.090000px;}
.y159{bottom:1030.182750px;}
.y187{bottom:1031.682750px;}
.yae{bottom:1033.855950px;}
.y23b{bottom:1039.410000px;}
.y1b9{bottom:1041.735150px;}
.y41{bottom:1044.886350px;}
.y79{bottom:1044.993750px;}
.y186{bottom:1048.182750px;}
.yad{bottom:1050.355950px;}
.y218{bottom:1052.055000px;}
.y1{bottom:1055.715000px;}
.y40{bottom:1061.386350px;}
.y78{bottom:1061.493750px;}
.y158{bottom:1064.682750px;}
.y3f{bottom:1077.886350px;}
.y77{bottom:1077.993750px;}
.y2e{bottom:1080.000000px;}
.y157{bottom:1081.182750px;}
.y32{bottom:1123.500000px;}
.h12{height:21.659616px;}
.h17{height:27.576000px;}
.h13{height:30.960000px;}
.hc{height:32.130000px;}
.h14{height:33.034680px;}
.h16{height:33.984000px;}
.he{height:34.425000px;}
.hd{height:34.470000px;}
.h5{height:36.768000px;}
.hf{height:37.152000px;}
.h8{height:37.917000px;}
.h11{height:39.641616px;}
.h10{height:39.642216px;}
.h1a{height:41.310000px;}
.h1{height:41.364000px;}
.h9{height:42.396000px;}
.h15{height:43.662000px;}
.h1b{height:45.900000px;}
.h3{height:45.960000px;}
.h19{height:48.258000px;}
.h4{height:59.748000px;}
.h1c{height:61.965000px;}
.hb{height:62.046000px;}
.h6{height:64.344000px;}
.h2{height:73.536000px;}
.h18{height:82.728000px;}
.h7{height:93.225000px;}
.ha{height:108.000000px;}
.h0{height:1188.000000px;}
.w1{width:447.120000px;}
.w2{width:745.200000px;}
.w0{width:918.000000px;}
.w3{width:918.424500px;}
.w4{width:918.750000px;}
.x0{left:0.000000px;}
.xe{left:85.039350px;}
.x1{left:86.400000px;}
.x3{left:90.000000px;}
.x4{left:93.900000px;}
.xd{left:97.755000px;}
.x15{left:98.775000px;}
.xf{left:109.039350px;}
.x13{left:110.551350px;}
.x2{left:118.800000px;}
.x16{left:137.025000px;}
.xa{left:370.650000px;}
.x11{left:471.968550px;}
.x12{left:495.968400px;}
.x14{left:497.480550px;}
.x10{left:506.093550px;}
.xc{left:526.935000px;}
.x5{left:550.095000px;}
.x7{left:551.715000px;}
.x9{left:554.895000px;}
.x8{left:568.095000px;}
.x6{left:667.605000px;}
.x17{left:766.680000px;}
.xb{left:772.680000px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.173333pt;}
.v2{vertical-align:15.984533pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.021333pt;}
.ws9{word-spacing:-48.000000pt;}
.wsd{word-spacing:-32.000000pt;}
.ws0{word-spacing:-12.480000pt;}
.ws5{word-spacing:-12.000000pt;}
.wsa{word-spacing:-11.093333pt;}
.ws4{word-spacing:-10.400000pt;}
.ws7{word-spacing:-10.000000pt;}
.wsb{word-spacing:-8.320000pt;}
.ws6{word-spacing:-6.996000pt;}
.ws8{word-spacing:-5.830000pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:5.216000pt;}
.wsc{word-spacing:23.520000pt;}
.ws2{word-spacing:303.968000pt;}
.ws1{word-spacing:344.501333pt;}
._6{margin-left:-12.160533pt;}
._11{margin-left:-11.128533pt;}
._20{margin-left:-10.011200pt;}
._2c{margin-left:-6.251733pt;}
._1a{margin-left:-5.328000pt;}
._2d{margin-left:-4.405333pt;}
._1b{margin-left:-3.504000pt;}
._8{margin-left:-2.304000pt;}
._7{margin-left:-1.200000pt;}
._f{width:1.012800pt;}
._29{width:2.496000pt;}
._1f{width:4.000000pt;}
._23{width:5.280000pt;}
._1c{width:6.336000pt;}
._19{width:7.824000pt;}
._1d{width:8.976000pt;}
._4{width:10.512000pt;}
._27{width:11.456000pt;}
._b{width:12.912000pt;}
._e{width:13.881067pt;}
._9{width:14.880000pt;}
._10{width:16.224000pt;}
._5{width:17.664000pt;}
._17{width:19.056000pt;}
._0{width:20.021333pt;}
._d{width:21.264000pt;}
._14{width:22.272000pt;}
._a{width:23.328000pt;}
._13{width:24.336000pt;}
._18{width:25.872000pt;}
._c{width:27.168000pt;}
._21{width:28.272000pt;}
._16{width:29.424000pt;}
._15{width:30.576000pt;}
._1e{width:31.968000pt;}
._12{width:33.408000pt;}
._25{width:34.656000pt;}
._22{width:37.200000pt;}
._24{width:38.208000pt;}
._28{width:42.192000pt;}
._26{width:43.440000pt;}
._2a{width:45.792000pt;}
._2b{width:46.800000pt;}
._2e{width:55.520000pt;}
._2f{width:60.010667pt;}
._1{width:64.000000pt;}
._3{width:72.010667pt;}
._30{width:156.000000pt;}
._2{width:215.648000pt;}
.fsc{font-size:23.320000pt;}
.fsb{font-size:27.984000pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsf{font-size:56.000000pt;}
.fs3{font-size:69.333333pt;}
.fs8{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fse{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:14.866667pt;}
.y1f{bottom:14.880000pt;}
.y2f{bottom:40.120000pt;}
.y20{bottom:41.026667pt;}
.y31{bottom:54.666667pt;}
.y30{bottom:62.386667pt;}
.yfb{bottom:77.649733pt;}
.y103{bottom:77.680267pt;}
.y76{bottom:79.454533pt;}
.yac{bottom:79.654000pt;}
.y1b8{bottom:88.271867pt;}
.y137{bottom:88.525333pt;}
.y130{bottom:88.651333pt;}
.y1b2{bottom:89.051333pt;}
.y102{bottom:89.680267pt;}
.yab{bottom:91.654000pt;}
.yfa{bottom:92.316400pt;}
.y142{bottom:92.525333pt;}
.y148{bottom:93.649733pt;}
.y156{bottom:93.827200pt;}
.y75{bottom:94.121200pt;}
.y1b7{bottom:100.271867pt;}
.y136{bottom:100.525333pt;}
.y12f{bottom:100.651333pt;}
.y101{bottom:101.680267pt;}
.y1b1{bottom:103.718000pt;}
.y141{bottom:104.525333pt;}
.y260{bottom:104.653333pt;}
.y155{bottom:105.827200pt;}
.yf9{bottom:106.983067pt;}
.yaa{bottom:107.650000pt;}
.y147{bottom:108.316400pt;}
.y1b6{bottom:112.271867pt;}
.y135{bottom:112.525333pt;}
.y100{bottom:113.680267pt;}
.y23a{bottom:115.453333pt;}
.y12e{bottom:116.647333pt;}
.y74{bottom:116.787867pt;}
.y154{bottom:117.827200pt;}
.y140{bottom:120.521333pt;}
.yf8{bottom:121.649733pt;}
.y146{bottom:122.983067pt;}
.y25f{bottom:123.186667pt;}
.y1b5{bottom:124.271867pt;}
.y134{bottom:124.525333pt;}
.yff{bottom:125.680267pt;}
.y153{bottom:129.827200pt;}
.y12d{bottom:131.318000pt;}
.y73{bottom:131.454533pt;}
.y239{bottom:135.186667pt;}
.y1b4{bottom:136.271867pt;}
.yf7{bottom:136.316400pt;}
.y133{bottom:136.525333pt;}
.y13e{bottom:137.649733pt;}
.yfe{bottom:137.680267pt;}
.y25e{bottom:140.520000pt;}
.y152{bottom:141.827200pt;}
.y12c{bottom:143.318000pt;}
.y72{bottom:146.121200pt;}
.y21{bottom:147.626667pt;}
.y132{bottom:148.525333pt;}
.yfd{bottom:149.680267pt;}
.y1b0{bottom:150.384667pt;}
.yf6{bottom:150.983067pt;}
.y1b3{bottom:152.268000pt;}
.y13d{bottom:152.316400pt;}
.ya9{bottom:154.216667pt;}
.y12b{bottom:155.318000pt;}
.y151{bottom:157.823200pt;}
.y25d{bottom:157.853333pt;}
.y71{bottom:160.787867pt;}
.y131{bottom:164.521333pt;}
.y1af{bottom:165.051333pt;}
.yf5{bottom:165.649733pt;}
.yfc{bottom:165.676267pt;}
.y13c{bottom:166.983067pt;}
.y12a{bottom:167.318000pt;}
.y238{bottom:168.253333pt;}
.ya8{bottom:168.883333pt;}
.y25c{bottom:175.186667pt;}
.y70{bottom:175.454533pt;}
.y129{bottom:179.318000pt;}
.yf4{bottom:180.316400pt;}
.y13b{bottom:181.649733pt;}
.ya7{bottom:183.550000pt;}
.y237{bottom:187.986667pt;}
.y6f{bottom:190.121200pt;}
.y128{bottom:191.318000pt;}
.y25b{bottom:192.520000pt;}
.y13f{bottom:194.983067pt;}
.y1ae{bottom:195.718000pt;}
.y13a{bottom:196.316400pt;}
.ya6{bottom:198.216667pt;}
.y6e{bottom:204.787867pt;}
.y127{bottom:207.314000pt;}
.y25a{bottom:209.853333pt;}
.y1ad{bottom:210.384533pt;}
.ydb{bottom:210.983067pt;}
.ya5{bottom:212.883333pt;}
.y6d{bottom:219.454533pt;}
.y236{bottom:221.053333pt;}
.y185{bottom:222.384533pt;}
.y1ac{bottom:225.051200pt;}
.yda{bottom:225.649733pt;}
.y126{bottom:226.983067pt;}
.y259{bottom:227.186667pt;}
.ya4{bottom:227.550000pt;}
.y6c{bottom:234.121200pt;}
.y184{bottom:237.051200pt;}
.y1ab{bottom:239.717867pt;}
.yd9{bottom:240.316400pt;}
.y1e{bottom:240.493333pt;}
.y235{bottom:240.786667pt;}
.y125{bottom:241.649733pt;}
.ya3{bottom:242.216667pt;}
.y258{bottom:244.520000pt;}
.y6b{bottom:248.787867pt;}
.y183{bottom:251.717867pt;}
.y1aa{bottom:254.384533pt;}
.yd8{bottom:254.983067pt;}
.y124{bottom:256.316400pt;}
.ya2{bottom:256.883333pt;}
.y234{bottom:260.520000pt;}
.y257{bottom:261.853333pt;}
.y11d{bottom:262.983067pt;}
.y6a{bottom:263.454533pt;}
.y182{bottom:266.384533pt;}
.y1a9{bottom:269.051200pt;}
.yf3{bottom:269.649733pt;}
.y123{bottom:270.983067pt;}
.ya1{bottom:271.550000pt;}
.y11c{bottom:277.649733pt;}
.y69{bottom:278.121200pt;}
.y256{bottom:279.186667pt;}
.y181{bottom:281.051200pt;}
.y1a8{bottom:283.717867pt;}
.yf2{bottom:284.316400pt;}
.yd7{bottom:285.649733pt;}
.ya0{bottom:286.216667pt;}
.y11b{bottom:292.316400pt;}
.y233{bottom:293.586667pt;}
.y180{bottom:295.717867pt;}
.y255{bottom:296.520000pt;}
.y1a7{bottom:298.384533pt;}
.yf1{bottom:298.983067pt;}
.yd6{bottom:300.316400pt;}
.y9f{bottom:300.883333pt;}
.y11a{bottom:306.983067pt;}
.y68{bottom:308.787867pt;}
.y1a6{bottom:313.051200pt;}
.y232{bottom:313.320000pt;}
.yf0{bottom:313.649733pt;}
.y254{bottom:313.853333pt;}
.yd5{bottom:314.983067pt;}
.y9e{bottom:315.550000pt;}
.y119{bottom:321.649733pt;}
.y67{bottom:323.454533pt;}
.y17f{bottom:326.384533pt;}
.y1a5{bottom:327.717867pt;}
.yef{bottom:328.316400pt;}
.yd4{bottom:329.649733pt;}
.y9d{bottom:330.216667pt;}
.y253{bottom:331.186667pt;}
.y231{bottom:331.853333pt;}
.y118{bottom:336.316400pt;}
.y66{bottom:338.121200pt;}
.y17e{bottom:341.051200pt;}
.y1a4{bottom:342.384667pt;}
.yee{bottom:342.983067pt;}
.yd3{bottom:344.316400pt;}
.y9c{bottom:344.883333pt;}
.y1d{bottom:345.573333pt;}
.y252{bottom:348.520000pt;}
.y230{bottom:349.186667pt;}
.y117{bottom:350.983067pt;}
.y65{bottom:352.787867pt;}
.y17d{bottom:355.718000pt;}
.y1a3{bottom:357.051333pt;}
.yed{bottom:357.649733pt;}
.yd2{bottom:358.983067pt;}
.y1c{bottom:361.173333pt;}
.y116{bottom:365.649733pt;}
.y251{bottom:365.853333pt;}
.y22f{bottom:366.520000pt;}
.y64{bottom:367.454533pt;}
.y17c{bottom:370.384667pt;}
.y1a2{bottom:371.718000pt;}
.yec{bottom:372.316400pt;}
.yd1{bottom:373.649733pt;}
.y9b{bottom:375.550000pt;}
.y1b{bottom:376.773333pt;}
.y115{bottom:380.316400pt;}
.y63{bottom:382.121200pt;}
.y250{bottom:383.186667pt;}
.y22e{bottom:383.853333pt;}
.y17b{bottom:385.051333pt;}
.yeb{bottom:386.983067pt;}
.y122{bottom:388.316400pt;}
.y9a{bottom:390.216667pt;}
.y114{bottom:394.983067pt;}
.y62{bottom:396.787867pt;}
.y17a{bottom:399.718000pt;}
.y24f{bottom:400.520000pt;}
.y22d{bottom:401.186667pt;}
.yea{bottom:401.649733pt;}
.y1a1{bottom:402.384667pt;}
.y121{bottom:402.983067pt;}
.yd0{bottom:404.316400pt;}
.y99{bottom:404.883333pt;}
.y217{bottom:407.603733pt;}
.y1e8{bottom:408.031333pt;}
.y113{bottom:409.649733pt;}
.y61{bottom:411.454533pt;}
.y179{bottom:414.384667pt;}
.y1a{bottom:415.453333pt;}
.ye9{bottom:416.316400pt;}
.y1a0{bottom:417.051333pt;}
.y216{bottom:417.203600pt;}
.y120{bottom:417.649733pt;}
.y24e{bottom:417.853333pt;}
.y22c{bottom:418.520000pt;}
.ycf{bottom:418.983067pt;}
.y98{bottom:419.550000pt;}
.y1e7{bottom:420.298000pt;}
.y60{bottom:426.121200pt;}
.y215{bottom:426.803733pt;}
.y178{bottom:429.051333pt;}
.y1e6{bottom:429.898133pt;}
.ye8{bottom:430.983067pt;}
.y19f{bottom:431.718000pt;}
.y11f{bottom:432.316400pt;}
.y19{bottom:433.213333pt;}
.yce{bottom:433.649733pt;}
.y97{bottom:434.216667pt;}
.y24d{bottom:435.186667pt;}
.y22b{bottom:435.853333pt;}
.y214{bottom:439.470400pt;}
.y1e5{bottom:439.498000pt;}
.y112{bottom:440.316400pt;}
.y5f{bottom:440.787867pt;}
.y177{bottom:443.718000pt;}
.y19e{bottom:446.384667pt;}
.y11e{bottom:446.983067pt;}
.ycd{bottom:448.316400pt;}
.y213{bottom:449.070267pt;}
.y18{bottom:450.973333pt;}
.y1e4{bottom:451.764667pt;}
.y24c{bottom:452.520000pt;}
.y22a{bottom:453.186667pt;}
.y111{bottom:454.983067pt;}
.y96{bottom:455.550000pt;}
.y2d{bottom:457.533333pt;}
.y176{bottom:458.384667pt;}
.y212{bottom:458.670267pt;}
.y19d{bottom:461.051333pt;}
.y1e3{bottom:461.364667pt;}
.ye7{bottom:461.649733pt;}
.y26d{bottom:462.053333pt;}
.ycc{bottom:462.983067pt;}
.y211{bottom:468.270400pt;}
.y17{bottom:468.733333pt;}
.y110{bottom:469.649733pt;}
.y24b{bottom:469.853333pt;}
.y95{bottom:470.216667pt;}
.y229{bottom:470.520000pt;}
.y5e{bottom:471.454533pt;}
.y175{bottom:473.051333pt;}
.y1e2{bottom:473.631333pt;}
.y19c{bottom:475.718000pt;}
.ye6{bottom:476.316400pt;}
.ycb{bottom:477.649733pt;}
.y2c{bottom:478.453333pt;}
.y210{bottom:480.937067pt;}
.y26c{bottom:481.786667pt;}
.y1e1{bottom:483.231467pt;}
.y10f{bottom:484.316400pt;}
.y94{bottom:484.883333pt;}
.y5d{bottom:486.121200pt;}
.y16{bottom:486.506667pt;}
.y174{bottom:487.718000pt;}
.y228{bottom:487.853333pt;}
.y19b{bottom:490.384667pt;}
.y20f{bottom:490.536933pt;}
.ye5{bottom:490.983067pt;}
.yca{bottom:492.316400pt;}
.y1e0{bottom:492.831333pt;}
.y10e{bottom:498.983067pt;}
.y93{bottom:499.550000pt;}
.y20e{bottom:500.137067pt;}
.y5c{bottom:500.787867pt;}
.y24a{bottom:501.720000pt;}
.y173{bottom:502.384667pt;}
.y15{bottom:504.266667pt;}
.y19a{bottom:505.051333pt;}
.y1df{bottom:505.098000pt;}
.y2b{bottom:505.173333pt;}
.y227{bottom:505.186667pt;}
.ye4{bottom:505.649733pt;}
.yc9{bottom:506.983067pt;}
.y20d{bottom:509.737067pt;}
.y10d{bottom:513.649733pt;}
.y92{bottom:514.216667pt;}
.y1de{bottom:514.698000pt;}
.y26b{bottom:514.853333pt;}
.y5b{bottom:515.454533pt;}
.y172{bottom:517.051333pt;}
.y199{bottom:519.718000pt;}
.ye3{bottom:520.316400pt;}
.y249{bottom:521.453333pt;}
.yc8{bottom:521.649733pt;}
.y14{bottom:522.026667pt;}
.y20c{bottom:522.403733pt;}
.y226{bottom:522.520000pt;}
.y2a{bottom:526.106667pt;}
.y1dd{bottom:526.964667pt;}
.y10c{bottom:528.316400pt;}
.y91{bottom:528.883333pt;}
.y5a{bottom:530.121200pt;}
.y171{bottom:531.718000pt;}
.y20b{bottom:532.003600pt;}
.y198{bottom:534.384667pt;}
.y26a{bottom:534.586667pt;}
.ye2{bottom:534.983067pt;}
.yc7{bottom:536.316400pt;}
.y1dc{bottom:536.564800pt;}
.y13{bottom:539.786667pt;}
.y225{bottom:539.853333pt;}
.y20a{bottom:541.603733pt;}
.y10b{bottom:542.983067pt;}
.y90{bottom:543.550000pt;}
.y59{bottom:544.787867pt;}
.y1db{bottom:548.831333pt;}
.y197{bottom:549.051333pt;}
.ye1{bottom:549.649733pt;}
.yc6{bottom:550.983067pt;}
.y209{bottom:551.203600pt;}
.y269{bottom:554.320000pt;}
.y29{bottom:554.400000pt;}
.y224{bottom:557.186667pt;}
.y12{bottom:557.546667pt;}
.y10a{bottom:557.649733pt;}
.y8f{bottom:558.216667pt;}
.y1da{bottom:558.431333pt;}
.y58{bottom:559.454533pt;}
.y170{bottom:562.384667pt;}
.y196{bottom:563.718000pt;}
.y208{bottom:563.870267pt;}
.ye0{bottom:564.316400pt;}
.yc5{bottom:565.649733pt;}
.y1d9{bottom:568.031467pt;}
.y248{bottom:570.213333pt;}
.y109{bottom:572.316400pt;}
.y8e{bottom:572.883333pt;}
.y207{bottom:573.470400pt;}
.y57{bottom:574.121200pt;}
.y223{bottom:574.520000pt;}
.y11{bottom:575.306667pt;}
.y28{bottom:575.320000pt;}
.y16f{bottom:577.051333pt;}
.y195{bottom:578.384667pt;}
.ydf{bottom:578.983067pt;}
.y1d8{bottom:580.298000pt;}
.yc4{bottom:580.316400pt;}
.y206{bottom:583.070267pt;}
.y268{bottom:587.386667pt;}
.y247{bottom:587.546667pt;}
.y56{bottom:588.787867pt;}
.y1d7{bottom:589.898000pt;}
.y16e{bottom:591.718000pt;}
.y222{bottom:591.853333pt;}
.y194{bottom:593.051333pt;}
.y10{bottom:593.066667pt;}
.yde{bottom:593.649733pt;}
.yc3{bottom:594.983067pt;}
.y205{bottom:595.736933pt;}
.y1d6{bottom:599.498000pt;}
.y8d{bottom:603.550000pt;}
.y246{bottom:604.880000pt;}
.y204{bottom:605.336933pt;}
.y16d{bottom:606.384667pt;}
.y193{bottom:607.718000pt;}
.y108{bottom:608.316400pt;}
.yc2{bottom:609.649733pt;}
.y27{bottom:610.373333pt;}
.yf{bottom:610.826667pt;}
.y1d5{bottom:611.764667pt;}
.y203{bottom:614.937067pt;}
.y8c{bottom:618.216667pt;}
.y55{bottom:619.454533pt;}
.y267{bottom:620.453333pt;}
.y16c{bottom:621.051333pt;}
.y1d4{bottom:621.364800pt;}
.y192{bottom:622.384667pt;}
.y107{bottom:622.983067pt;}
.y221{bottom:623.720000pt;}
.yc1{bottom:624.316400pt;}
.y26{bottom:625.266667pt;}
.y202{bottom:627.603733pt;}
.ye{bottom:628.586667pt;}
.y1d3{bottom:630.964667pt;}
.y8b{bottom:632.883333pt;}
.y54{bottom:634.121200pt;}
.y16b{bottom:635.718000pt;}
.y191{bottom:637.051333pt;}
.y201{bottom:637.203600pt;}
.y106{bottom:637.649733pt;}
.yc0{bottom:638.983067pt;}
.y266{bottom:640.186667pt;}
.y245{bottom:641.186667pt;}
.y1d2{bottom:643.231333pt;}
.y220{bottom:644.480000pt;}
.yd{bottom:645.266667pt;}
.y200{bottom:646.803733pt;}
.y8a{bottom:647.550000pt;}
.y53{bottom:648.787867pt;}
.y16a{bottom:650.384667pt;}
.y190{bottom:651.718000pt;}
.y105{bottom:652.316400pt;}
.y1d1{bottom:652.831333pt;}
.ybf{bottom:653.649733pt;}
.y1ff{bottom:659.470400pt;}
.y265{bottom:659.920000pt;}
.yc{bottom:660.866667pt;}
.y89{bottom:662.216667pt;}
.y1d0{bottom:662.431333pt;}
.y52{bottom:663.454533pt;}
.y25{bottom:663.520000pt;}
.y169{bottom:665.051333pt;}
.y18f{bottom:666.384667pt;}
.y150{bottom:666.983067pt;}
.ybe{bottom:668.316400pt;}
.y1fe{bottom:669.070267pt;}
.y244{bottom:669.480000pt;}
.y1cf{bottom:674.698133pt;}
.y88{bottom:676.883333pt;}
.y51{bottom:678.121200pt;}
.y168{bottom:679.718000pt;}
.y18e{bottom:681.051333pt;}
.y14f{bottom:681.649733pt;}
.y1fd{bottom:681.736933pt;}
.ybd{bottom:682.983067pt;}
.y1ce{bottom:684.298000pt;}
.y1fc{bottom:691.336933pt;}
.ya{bottom:691.346667pt;}
.y87{bottom:691.550000pt;}
.y50{bottom:692.787867pt;}
.y264{bottom:692.986667pt;}
.y21f{bottom:693.240000pt;}
.y1cd{bottom:693.898000pt;}
.y167{bottom:694.384667pt;}
.y24{bottom:694.440000pt;}
.y18d{bottom:695.718000pt;}
.y14e{bottom:696.316400pt;}
.ybc{bottom:697.649733pt;}
.y1fb{bottom:700.937067pt;}
.y9{bottom:704.680000pt;}
.y1cc{bottom:706.164667pt;}
.y86{bottom:706.216667pt;}
.y4f{bottom:707.454533pt;}
.y166{bottom:709.051333pt;}
.y18c{bottom:710.384667pt;}
.y21e{bottom:710.573333pt;}
.y14d{bottom:710.983067pt;}
.ybb{bottom:712.316400pt;}
.y243{bottom:712.720000pt;}
.y1fa{bottom:713.603733pt;}
.y1cb{bottom:715.764667pt;}
.y85{bottom:720.883333pt;}
.y4e{bottom:722.121200pt;}
.y8{bottom:722.813333pt;}
.y1f9{bottom:723.203733pt;}
.y165{bottom:723.718000pt;}
.y18b{bottom:725.051333pt;}
.y1ca{bottom:725.364800pt;}
.y14c{bottom:725.649733pt;}
.yba{bottom:726.983067pt;}
.y21d{bottom:727.906667pt;}
.y145{bottom:728.316400pt;}
.y23{bottom:731.426667pt;}
.y242{bottom:732.453333pt;}
.y1f8{bottom:732.803733pt;}
.yb{bottom:733.893333pt;}
.y1c9{bottom:734.964667pt;}
.y84{bottom:735.550000pt;}
.y7{bottom:736.146667pt;}
.y4d{bottom:736.787867pt;}
.y18a{bottom:739.718000pt;}
.yb9{bottom:741.649733pt;}
.y3e{bottom:742.946667pt;}
.y144{bottom:742.983067pt;}
.y1f7{bottom:745.470400pt;}
.y263{bottom:745.786667pt;}
.y1c8{bottom:747.231333pt;}
.y83{bottom:750.216667pt;}
.y164{bottom:754.384667pt;}
.y1f6{bottom:755.070267pt;}
.yb8{bottom:756.316400pt;}
.y1c7{bottom:756.831333pt;}
.y143{bottom:757.649733pt;}
.y3d{bottom:760.746667pt;}
.y21c{bottom:764.213333pt;}
.y1f5{bottom:764.670267pt;}
.y82{bottom:764.883333pt;}
.y241{bottom:765.520000pt;}
.y1c6{bottom:766.431333pt;}
.y4c{bottom:767.454533pt;}
.y163{bottom:769.051333pt;}
.yb7{bottom:770.983067pt;}
.ydd{bottom:772.316400pt;}
.y3c{bottom:773.746667pt;}
.y1f4{bottom:777.336933pt;}
.y1c5{bottom:778.698133pt;}
.y81{bottom:779.550000pt;}
.y4b{bottom:782.121200pt;}
.y162{bottom:783.718000pt;}
.y6{bottom:784.880000pt;}
.y104{bottom:785.649733pt;}
.y1f3{bottom:786.937067pt;}
.ydc{bottom:786.983067pt;}
.y1c4{bottom:788.298000pt;}
.y3b{bottom:791.546667pt;}
.y21b{bottom:792.506667pt;}
.y80{bottom:794.216667pt;}
.y1f2{bottom:796.537067pt;}
.y4a{bottom:796.787867pt;}
.y1c3{bottom:797.898000pt;}
.y161{bottom:798.384667pt;}
.y240{bottom:798.586667pt;}
.y139{bottom:800.316400pt;}
.yb6{bottom:801.649733pt;}
.y3a{bottom:804.546667pt;}
.y7f{bottom:808.883333pt;}
.y1f1{bottom:809.203733pt;}
.y1c2{bottom:810.164667pt;}
.y49{bottom:811.454533pt;}
.y160{bottom:813.051333pt;}
.y5{bottom:814.933333pt;}
.y138{bottom:814.983067pt;}
.yb5{bottom:816.316400pt;}
.y262{bottom:818.320000pt;}
.y1f0{bottom:818.803733pt;}
.y1c1{bottom:819.764667pt;}
.y39{bottom:822.346667pt;}
.y48{bottom:826.121200pt;}
.y15f{bottom:827.718000pt;}
.y1ef{bottom:828.403600pt;}
.y1c0{bottom:829.364800pt;}
.y14b{bottom:829.649733pt;}
.yb4{bottom:830.983067pt;}
.y23f{bottom:831.653333pt;}
.y38{bottom:835.346667pt;}
.y21a{bottom:836.573333pt;}
.y1ee{bottom:838.003600pt;}
.y1bf{bottom:838.964667pt;}
.y7e{bottom:839.550000pt;}
.y47{bottom:840.787867pt;}
.y4{bottom:841.440000pt;}
.y15e{bottom:842.384667pt;}
.y14a{bottom:844.316400pt;}
.yb3{bottom:845.649733pt;}
.y37{bottom:848.346667pt;}
.y1ed{bottom:850.670267pt;}
.y1be{bottom:851.231333pt;}
.y23e{bottom:851.386667pt;}
.y7d{bottom:854.216667pt;}
.y46{bottom:855.454533pt;}
.y15d{bottom:857.051333pt;}
.y149{bottom:858.983067pt;}
.y1ec{bottom:860.270400pt;}
.yb2{bottom:860.316400pt;}
.y1bd{bottom:860.831333pt;}
.y3{bottom:865.306667pt;}
.y36{bottom:866.146667pt;}
.y7c{bottom:868.883333pt;}
.y1eb{bottom:869.870400pt;}
.y45{bottom:870.121200pt;}
.y23d{bottom:871.120000pt;}
.y15c{bottom:871.718000pt;}
.y1bc{bottom:873.098000pt;}
.yb1{bottom:874.983067pt;}
.y1ea{bottom:882.537067pt;}
.y1bb{bottom:882.698133pt;}
.y7b{bottom:883.550000pt;}
.y35{bottom:883.946667pt;}
.y44{bottom:884.787867pt;}
.y15b{bottom:886.384667pt;}
.y189{bottom:887.718000pt;}
.yb0{bottom:889.649733pt;}
.y261{bottom:890.853333pt;}
.y1e9{bottom:892.137067pt;}
.y1ba{bottom:892.298000pt;}
.y219{bottom:894.533333pt;}
.y34{bottom:896.946667pt;}
.y43{bottom:899.454533pt;}
.y15a{bottom:901.051333pt;}
.y188{bottom:902.384667pt;}
.y23c{bottom:904.186667pt;}
.yaf{bottom:904.316400pt;}
.y2{bottom:907.146667pt;}
.y42{bottom:914.121200pt;}
.y7a{bottom:914.216667pt;}
.y33{bottom:914.746667pt;}
.y159{bottom:915.718000pt;}
.y187{bottom:917.051333pt;}
.yae{bottom:918.983067pt;}
.y23b{bottom:923.920000pt;}
.y1b9{bottom:925.986800pt;}
.y41{bottom:928.787867pt;}
.y79{bottom:928.883333pt;}
.y186{bottom:931.718000pt;}
.yad{bottom:933.649733pt;}
.y218{bottom:935.160000pt;}
.y1{bottom:938.413333pt;}
.y40{bottom:943.454533pt;}
.y78{bottom:943.550000pt;}
.y158{bottom:946.384667pt;}
.y3f{bottom:958.121200pt;}
.y77{bottom:958.216667pt;}
.y2e{bottom:960.000000pt;}
.y157{bottom:961.051333pt;}
.y32{bottom:998.666667pt;}
.h12{height:19.252992pt;}
.h17{height:24.512000pt;}
.h13{height:27.520000pt;}
.hc{height:28.560000pt;}
.h14{height:29.364160pt;}
.h16{height:30.208000pt;}
.he{height:30.600000pt;}
.hd{height:30.640000pt;}
.h5{height:32.682667pt;}
.hf{height:33.024000pt;}
.h8{height:33.704000pt;}
.h11{height:35.236992pt;}
.h10{height:35.237525pt;}
.h1a{height:36.720000pt;}
.h1{height:36.768000pt;}
.h9{height:37.685333pt;}
.h15{height:38.810667pt;}
.h1b{height:40.800000pt;}
.h3{height:40.853333pt;}
.h19{height:42.896000pt;}
.h4{height:53.109333pt;}
.h1c{height:55.080000pt;}
.hb{height:55.152000pt;}
.h6{height:57.194667pt;}
.h2{height:65.365333pt;}
.h18{height:73.536000pt;}
.h7{height:82.866667pt;}
.ha{height:96.000000pt;}
.h0{height:1056.000000pt;}
.w1{width:397.440000pt;}
.w2{width:662.400000pt;}
.w0{width:816.000000pt;}
.w3{width:816.377333pt;}
.w4{width:816.666667pt;}
.x0{left:0.000000pt;}
.xe{left:75.590533pt;}
.x1{left:76.800000pt;}
.x3{left:80.000000pt;}
.x4{left:83.466667pt;}
.xd{left:86.893333pt;}
.x15{left:87.800000pt;}
.xf{left:96.923867pt;}
.x13{left:98.267867pt;}
.x2{left:105.600000pt;}
.x16{left:121.800000pt;}
.xa{left:329.466667pt;}
.x11{left:419.527600pt;}
.x12{left:440.860800pt;}
.x14{left:442.204933pt;}
.x10{left:449.860933pt;}
.xc{left:468.386667pt;}
.x5{left:488.973333pt;}
.x7{left:490.413333pt;}
.x9{left:493.240000pt;}
.x8{left:504.973333pt;}
.x6{left:593.426667pt;}
.x17{left:681.493333pt;}
.xb{left:686.826667pt;}
}




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