
    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_9fb3f1ab53b88fdae32c478e.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b3fb6c270853745a9c037814.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_d305329e72b22e192e889312.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_924e33914af437a1a26b93ff.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ecb76e26780e6172e64184e9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f54e432807a3556b4470387f.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f5fefd05890c2579ce06f434.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0800f0fdd16e1d781e149891.woff')format("woff");}.ff8{font-family:ff8;line-height:1.649414;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_63a9c5bbcd85c963cb419b52.woff')format("woff");}.ff9{font-family:ff9;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;}
.m6{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.240699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240699,0.000000,0.000000,0.250000,0,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);}
.m5{transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264130,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.273164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273164,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.278738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278738,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);}
.v12{vertical-align:-62.789474px;}
.v13{vertical-align:-46.977045px;}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v11{vertical-align:-10.080000px;}
.va{vertical-align:-8.640000px;}
.v4{vertical-align:-5.760000px;}
.v7{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.760000px;}
.vc{vertical-align:12.960000px;}
.v10{vertical-align:15.840000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.vf{vertical-align:27.360000px;}
.v8{vertical-align:30.240000px;}
.v9{vertical-align:35.280000px;}
.ve{vertical-align:55.440000px;}
.vb{vertical-align:65.520000px;}
.vd{vertical-align:81.360000px;}
.ls25{letter-spacing:-1.698000px;}
.ls26{letter-spacing:-1.080000px;}
.ls1b{letter-spacing:-0.924951px;}
.ls6{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.208200px;}
.ls23{letter-spacing:-0.160868px;}
.lsa{letter-spacing:-0.053280px;}
.ls28{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.ls27{letter-spacing:0.036000px;}
.ls19{letter-spacing:0.079200px;}
.lsc{letter-spacing:0.119520px;}
.ls17{letter-spacing:0.135600px;}
.ls16{letter-spacing:0.173280px;}
.ls3{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.237600px;}
.ls1e{letter-spacing:0.244430px;}
.ls20{letter-spacing:0.259920px;}
.ls7{letter-spacing:0.262200px;}
.ls12{letter-spacing:0.266400px;}
.ls22{letter-spacing:0.298800px;}
.ls18{letter-spacing:0.301200px;}
.ls9{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.364800px;}
.ls2c{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.705864px;}
.ls2{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.900000px;}
.ls24{letter-spacing:0.912000px;}
.ls11{letter-spacing:1.620000px;}
.lse{letter-spacing:1.800000px;}
.lsd{letter-spacing:2.124000px;}
.lsf{letter-spacing:2.340000px;}
.ls1{letter-spacing:3.780000px;}
.ls21{letter-spacing:13.860000px;}
.ls2b{letter-spacing:16.506720px;}
.ls15{letter-spacing:36.180000px;}
.ls29{letter-spacing:46.170720px;}
.ls13{letter-spacing:46.260000px;}
.ls2a{letter-spacing:47.610720px;}
.ls1f{letter-spacing:126.324000px;}
.ls1a{letter-spacing:154.424761px;}
.ls14{letter-spacing:201.060000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-59.760000px;}
.ws13{word-spacing:-42.061200px;}
.wse{word-spacing:-41.760000px;}
.ws11{word-spacing:-36.955440px;}
.wsf{word-spacing:-36.000000px;}
.ws17{word-spacing:-31.353578px;}
.ws0{word-spacing:-16.560000px;}
.ws1a{word-spacing:-15.852000px;}
.ws1{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.300000px;}
.ws19{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws1c{word-spacing:-13.860000px;}
.ws1b{word-spacing:-13.242000px;}
.ws1f{word-spacing:-12.204000px;}
.ws2{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.737280px;}
.ws3{word-spacing:-9.720000px;}
.wsd{word-spacing:-0.773274px;}
.ws16{word-spacing:-0.033343px;}
.ws8{word-spacing:0.000000px;}
.wsb{word-spacing:0.857534px;}
.ws18{word-spacing:18.992644px;}
.wsc{word-spacing:22.215208px;}
.ws12{word-spacing:51.119280px;}
.wsa{word-spacing:116.396575px;}
.ws1e{word-spacing:245.874000px;}
.ws1d{word-spacing:259.638000px;}
.ws15{word-spacing:375.984767px;}
.ws14{word-spacing:390.733723px;}
._1{margin-left:-1917.060480px;}
._3{margin-left:-1588.608000px;}
._4{margin-left:-1170.942000px;}
._5{margin-left:-1111.639680px;}
._19{margin-left:-1110.617040px;}
._30{margin-left:-303.553484px;}
._2f{margin-left:-289.803713px;}
._32{margin-left:-223.641796px;}
._28{margin-left:-184.336608px;}
._31{margin-left:-173.052721px;}
._2b{margin-left:-165.323288px;}
._27{margin-left:-161.994632px;}
._29{margin-left:-154.031298px;}
._25{margin-left:-114.983464px;}
._26{margin-left:-64.747190px;}
._9{margin-left:-3.346560px;}
._10{margin-left:-2.148720px;}
._2{margin-left:-1.126080px;}
._0{width:1.321920px;}
._8{width:2.752800px;}
._e{width:3.919440px;}
._b{width:5.245440px;}
._a{width:6.812640px;}
._6{width:8.668800px;}
._7{width:9.681120px;}
._c{width:10.697040px;}
._d{width:11.868480px;}
._f{width:13.685040px;}
._11{width:16.852320px;}
._15{width:18.226800px;}
._12{width:19.541520px;}
._13{width:21.028320px;}
._18{width:22.243440px;}
._17{width:23.425920px;}
._1a{width:25.577280px;}
._1c{width:27.190800px;}
._1b{width:28.505520px;}
._16{width:29.700720px;}
._1f{width:32.432640px;}
._20{width:33.883920px;}
._14{width:34.899840px;}
._2d{width:36.875520px;}
._37{width:39.322080px;}
._3c{width:44.222400px;}
._36{width:45.656640px;}
._3e{width:49.068000px;}
._22{width:50.490000px;}
._23{width:51.632640px;}
._34{width:54.552720px;}
._35{width:55.906080px;}
._3a{width:57.478560px;}
._1e{width:67.289760px;}
._39{width:69.429360px;}
._3d{width:74.998800px;}
._3b{width:122.328720px;}
._1d{width:126.504000px;}
._24{width:143.651280px;}
._21{width:171.068880px;}
._33{width:175.140000px;}
._2e{width:198.381840px;}
._2a{width:201.036000px;}
._2c{width:202.117440px;}
._38{width:285.390000px;}
.fc8{color:transparent;}
.fc6{color:rgb(47,84,150);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(31,78,121);}
.fc7{color:rgb(89,89,89);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(33,33,33);}
.fc1{color:rgb(45,45,45);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:33.343376px;}
.fs8{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fsd{font-size:54.000000px;}
.fs9{font-size:57.110342px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:67.410000px;}
.fs6{font-size:67.416830px;}
.fsc{font-size:69.799601px;}
.fs0{font-size:77.760000px;}
.fse{font-size:84.240000px;}
.fsa{font-size:85.611560px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:3.947449px;}
.y7c{bottom:4.057514px;}
.y101{bottom:5.760000px;}
.y107{bottom:6.120000px;}
.y12f{bottom:6.300000px;}
.y8{bottom:6.480000px;}
.y7{bottom:6.840000px;}
.y75{bottom:7.137953px;}
.y172{bottom:7.665000px;}
.yac{bottom:10.287063px;}
.y10a{bottom:11.340000px;}
.ya{bottom:11.700000px;}
.y9{bottom:12.420000px;}
.y123{bottom:13.320000px;}
.yb0{bottom:16.061551px;}
.yaf{bottom:16.733616px;}
.yba{bottom:17.505917px;}
.y126{bottom:17.640000px;}
.yad{bottom:21.359493px;}
.y16c{bottom:22.395000px;}
.y127{bottom:22.860000px;}
.y100{bottom:25.560000px;}
.y106{bottom:25.920000px;}
.y12e{bottom:26.100000px;}
.yb2{bottom:26.936583px;}
.yae{bottom:27.609822px;}
.yb9{bottom:28.421979px;}
.yb1{bottom:30.244132px;}
.y122{bottom:33.300000px;}
.y16b{bottom:33.915000px;}
.yb{bottom:36.216000px;}
.y125{bottom:37.440000px;}
.y133{bottom:45.354000px;}
.yff{bottom:45.360000px;}
.y12a{bottom:45.540000px;}
.y136{bottom:45.570000px;}
.y12d{bottom:45.585000px;}
.y132{bottom:45.714000px;}
.y105{bottom:45.720000px;}
.y10c{bottom:45.900000px;}
.y12c{bottom:45.945000px;}
.y176{bottom:49.785000px;}
.y16a{bottom:50.475000px;}
.y6{bottom:51.156000px;}
.y121{bottom:53.100000px;}
.y40{bottom:57.816000px;}
.y104{bottom:65.520000px;}
.y109{bottom:65.700000px;}
.y175{bottom:66.270000px;}
.y169{bottom:66.810000px;}
.y3f{bottom:72.756000px;}
.y167{bottom:74.700000px;}
.y168{bottom:83.370000px;}
.y103{bottom:85.500000px;}
.y3e{bottom:89.856000px;}
.y166{bottom:91.260000px;}
.y174{bottom:99.750000px;}
.y1ac{bottom:99.936000px;}
.y79{bottom:100.656000px;}
.y170{bottom:106.095000px;}
.ye1{bottom:106.956000px;}
.y16f{bottom:107.745000px;}
.y3c{bottom:109.656000px;}
.y131{bottom:110.196000px;}
.y173{bottom:116.205000px;}
.y1ab{bottom:117.216000px;}
.yb5{bottom:120.096000px;}
.y78{bottom:120.456000px;}
.y164{bottom:122.796000px;}
.y16d{bottom:125.310000px;}
.ye0{bottom:126.756000px;}
.y3b{bottom:129.456000px;}
.yfd{bottom:130.896000px;}
.y1aa{bottom:134.496000px;}
.yb4{bottom:140.076000px;}
.y77{bottom:140.256000px;}
.y163{bottom:142.596000px;}
.ydf{bottom:146.736000px;}
.y3a{bottom:149.436000px;}
.y1a9{bottom:151.770000px;}
.yfc{bottom:155.910000px;}
.y76{bottom:156.630000px;}
.y74{bottom:156.690000px;}
.y162{bottom:162.390000px;}
.yde{bottom:166.170000px;}
.y1a8{bottom:168.870000px;}
.y39{bottom:169.230000px;}
.y130{bottom:170.490000px;}
.yfb{bottom:170.670000px;}
.y161{bottom:182.190000px;}
.y73{bottom:185.250000px;}
.ydd{bottom:185.970000px;}
.y1a7{bottom:186.150000px;}
.y38{bottom:189.030000px;}
.yfa{bottom:190.470000px;}
.y160{bottom:202.170000px;}
.y1a6{bottom:203.430000px;}
.y72{bottom:205.050000px;}
.ydc{bottom:205.770000px;}
.y37{bottom:208.830000px;}
.yf9{bottom:210.270000px;}
.y1a5{bottom:220.710000px;}
.y15f{bottom:221.970000px;}
.y71{bottom:224.850000px;}
.ydb{bottom:225.930000px;}
.y16e{bottom:228.240000px;}
.y36{bottom:228.630000px;}
.yf8{bottom:230.070000px;}
.y12b{bottom:230.610000px;}
.y171{bottom:233.310000px;}
.y1a4{bottom:237.990000px;}
.y15e{bottom:241.770000px;}
.y70{bottom:244.830000px;}
.yab{bottom:245.040000px;}
.yda{bottom:245.910000px;}
.y35{bottom:248.610000px;}
.yf7{bottom:249.870000px;}
.y1a3{bottom:255.270000px;}
.y15d{bottom:261.570000px;}
.y6f{bottom:264.270000px;}
.yd9{bottom:265.710000px;}
.y34{bottom:268.410000px;}
.yf6{bottom:269.850000px;}
.yb3{bottom:272.010000px;}
.y1a2{bottom:272.370000px;}
.y15c{bottom:281.415000px;}
.yd8{bottom:285.555000px;}
.y33{bottom:288.255000px;}
.yf5{bottom:289.695000px;}
.y129{bottom:290.955000px;}
.y6e{bottom:293.475000px;}
.yaa{bottom:298.515000px;}
.y15b{bottom:301.035000px;}
.yd7{bottom:305.355000px;}
.y1a1{bottom:306.975000px;}
.y32{bottom:308.055000px;}
.yf4{bottom:309.495000px;}
.y6d{bottom:313.275000px;}
.ya9{bottom:318.315000px;}
.y15a{bottom:321.195000px;}
.y1a0{bottom:324.255000px;}
.yd6{bottom:325.155000px;}
.y31{bottom:327.855000px;}
.yf3{bottom:329.295000px;}
.y6c{bottom:333.075000px;}
.ya8{bottom:338.115000px;}
.y159{bottom:340.995000px;}
.y19f{bottom:341.535000px;}
.yd5{bottom:345.135000px;}
.y30{bottom:347.835000px;}
.yf2{bottom:348.735000px;}
.y128{bottom:351.255000px;}
.y6b{bottom:353.055000px;}
.ya7{bottom:357.915000px;}
.y19e{bottom:358.635000px;}
.y158{bottom:360.795000px;}
.yd4{bottom:364.935000px;}
.y2f{bottom:367.275000px;}
.y3d{bottom:367.635000px;}
.yf1{bottom:368.715000px;}
.y6a{bottom:372.495000px;}
.y19d{bottom:375.915000px;}
.ya6{bottom:377.715000px;}
.y157{bottom:380.595000px;}
.yd3{bottom:384.735000px;}
.y2e{bottom:387.075000px;}
.yf0{bottom:388.515000px;}
.y19c{bottom:393.195000px;}
.ya5{bottom:397.695000px;}
.y156{bottom:400.575000px;}
.y69{bottom:401.655000px;}
.yd2{bottom:404.535000px;}
.y2d{bottom:404.895000px;}
.y19b{bottom:410.475000px;}
.y124{bottom:411.555000px;}
.ya4{bottom:417.495000px;}
.yef{bottom:417.675000px;}
.y155{bottom:420.375000px;}
.y68{bottom:421.455000px;}
.yd1{bottom:424.335000px;}
.y19a{bottom:427.755000px;}
.y2c{bottom:433.155000px;}
.ya3{bottom:436.215000px;}
.yee{bottom:437.475000px;}
.y154{bottom:439.815000px;}
.y67{bottom:441.255000px;}
.ya2{bottom:443.775000px;}
.yd0{bottom:444.315000px;}
.y199{bottom:445.035000px;}
.y2b{bottom:450.615000px;}
.yed{bottom:457.275000px;}
.y153{bottom:459.615000px;}
.y66{bottom:461.235000px;}
.y198{bottom:462.135000px;}
.y120{bottom:463.395000px;}
.ycf{bottom:464.115000px;}
.y2a{bottom:467.895000px;}
.ya1{bottom:468.615000px;}
.yec{bottom:477.255000px;}
.y197{bottom:479.415000px;}
.y65{bottom:481.035000px;}
.yce{bottom:483.915000px;}
.y29{bottom:485.175000px;}
.ya0{bottom:488.415000px;}
.y152{bottom:488.775000px;}
.y196{bottom:496.695000px;}
.yeb{bottom:497.055000px;}
.y64{bottom:500.835000px;}
.y28{bottom:502.455000px;}
.ycd{bottom:503.715000px;}
.y9f{bottom:508.395000px;}
.y151{bottom:508.755000px;}
.y195{bottom:513.975000px;}
.yea{bottom:516.855000px;}
.y27{bottom:519.555000px;}
.y63{bottom:520.635000px;}
.ycc{bottom:523.515000px;}
.y9e{bottom:528.195000px;}
.y150{bottom:528.555000px;}
.y194{bottom:531.255000px;}
.ye9{bottom:536.655000px;}
.y26{bottom:536.835000px;}
.y62{bottom:540.435000px;}
.ycb{bottom:543.495000px;}
.y9d{bottom:547.995000px;}
.y14f{bottom:548.355000px;}
.y193{bottom:548.535000px;}
.y25{bottom:554.115000px;}
.ye8{bottom:556.125000px;}
.y11f{bottom:556.485000px;}
.y61{bottom:560.445000px;}
.yca{bottom:563.325000px;}
.y192{bottom:565.665000px;}
.y9c{bottom:567.465000px;}
.y14e{bottom:568.185000px;}
.y24{bottom:571.425000px;}
.ye7{bottom:576.105000px;}
.y11e{bottom:576.465000px;}
.y60{bottom:580.245000px;}
.y191{bottom:582.945000px;}
.yc9{bottom:583.125000px;}
.y14d{bottom:587.985000px;}
.y23{bottom:588.705000px;}
.y9b{bottom:595.725000px;}
.ye6{bottom:595.905000px;}
.y11d{bottom:596.625000px;}
.y5f{bottom:599.685000px;}
.y190{bottom:600.225000px;}
.yc8{bottom:602.925000px;}
.y9a{bottom:603.285000px;}
.y22{bottom:605.805000px;}
.y14c{bottom:607.965000px;}
.y10b{bottom:610.665000px;}
.y11c{bottom:616.425000px;}
.y18f{bottom:617.505000px;}
.y5e{bottom:619.485000px;}
.yc7{bottom:622.725000px;}
.y21{bottom:623.085000px;}
.y14b{bottom:627.765000px;}
.y99{bottom:629.385000px;}
.y18e{bottom:634.785000px;}
.y11b{bottom:636.225000px;}
.y5d{bottom:639.645000px;}
.y20{bottom:640.365000px;}
.yc6{bottom:642.705000px;}
.y14a{bottom:647.565000px;}
.y98{bottom:649.185000px;}
.y18d{bottom:652.065000px;}
.y11a{bottom:656.025000px;}
.y1f{bottom:657.645000px;}
.y5c{bottom:659.625000px;}
.yc5{bottom:662.505000px;}
.y149{bottom:667.365000px;}
.y97{bottom:668.985000px;}
.y18c{bottom:669.165000px;}
.y108{bottom:670.965000px;}
.y1e{bottom:674.925000px;}
.y119{bottom:676.005000px;}
.y1cb{bottom:677.805000px;}
.y5b{bottom:679.425000px;}
.yc4{bottom:682.305000px;}
.y18b{bottom:686.445000px;}
.y148{bottom:687.165000px;}
.y96{bottom:688.965000px;}
.y1d{bottom:692.205000px;}
.y1ca{bottom:695.085000px;}
.y118{bottom:695.805000px;}
.y5a{bottom:699.225000px;}
.yc3{bottom:702.105000px;}
.y18a{bottom:703.725000px;}
.y147{bottom:707.145000px;}
.y95{bottom:708.765000px;}
.y1c{bottom:709.305000px;}
.y1c9{bottom:712.365000px;}
.y117{bottom:715.605000px;}
.y59{bottom:719.025000px;}
.y189{bottom:721.005000px;}
.yc2{bottom:721.905000px;}
.y1b{bottom:726.585000px;}
.y146{bottom:726.945000px;}
.y94{bottom:727.485000px;}
.y1c8{bottom:729.645000px;}
.y93{bottom:735.045000px;}
.y116{bottom:735.405000px;}
.y188{bottom:738.285000px;}
.y58{bottom:738.825000px;}
.yc1{bottom:741.885000px;}
.y1a{bottom:743.865000px;}
.y145{bottom:746.745000px;}
.y1c7{bottom:746.925000px;}
.y102{bottom:751.065000px;}
.y115{bottom:755.205000px;}
.y187{bottom:755.385000px;}
.y57{bottom:758.805000px;}
.y19{bottom:761.145000px;}
.y92{bottom:761.325000px;}
.yc0{bottom:761.685000px;}
.y1c6{bottom:764.025000px;}
.y144{bottom:766.545000px;}
.y186{bottom:772.665000px;}
.y114{bottom:775.185000px;}
.y18{bottom:778.425000px;}
.y56{bottom:778.605000px;}
.y91{bottom:781.125000px;}
.y1c5{bottom:781.305000px;}
.ybf{bottom:781.485000px;}
.y143{bottom:786.345000px;}
.y185{bottom:789.945000px;}
.y113{bottom:794.625000px;}
.y17{bottom:795.705000px;}
.y55{bottom:798.405000px;}
.y1c4{bottom:798.585000px;}
.y90{bottom:800.925000px;}
.y142{bottom:806.325000px;}
.y184{bottom:807.225000px;}
.y16{bottom:812.805000px;}
.y112{bottom:814.425000px;}
.y1c3{bottom:815.865000px;}
.y54{bottom:818.205000px;}
.y8f{bottom:820.725000px;}
.y183{bottom:824.505000px;}
.y141{bottom:826.125000px;}
.y15{bottom:830.085000px;}
.y1c2{bottom:833.145000px;}
.y111{bottom:834.225000px;}
.y53{bottom:838.005000px;}
.y8e{bottom:840.570000px;}
.y182{bottom:841.830000px;}
.y140{bottom:845.970000px;}
.y14{bottom:847.410000px;}
.ybe{bottom:850.110000px;}
.y1c1{bottom:850.290000px;}
.yfe{bottom:851.010000px;}
.y110{bottom:854.070000px;}
.y52{bottom:858.030000px;}
.y181{bottom:858.930000px;}
.y8d{bottom:861.630000px;}
.y13f{bottom:865.410000px;}
.y1c0{bottom:867.570000px;}
.y13{bottom:869.010000px;}
.y8c{bottom:869.190000px;}
.ybd{bottom:869.910000px;}
.y10f{bottom:874.050000px;}
.y180{bottom:876.210000px;}
.y51{bottom:877.830000px;}
.y1bf{bottom:884.850000px;}
.y13e{bottom:885.210000px;}
.ybc{bottom:889.710000px;}
.y17f{bottom:893.490000px;}
.y10e{bottom:893.850000px;}
.y12{bottom:894.390000px;}
.y8b{bottom:895.290000px;}
.y50{bottom:897.630000px;}
.y1be{bottom:902.130000px;}
.y11{bottom:908.970000px;}
.ybb{bottom:909.510000px;}
.y10d{bottom:910.590000px;}
.y17e{bottom:910.770000px;}
.y165{bottom:911.160000px;}
.y13d{bottom:914.550000px;}
.y8a{bottom:915.270000px;}
.ye5{bottom:917.070000px;}
.y4f{bottom:917.430000px;}
.y1bd{bottom:919.410000px;}
.yb7{bottom:925.815000px;}
.y17d{bottom:928.050000px;}
.y10{bottom:933.990000px;}
.y13c{bottom:934.350000px;}
.y89{bottom:935.070000px;}
.y1bc{bottom:936.690000px;}
.ye4{bottom:936.870000px;}
.y4e{bottom:937.230000px;}
.yb6{bottom:943.890000px;}
.y17c{bottom:945.330000px;}
.yf{bottom:949.110000px;}
.y1bb{bottom:953.790000px;}
.y13b{bottom:954.150000px;}
.y88{bottom:954.870000px;}
.ye3{bottom:956.850000px;}
.y4d{bottom:957.210000px;}
.y17b{bottom:962.430000px;}
.ye{bottom:970.170000px;}
.y1ba{bottom:971.070000px;}
.y13a{bottom:973.950000px;}
.y87{bottom:974.670000px;}
.ye2{bottom:976.650000px;}
.y4c{bottom:977.010000px;}
.y17a{bottom:979.710000px;}
.y1b9{bottom:988.350000px;}
.yd{bottom:993.570000px;}
.y139{bottom:993.750000px;}
.y86{bottom:994.470000px;}
.y4b{bottom:996.810000px;}
.y179{bottom:996.990000px;}
.y1b8{bottom:1005.630000px;}
.y138{bottom:1013.730000px;}
.y85{bottom:1014.450000px;}
.y178{bottom:1016.250000px;}
.y4a{bottom:1016.610000px;}
.y1b7{bottom:1022.910000px;}
.yc{bottom:1025.250000px;}
.y137{bottom:1028.130000px;}
.y84{bottom:1034.250000px;}
.y177{bottom:1036.050000px;}
.y49{bottom:1036.410000px;}
.y1b6{bottom:1040.190000px;}
.y83{bottom:1054.050000px;}
.y5{bottom:1054.230000px;}
.y48{bottom:1056.390000px;}
.y1b5{bottom:1057.290000px;}
.y82{bottom:1073.850000px;}
.y1b4{bottom:1074.570000px;}
.y47{bottom:1076.190000px;}
.y4{bottom:1088.070000px;}
.y135{bottom:1088.250000px;}
.y1b3{bottom:1091.850000px;}
.y81{bottom:1093.650000px;}
.y46{bottom:1095.990000px;}
.y1b2{bottom:1109.130000px;}
.y80{bottom:1113.630000px;}
.y45{bottom:1115.790000px;}
.y3{bottom:1119.030000px;}
.y1b1{bottom:1126.440000px;}
.y7f{bottom:1133.460000px;}
.y44{bottom:1135.620000px;}
.y1b0{bottom:1143.720000px;}
.y134{bottom:1148.580000px;}
.y2{bottom:1149.840000px;}
.y7e{bottom:1153.260000px;}
.y43{bottom:1155.600000px;}
.y1af{bottom:1160.820000px;}
.y7d{bottom:1173.060000px;}
.y42{bottom:1175.400000px;}
.y1ae{bottom:1178.100000px;}
.y1{bottom:1181.700000px;}
.y7b{bottom:1189.365000px;}
.y7a{bottom:1193.940000px;}
.y41{bottom:1195.200000px;}
.y1ad{bottom:1195.380000px;}
.h11{height:19.424625px;}
.h4{height:21.780000px;}
.he{height:22.498887px;}
.h1b{height:32.708419px;}
.h1d{height:32.724700px;}
.ha{height:38.158594px;}
.h6{height:39.183750px;}
.h5{height:42.086250px;}
.hd{height:43.215117px;}
.h1f{height:45.001467px;}
.h18{height:47.398816px;}
.h27{height:51.120000px;}
.h2a{height:53.709961px;}
.h19{height:56.022792px;}
.h1c{height:56.050678px;}
.hb{height:58.651172px;}
.hc{height:59.038594px;}
.h23{height:59.218594px;}
.h21{height:59.400000px;}
.h2b{height:59.439023px;}
.h25{height:59.580000px;}
.h28{height:59.616000px;}
.h9{height:60.226875px;}
.h1e{height:60.845533px;}
.h2d{height:61.423863px;}
.h7{height:65.010937px;}
.h12{height:66.159229px;}
.hf{height:66.165932px;}
.h3{height:66.757500px;}
.h26{height:66.780000px;}
.h20{height:68.470409px;}
.h2{height:78.367500px;}
.h24{height:79.380000px;}
.h13{height:81.668672px;}
.h2c{height:83.787539px;}
.h1a{height:83.981262px;}
.h10{height:88.891172px;}
.h17{height:91.110234px;}
.h8{height:96.508125px;}
.h16{height:96.623789px;}
.h22{height:99.216000px;}
.h14{height:111.908672px;}
.h15{height:121.350234px;}
.h29{height:258.120000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w13{width:45.756000px;}
.wd{width:45.900000px;}
.w12{width:50.580000px;}
.w6{width:50.998786px;}
.w3{width:55.296000px;}
.we{width:59.256000px;}
.w14{width:59.400000px;}
.w8{width:62.997654px;}
.w15{width:65.376000px;}
.w10{width:65.520000px;}
.wf{width:73.800000px;}
.w16{width:78.120000px;}
.w11{width:78.156000px;}
.wb{width:79.416000px;}
.wc{width:86.760000px;}
.wa{width:94.860000px;}
.w9{width:113.436000px;}
.w5{width:120.753707px;}
.w7{width:153.002295px;}
.w17{width:385.920000px;}
.w4{width:719.925000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:1.440000px;}
.x2c{left:3.352166px;}
.x38{left:6.696000px;}
.x3{left:8.100000px;}
.x4c{left:14.040000px;}
.x4e{left:18.180000px;}
.x3e{left:19.620000px;}
.x50{left:21.744000px;}
.x3d{left:22.860000px;}
.x4d{left:25.020000px;}
.x17{left:30.670817px;}
.x4f{left:40.968000px;}
.x2a{left:47.112424px;}
.x2b{left:48.277867px;}
.x1{left:54.179987px;}
.x9{left:58.139987px;}
.x24{left:60.654360px;}
.x2{left:62.100000px;}
.x33{left:64.619987px;}
.x25{left:74.048413px;}
.x53{left:80.999987px;}
.xd{left:82.439987px;}
.x28{left:88.907105px;}
.x36{left:94.860000px;}
.x52{left:101.130000px;}
.x10{left:108.035987px;}
.x4a{left:110.550000px;}
.xf{left:111.635987px;}
.x4{left:118.296000px;}
.x27{left:121.631687px;}
.x48{left:125.100000px;}
.x4b{left:139.890000px;}
.x23{left:140.908011px;}
.x26{left:142.353453px;}
.x15{left:146.915987px;}
.x49{left:152.460000px;}
.x39{left:155.010000px;}
.x34{left:170.669987px;}
.x13{left:176.340000px;}
.x29{left:180.240000px;}
.x46{left:187.920000px;}
.x51{left:191.310000px;}
.x2e{left:200.909987px;}
.x47{left:210.420000px;}
.x3a{left:229.530000px;}
.x35{left:236.729987px;}
.x2d{left:243.209987px;}
.xc{left:269.309987px;}
.x3b{left:295.770000px;}
.x14{left:297.029987px;}
.x8{left:333.039000px;}
.x7{left:338.079000px;}
.xe{left:353.774987px;}
.x3c{left:374.655000px;}
.xa{left:417.854987px;}
.x6{left:429.009000px;}
.x32{left:441.074987px;}
.x5{left:442.509000px;}
.xb{left:446.474987px;}
.x3f{left:467.895000px;}
.x11{left:473.474987px;}
.x19{left:494.174987px;}
.x45{left:500.504987px;}
.x40{left:514.365000px;}
.x12{left:527.504987px;}
.x1a{left:529.844987px;}
.x21{left:539.384987px;}
.x1e{left:567.644987px;}
.x41{left:574.485000px;}
.x1d{left:586.724987px;}
.x2f{left:588.705000px;}
.x1b{left:592.484987px;}
.x22{left:601.844987px;}
.x16{left:605.040000px;}
.x20{left:620.384987px;}
.x1f{left:638.564987px;}
.x1c{left:646.844987px;}
.x42{left:649.185000px;}
.x18{left:656.024987px;}
.x30{left:684.285000px;}
.x43{left:715.470000px;}
.x31{left:764.430000px;}
.x44{left:794.310000px;}
@media print{
.v12{vertical-align:-55.812866pt;}
.v13{vertical-align:-41.757373pt;}
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v11{vertical-align:-8.960000pt;}
.va{vertical-align:-7.680000pt;}
.v4{vertical-align:-5.120000pt;}
.v7{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.120000pt;}
.vc{vertical-align:11.520000pt;}
.v10{vertical-align:14.080000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.vf{vertical-align:24.320000pt;}
.v8{vertical-align:26.880000pt;}
.v9{vertical-align:31.360000pt;}
.ve{vertical-align:49.280000pt;}
.vb{vertical-align:58.240000pt;}
.vd{vertical-align:72.320000pt;}
.ls25{letter-spacing:-1.509333pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls1b{letter-spacing:-0.822179pt;}
.ls6{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.185067pt;}
.ls23{letter-spacing:-0.142994pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls28{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.ls27{letter-spacing:0.032000pt;}
.ls19{letter-spacing:0.070400pt;}
.lsc{letter-spacing:0.106240pt;}
.ls17{letter-spacing:0.120533pt;}
.ls16{letter-spacing:0.154027pt;}
.ls3{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.211200pt;}
.ls1e{letter-spacing:0.217271pt;}
.ls20{letter-spacing:0.231040pt;}
.ls7{letter-spacing:0.233067pt;}
.ls12{letter-spacing:0.236800pt;}
.ls22{letter-spacing:0.265600pt;}
.ls18{letter-spacing:0.267733pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.324267pt;}
.ls2c{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.627435pt;}
.ls2{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls24{letter-spacing:0.810667pt;}
.ls11{letter-spacing:1.440000pt;}
.lse{letter-spacing:1.600000pt;}
.lsd{letter-spacing:1.888000pt;}
.lsf{letter-spacing:2.080000pt;}
.ls1{letter-spacing:3.360000pt;}
.ls21{letter-spacing:12.320000pt;}
.ls2b{letter-spacing:14.672640pt;}
.ls15{letter-spacing:32.160000pt;}
.ls29{letter-spacing:41.040640pt;}
.ls13{letter-spacing:41.120000pt;}
.ls2a{letter-spacing:42.320640pt;}
.ls1f{letter-spacing:112.288000pt;}
.ls1a{letter-spacing:137.266454pt;}
.ls14{letter-spacing:178.720000pt;}
.ws10{word-spacing:-53.120000pt;}
.ws13{word-spacing:-37.387733pt;}
.wse{word-spacing:-37.120000pt;}
.ws11{word-spacing:-32.849280pt;}
.wsf{word-spacing:-32.000000pt;}
.ws17{word-spacing:-27.869847pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.090667pt;}
.ws1{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws19{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1c{word-spacing:-12.320000pt;}
.ws1b{word-spacing:-11.770667pt;}
.ws1f{word-spacing:-10.848000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.655360pt;}
.ws3{word-spacing:-8.640000pt;}
.wsd{word-spacing:-0.687355pt;}
.ws16{word-spacing:-0.029639pt;}
.ws8{word-spacing:0.000000pt;}
.wsb{word-spacing:0.762253pt;}
.ws18{word-spacing:16.882350pt;}
.wsc{word-spacing:19.746852pt;}
.ws12{word-spacing:45.439360pt;}
.wsa{word-spacing:103.463622pt;}
.ws1e{word-spacing:218.554667pt;}
.ws1d{word-spacing:230.789333pt;}
.ws15{word-spacing:334.208682pt;}
.ws14{word-spacing:347.318865pt;}
._1{margin-left:-1704.053760pt;}
._3{margin-left:-1412.096000pt;}
._4{margin-left:-1040.837333pt;}
._5{margin-left:-988.124160pt;}
._19{margin-left:-987.215147pt;}
._30{margin-left:-269.825319pt;}
._2f{margin-left:-257.603300pt;}
._32{margin-left:-198.792708pt;}
._28{margin-left:-163.854763pt;}
._31{margin-left:-153.824640pt;}
._2b{margin-left:-146.954034pt;}
._27{margin-left:-143.995228pt;}
._29{margin-left:-136.916709pt;}
._25{margin-left:-102.207524pt;}
._26{margin-left:-57.553057pt;}
._9{margin-left:-2.974720pt;}
._10{margin-left:-1.909973pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.175040pt;}
._8{width:2.446933pt;}
._e{width:3.483947pt;}
._b{width:4.662613pt;}
._a{width:6.055680pt;}
._6{width:7.705600pt;}
._7{width:8.605440pt;}
._c{width:9.508480pt;}
._d{width:10.549760pt;}
._f{width:12.164480pt;}
._11{width:14.979840pt;}
._15{width:16.201600pt;}
._12{width:17.370240pt;}
._13{width:18.691840pt;}
._18{width:19.771947pt;}
._17{width:20.823040pt;}
._1a{width:22.735360pt;}
._1c{width:24.169600pt;}
._1b{width:25.338240pt;}
._16{width:26.400640pt;}
._1f{width:28.829013pt;}
._20{width:30.119040pt;}
._14{width:31.022080pt;}
._2d{width:32.778240pt;}
._37{width:34.952960pt;}
._3c{width:39.308800pt;}
._36{width:40.583680pt;}
._3e{width:43.616000pt;}
._22{width:44.880000pt;}
._23{width:45.895680pt;}
._34{width:48.491307pt;}
._35{width:49.694293pt;}
._3a{width:51.092053pt;}
._1e{width:59.813120pt;}
._39{width:61.714987pt;}
._3d{width:66.665600pt;}
._3b{width:108.736640pt;}
._1d{width:112.448000pt;}
._24{width:127.690027pt;}
._21{width:152.061227pt;}
._33{width:155.680000pt;}
._2e{width:176.339413pt;}
._2a{width:178.698667pt;}
._2c{width:179.659947pt;}
._38{width:253.680000pt;}
.fsb{font-size:29.638556pt;}
.fs8{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fsd{font-size:48.000000pt;}
.fs9{font-size:50.764749pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:59.920000pt;}
.fs6{font-size:59.926071pt;}
.fsc{font-size:62.044089pt;}
.fs0{font-size:69.120000pt;}
.fse{font-size:74.880000pt;}
.fsa{font-size:76.099165pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:3.508844pt;}
.y7c{bottom:3.606679pt;}
.y101{bottom:5.120000pt;}
.y107{bottom:5.440000pt;}
.y12f{bottom:5.600000pt;}
.y8{bottom:5.760000pt;}
.y7{bottom:6.080000pt;}
.y75{bottom:6.344847pt;}
.y172{bottom:6.813333pt;}
.yac{bottom:9.144056pt;}
.y10a{bottom:10.080000pt;}
.ya{bottom:10.400000pt;}
.y9{bottom:11.040000pt;}
.y123{bottom:11.840000pt;}
.yb0{bottom:14.276934pt;}
.yaf{bottom:14.874326pt;}
.yba{bottom:15.560815pt;}
.y126{bottom:15.680000pt;}
.yad{bottom:18.986216pt;}
.y16c{bottom:19.906667pt;}
.y127{bottom:20.320000pt;}
.y100{bottom:22.720000pt;}
.y106{bottom:23.040000pt;}
.y12e{bottom:23.200000pt;}
.yb2{bottom:23.943630pt;}
.yae{bottom:24.542064pt;}
.yb9{bottom:25.263981pt;}
.yb1{bottom:26.883673pt;}
.y122{bottom:29.600000pt;}
.y16b{bottom:30.146667pt;}
.yb{bottom:32.192000pt;}
.y125{bottom:33.280000pt;}
.y133{bottom:40.314667pt;}
.yff{bottom:40.320000pt;}
.y12a{bottom:40.480000pt;}
.y136{bottom:40.506667pt;}
.y12d{bottom:40.520000pt;}
.y132{bottom:40.634667pt;}
.y105{bottom:40.640000pt;}
.y10c{bottom:40.800000pt;}
.y12c{bottom:40.840000pt;}
.y176{bottom:44.253333pt;}
.y16a{bottom:44.866667pt;}
.y6{bottom:45.472000pt;}
.y121{bottom:47.200000pt;}
.y40{bottom:51.392000pt;}
.y104{bottom:58.240000pt;}
.y109{bottom:58.400000pt;}
.y175{bottom:58.906667pt;}
.y169{bottom:59.386667pt;}
.y3f{bottom:64.672000pt;}
.y167{bottom:66.400000pt;}
.y168{bottom:74.106667pt;}
.y103{bottom:76.000000pt;}
.y3e{bottom:79.872000pt;}
.y166{bottom:81.120000pt;}
.y174{bottom:88.666667pt;}
.y1ac{bottom:88.832000pt;}
.y79{bottom:89.472000pt;}
.y170{bottom:94.306667pt;}
.ye1{bottom:95.072000pt;}
.y16f{bottom:95.773333pt;}
.y3c{bottom:97.472000pt;}
.y131{bottom:97.952000pt;}
.y173{bottom:103.293333pt;}
.y1ab{bottom:104.192000pt;}
.yb5{bottom:106.752000pt;}
.y78{bottom:107.072000pt;}
.y164{bottom:109.152000pt;}
.y16d{bottom:111.386667pt;}
.ye0{bottom:112.672000pt;}
.y3b{bottom:115.072000pt;}
.yfd{bottom:116.352000pt;}
.y1aa{bottom:119.552000pt;}
.yb4{bottom:124.512000pt;}
.y77{bottom:124.672000pt;}
.y163{bottom:126.752000pt;}
.ydf{bottom:130.432000pt;}
.y3a{bottom:132.832000pt;}
.y1a9{bottom:134.906667pt;}
.yfc{bottom:138.586667pt;}
.y76{bottom:139.226667pt;}
.y74{bottom:139.280000pt;}
.y162{bottom:144.346667pt;}
.yde{bottom:147.706667pt;}
.y1a8{bottom:150.106667pt;}
.y39{bottom:150.426667pt;}
.y130{bottom:151.546667pt;}
.yfb{bottom:151.706667pt;}
.y161{bottom:161.946667pt;}
.y73{bottom:164.666667pt;}
.ydd{bottom:165.306667pt;}
.y1a7{bottom:165.466667pt;}
.y38{bottom:168.026667pt;}
.yfa{bottom:169.306667pt;}
.y160{bottom:179.706667pt;}
.y1a6{bottom:180.826667pt;}
.y72{bottom:182.266667pt;}
.ydc{bottom:182.906667pt;}
.y37{bottom:185.626667pt;}
.yf9{bottom:186.906667pt;}
.y1a5{bottom:196.186667pt;}
.y15f{bottom:197.306667pt;}
.y71{bottom:199.866667pt;}
.ydb{bottom:200.826667pt;}
.y16e{bottom:202.880000pt;}
.y36{bottom:203.226667pt;}
.yf8{bottom:204.506667pt;}
.y12b{bottom:204.986667pt;}
.y171{bottom:207.386667pt;}
.y1a4{bottom:211.546667pt;}
.y15e{bottom:214.906667pt;}
.y70{bottom:217.626667pt;}
.yab{bottom:217.813333pt;}
.yda{bottom:218.586667pt;}
.y35{bottom:220.986667pt;}
.yf7{bottom:222.106667pt;}
.y1a3{bottom:226.906667pt;}
.y15d{bottom:232.506667pt;}
.y6f{bottom:234.906667pt;}
.yd9{bottom:236.186667pt;}
.y34{bottom:238.586667pt;}
.yf6{bottom:239.866667pt;}
.yb3{bottom:241.786667pt;}
.y1a2{bottom:242.106667pt;}
.y15c{bottom:250.146667pt;}
.yd8{bottom:253.826667pt;}
.y33{bottom:256.226667pt;}
.yf5{bottom:257.506667pt;}
.y129{bottom:258.626667pt;}
.y6e{bottom:260.866667pt;}
.yaa{bottom:265.346667pt;}
.y15b{bottom:267.586667pt;}
.yd7{bottom:271.426667pt;}
.y1a1{bottom:272.866667pt;}
.y32{bottom:273.826667pt;}
.yf4{bottom:275.106667pt;}
.y6d{bottom:278.466667pt;}
.ya9{bottom:282.946667pt;}
.y15a{bottom:285.506667pt;}
.y1a0{bottom:288.226667pt;}
.yd6{bottom:289.026667pt;}
.y31{bottom:291.426667pt;}
.yf3{bottom:292.706667pt;}
.y6c{bottom:296.066667pt;}
.ya8{bottom:300.546667pt;}
.y159{bottom:303.106667pt;}
.y19f{bottom:303.586667pt;}
.yd5{bottom:306.786667pt;}
.y30{bottom:309.186667pt;}
.yf2{bottom:309.986667pt;}
.y128{bottom:312.226667pt;}
.y6b{bottom:313.826667pt;}
.ya7{bottom:318.146667pt;}
.y19e{bottom:318.786667pt;}
.y158{bottom:320.706667pt;}
.yd4{bottom:324.386667pt;}
.y2f{bottom:326.466667pt;}
.y3d{bottom:326.786667pt;}
.yf1{bottom:327.746667pt;}
.y6a{bottom:331.106667pt;}
.y19d{bottom:334.146667pt;}
.ya6{bottom:335.746667pt;}
.y157{bottom:338.306667pt;}
.yd3{bottom:341.986667pt;}
.y2e{bottom:344.066667pt;}
.yf0{bottom:345.346667pt;}
.y19c{bottom:349.506667pt;}
.ya5{bottom:353.506667pt;}
.y156{bottom:356.066667pt;}
.y69{bottom:357.026667pt;}
.yd2{bottom:359.586667pt;}
.y2d{bottom:359.906667pt;}
.y19b{bottom:364.866667pt;}
.y124{bottom:365.826667pt;}
.ya4{bottom:371.106667pt;}
.yef{bottom:371.266667pt;}
.y155{bottom:373.666667pt;}
.y68{bottom:374.626667pt;}
.yd1{bottom:377.186667pt;}
.y19a{bottom:380.226667pt;}
.y2c{bottom:385.026667pt;}
.ya3{bottom:387.746667pt;}
.yee{bottom:388.866667pt;}
.y154{bottom:390.946667pt;}
.y67{bottom:392.226667pt;}
.ya2{bottom:394.466667pt;}
.yd0{bottom:394.946667pt;}
.y199{bottom:395.586667pt;}
.y2b{bottom:400.546667pt;}
.yed{bottom:406.466667pt;}
.y153{bottom:408.546667pt;}
.y66{bottom:409.986667pt;}
.y198{bottom:410.786667pt;}
.y120{bottom:411.906667pt;}
.ycf{bottom:412.546667pt;}
.y2a{bottom:415.906667pt;}
.ya1{bottom:416.546667pt;}
.yec{bottom:424.226667pt;}
.y197{bottom:426.146667pt;}
.y65{bottom:427.586667pt;}
.yce{bottom:430.146667pt;}
.y29{bottom:431.266667pt;}
.ya0{bottom:434.146667pt;}
.y152{bottom:434.466667pt;}
.y196{bottom:441.506667pt;}
.yeb{bottom:441.826667pt;}
.y64{bottom:445.186667pt;}
.y28{bottom:446.626667pt;}
.ycd{bottom:447.746667pt;}
.y9f{bottom:451.906667pt;}
.y151{bottom:452.226667pt;}
.y195{bottom:456.866667pt;}
.yea{bottom:459.426667pt;}
.y27{bottom:461.826667pt;}
.y63{bottom:462.786667pt;}
.ycc{bottom:465.346667pt;}
.y9e{bottom:469.506667pt;}
.y150{bottom:469.826667pt;}
.y194{bottom:472.226667pt;}
.ye9{bottom:477.026667pt;}
.y26{bottom:477.186667pt;}
.y62{bottom:480.386667pt;}
.ycb{bottom:483.106667pt;}
.y9d{bottom:487.106667pt;}
.y14f{bottom:487.426667pt;}
.y193{bottom:487.586667pt;}
.y25{bottom:492.546667pt;}
.ye8{bottom:494.333333pt;}
.y11f{bottom:494.653333pt;}
.y61{bottom:498.173333pt;}
.yca{bottom:500.733333pt;}
.y192{bottom:502.813333pt;}
.y9c{bottom:504.413333pt;}
.y14e{bottom:505.053333pt;}
.y24{bottom:507.933333pt;}
.ye7{bottom:512.093333pt;}
.y11e{bottom:512.413333pt;}
.y60{bottom:515.773333pt;}
.y191{bottom:518.173333pt;}
.yc9{bottom:518.333333pt;}
.y14d{bottom:522.653333pt;}
.y23{bottom:523.293333pt;}
.y9b{bottom:529.533333pt;}
.ye6{bottom:529.693333pt;}
.y11d{bottom:530.333333pt;}
.y5f{bottom:533.053333pt;}
.y190{bottom:533.533333pt;}
.yc8{bottom:535.933333pt;}
.y9a{bottom:536.253333pt;}
.y22{bottom:538.493333pt;}
.y14c{bottom:540.413333pt;}
.y10b{bottom:542.813333pt;}
.y11c{bottom:547.933333pt;}
.y18f{bottom:548.893333pt;}
.y5e{bottom:550.653333pt;}
.yc7{bottom:553.533333pt;}
.y21{bottom:553.853333pt;}
.y14b{bottom:558.013333pt;}
.y99{bottom:559.453333pt;}
.y18e{bottom:564.253333pt;}
.y11b{bottom:565.533333pt;}
.y5d{bottom:568.573333pt;}
.y20{bottom:569.213333pt;}
.yc6{bottom:571.293333pt;}
.y14a{bottom:575.613333pt;}
.y98{bottom:577.053333pt;}
.y18d{bottom:579.613333pt;}
.y11a{bottom:583.133333pt;}
.y1f{bottom:584.573333pt;}
.y5c{bottom:586.333333pt;}
.yc5{bottom:588.893333pt;}
.y149{bottom:593.213333pt;}
.y97{bottom:594.653333pt;}
.y18c{bottom:594.813333pt;}
.y108{bottom:596.413333pt;}
.y1e{bottom:599.933333pt;}
.y119{bottom:600.893333pt;}
.y1cb{bottom:602.493333pt;}
.y5b{bottom:603.933333pt;}
.yc4{bottom:606.493333pt;}
.y18b{bottom:610.173333pt;}
.y148{bottom:610.813333pt;}
.y96{bottom:612.413333pt;}
.y1d{bottom:615.293333pt;}
.y1ca{bottom:617.853333pt;}
.y118{bottom:618.493333pt;}
.y5a{bottom:621.533333pt;}
.yc3{bottom:624.093333pt;}
.y18a{bottom:625.533333pt;}
.y147{bottom:628.573333pt;}
.y95{bottom:630.013333pt;}
.y1c{bottom:630.493333pt;}
.y1c9{bottom:633.213333pt;}
.y117{bottom:636.093333pt;}
.y59{bottom:639.133333pt;}
.y189{bottom:640.893333pt;}
.yc2{bottom:641.693333pt;}
.y1b{bottom:645.853333pt;}
.y146{bottom:646.173333pt;}
.y94{bottom:646.653333pt;}
.y1c8{bottom:648.573333pt;}
.y93{bottom:653.373333pt;}
.y116{bottom:653.693333pt;}
.y188{bottom:656.253333pt;}
.y58{bottom:656.733333pt;}
.yc1{bottom:659.453333pt;}
.y1a{bottom:661.213333pt;}
.y145{bottom:663.773333pt;}
.y1c7{bottom:663.933333pt;}
.y102{bottom:667.613333pt;}
.y115{bottom:671.293333pt;}
.y187{bottom:671.453333pt;}
.y57{bottom:674.493333pt;}
.y19{bottom:676.573333pt;}
.y92{bottom:676.733333pt;}
.yc0{bottom:677.053333pt;}
.y1c6{bottom:679.133333pt;}
.y144{bottom:681.373333pt;}
.y186{bottom:686.813333pt;}
.y114{bottom:689.053333pt;}
.y18{bottom:691.933333pt;}
.y56{bottom:692.093333pt;}
.y91{bottom:694.333333pt;}
.y1c5{bottom:694.493333pt;}
.ybf{bottom:694.653333pt;}
.y143{bottom:698.973333pt;}
.y185{bottom:702.173333pt;}
.y113{bottom:706.333333pt;}
.y17{bottom:707.293333pt;}
.y55{bottom:709.693333pt;}
.y1c4{bottom:709.853333pt;}
.y90{bottom:711.933333pt;}
.y142{bottom:716.733333pt;}
.y184{bottom:717.533333pt;}
.y16{bottom:722.493333pt;}
.y112{bottom:723.933333pt;}
.y1c3{bottom:725.213333pt;}
.y54{bottom:727.293333pt;}
.y8f{bottom:729.533333pt;}
.y183{bottom:732.893333pt;}
.y141{bottom:734.333333pt;}
.y15{bottom:737.853333pt;}
.y1c2{bottom:740.573333pt;}
.y111{bottom:741.533333pt;}
.y53{bottom:744.893333pt;}
.y8e{bottom:747.173333pt;}
.y182{bottom:748.293333pt;}
.y140{bottom:751.973333pt;}
.y14{bottom:753.253333pt;}
.ybe{bottom:755.653333pt;}
.y1c1{bottom:755.813333pt;}
.yfe{bottom:756.453333pt;}
.y110{bottom:759.173333pt;}
.y52{bottom:762.693333pt;}
.y181{bottom:763.493333pt;}
.y8d{bottom:765.893333pt;}
.y13f{bottom:769.253333pt;}
.y1c0{bottom:771.173333pt;}
.y13{bottom:772.453333pt;}
.y8c{bottom:772.613333pt;}
.ybd{bottom:773.253333pt;}
.y10f{bottom:776.933333pt;}
.y180{bottom:778.853333pt;}
.y51{bottom:780.293333pt;}
.y1bf{bottom:786.533333pt;}
.y13e{bottom:786.853333pt;}
.ybc{bottom:790.853333pt;}
.y17f{bottom:794.213333pt;}
.y10e{bottom:794.533333pt;}
.y12{bottom:795.013333pt;}
.y8b{bottom:795.813333pt;}
.y50{bottom:797.893333pt;}
.y1be{bottom:801.893333pt;}
.y11{bottom:807.973333pt;}
.ybb{bottom:808.453333pt;}
.y10d{bottom:809.413333pt;}
.y17e{bottom:809.573333pt;}
.y165{bottom:809.920000pt;}
.y13d{bottom:812.933333pt;}
.y8a{bottom:813.573333pt;}
.ye5{bottom:815.173333pt;}
.y4f{bottom:815.493333pt;}
.y1bd{bottom:817.253333pt;}
.yb7{bottom:822.946667pt;}
.y17d{bottom:824.933333pt;}
.y10{bottom:830.213333pt;}
.y13c{bottom:830.533333pt;}
.y89{bottom:831.173333pt;}
.y1bc{bottom:832.613333pt;}
.ye4{bottom:832.773333pt;}
.y4e{bottom:833.093333pt;}
.yb6{bottom:839.013333pt;}
.y17c{bottom:840.293333pt;}
.yf{bottom:843.653333pt;}
.y1bb{bottom:847.813333pt;}
.y13b{bottom:848.133333pt;}
.y88{bottom:848.773333pt;}
.ye3{bottom:850.533333pt;}
.y4d{bottom:850.853333pt;}
.y17b{bottom:855.493333pt;}
.ye{bottom:862.373333pt;}
.y1ba{bottom:863.173333pt;}
.y13a{bottom:865.733333pt;}
.y87{bottom:866.373333pt;}
.ye2{bottom:868.133333pt;}
.y4c{bottom:868.453333pt;}
.y17a{bottom:870.853333pt;}
.y1b9{bottom:878.533333pt;}
.yd{bottom:883.173333pt;}
.y139{bottom:883.333333pt;}
.y86{bottom:883.973333pt;}
.y4b{bottom:886.053333pt;}
.y179{bottom:886.213333pt;}
.y1b8{bottom:893.893333pt;}
.y138{bottom:901.093333pt;}
.y85{bottom:901.733333pt;}
.y178{bottom:903.333333pt;}
.y4a{bottom:903.653333pt;}
.y1b7{bottom:909.253333pt;}
.yc{bottom:911.333333pt;}
.y137{bottom:913.893333pt;}
.y84{bottom:919.333333pt;}
.y177{bottom:920.933333pt;}
.y49{bottom:921.253333pt;}
.y1b6{bottom:924.613333pt;}
.y83{bottom:936.933333pt;}
.y5{bottom:937.093333pt;}
.y48{bottom:939.013333pt;}
.y1b5{bottom:939.813333pt;}
.y82{bottom:954.533333pt;}
.y1b4{bottom:955.173333pt;}
.y47{bottom:956.613333pt;}
.y4{bottom:967.173333pt;}
.y135{bottom:967.333333pt;}
.y1b3{bottom:970.533333pt;}
.y81{bottom:972.133333pt;}
.y46{bottom:974.213333pt;}
.y1b2{bottom:985.893333pt;}
.y80{bottom:989.893333pt;}
.y45{bottom:991.813333pt;}
.y3{bottom:994.693333pt;}
.y1b1{bottom:1001.280000pt;}
.y7f{bottom:1007.520000pt;}
.y44{bottom:1009.440000pt;}
.y1b0{bottom:1016.640000pt;}
.y134{bottom:1020.960000pt;}
.y2{bottom:1022.080000pt;}
.y7e{bottom:1025.120000pt;}
.y43{bottom:1027.200000pt;}
.y1af{bottom:1031.840000pt;}
.y7d{bottom:1042.720000pt;}
.y42{bottom:1044.800000pt;}
.y1ae{bottom:1047.200000pt;}
.y1{bottom:1050.400000pt;}
.y7b{bottom:1057.213333pt;}
.y7a{bottom:1061.280000pt;}
.y41{bottom:1062.400000pt;}
.y1ad{bottom:1062.560000pt;}
.h11{height:17.266334pt;}
.h4{height:19.360000pt;}
.he{height:19.999011pt;}
.h1b{height:29.074150pt;}
.h1d{height:29.088622pt;}
.ha{height:33.918750pt;}
.h6{height:34.830000pt;}
.h5{height:37.410000pt;}
.hd{height:38.413438pt;}
.h1f{height:40.001304pt;}
.h18{height:42.132281pt;}
.h27{height:45.440000pt;}
.h2a{height:47.742188pt;}
.h19{height:49.798037pt;}
.h1c{height:49.822825pt;}
.hb{height:52.134375pt;}
.hc{height:52.478750pt;}
.h23{height:52.638750pt;}
.h21{height:52.800000pt;}
.h2b{height:52.834688pt;}
.h25{height:52.960000pt;}
.h28{height:52.992000pt;}
.h9{height:53.535000pt;}
.h1e{height:54.084918pt;}
.h2d{height:54.598989pt;}
.h7{height:57.787500pt;}
.h12{height:58.808204pt;}
.hf{height:58.814162pt;}
.h3{height:59.340000pt;}
.h26{height:59.360000pt;}
.h20{height:60.862586pt;}
.h2{height:69.660000pt;}
.h24{height:70.560000pt;}
.h13{height:72.594375pt;}
.h2c{height:74.477812pt;}
.h1a{height:74.650011pt;}
.h10{height:79.014375pt;}
.h17{height:80.986875pt;}
.h8{height:85.785000pt;}
.h16{height:85.887812pt;}
.h22{height:88.192000pt;}
.h14{height:99.474375pt;}
.h15{height:107.866875pt;}
.h29{height:229.440000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w13{width:40.672000pt;}
.wd{width:40.800000pt;}
.w12{width:44.960000pt;}
.w6{width:45.332254pt;}
.w3{width:49.152000pt;}
.we{width:52.672000pt;}
.w14{width:52.800000pt;}
.w8{width:55.997915pt;}
.w15{width:58.112000pt;}
.w10{width:58.240000pt;}
.wf{width:65.600000pt;}
.w16{width:69.440000pt;}
.w11{width:69.472000pt;}
.wb{width:70.592000pt;}
.wc{width:77.120000pt;}
.wa{width:84.320000pt;}
.w9{width:100.832000pt;}
.w5{width:107.336629pt;}
.w7{width:136.002040pt;}
.w17{width:343.040000pt;}
.w4{width:639.933333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:1.280000pt;}
.x2c{left:2.979703pt;}
.x38{left:5.952000pt;}
.x3{left:7.200000pt;}
.x4c{left:12.480000pt;}
.x4e{left:16.160000pt;}
.x3e{left:17.440000pt;}
.x50{left:19.328000pt;}
.x3d{left:20.320000pt;}
.x4d{left:22.240000pt;}
.x17{left:27.262949pt;}
.x4f{left:36.416000pt;}
.x2a{left:41.877710pt;}
.x2b{left:42.913659pt;}
.x1{left:48.159988pt;}
.x9{left:51.679988pt;}
.x24{left:53.914987pt;}
.x2{left:55.200000pt;}
.x33{left:57.439988pt;}
.x25{left:65.820812pt;}
.x53{left:71.999988pt;}
.xd{left:73.279988pt;}
.x28{left:79.028538pt;}
.x36{left:84.320000pt;}
.x52{left:89.893333pt;}
.x10{left:96.031988pt;}
.x4a{left:98.266667pt;}
.xf{left:99.231988pt;}
.x4{left:105.152000pt;}
.x27{left:108.117055pt;}
.x48{left:111.200000pt;}
.x4b{left:124.346667pt;}
.x23{left:125.251565pt;}
.x26{left:126.536403pt;}
.x15{left:130.591988pt;}
.x49{left:135.520000pt;}
.x39{left:137.786667pt;}
.x34{left:151.706655pt;}
.x13{left:156.746667pt;}
.x29{left:160.213333pt;}
.x46{left:167.040000pt;}
.x51{left:170.053333pt;}
.x2e{left:178.586655pt;}
.x47{left:187.040000pt;}
.x3a{left:204.026667pt;}
.x35{left:210.426655pt;}
.x2d{left:216.186655pt;}
.xc{left:239.386655pt;}
.x3b{left:262.906667pt;}
.x14{left:264.026655pt;}
.x8{left:296.034667pt;}
.x7{left:300.514667pt;}
.xe{left:314.466655pt;}
.x3c{left:333.026667pt;}
.xa{left:371.426655pt;}
.x6{left:381.341333pt;}
.x32{left:392.066655pt;}
.x5{left:393.341333pt;}
.xb{left:396.866655pt;}
.x3f{left:415.906667pt;}
.x11{left:420.866655pt;}
.x19{left:439.266655pt;}
.x45{left:444.893322pt;}
.x40{left:457.213333pt;}
.x12{left:468.893322pt;}
.x1a{left:470.973322pt;}
.x21{left:479.453322pt;}
.x1e{left:504.573322pt;}
.x41{left:510.653333pt;}
.x1d{left:521.533322pt;}
.x2f{left:523.293333pt;}
.x1b{left:526.653322pt;}
.x22{left:534.973322pt;}
.x16{left:537.813333pt;}
.x20{left:551.453322pt;}
.x1f{left:567.613322pt;}
.x1c{left:574.973322pt;}
.x42{left:577.053333pt;}
.x18{left:583.133322pt;}
.x30{left:608.253333pt;}
.x43{left:635.973333pt;}
.x31{left:679.493333pt;}
.x44{left:706.053333pt;}
}




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