
    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_bd836bf047a440ca7047654c.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a784669eb8282989e74c398b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e967ee1cd7cb4fe0196867cf.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f77c954026f1dc943c3a5c1a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1155f12929f8b5a5d697f43c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_49ca0dec5a8511a552bf4aa4.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_370bb8f73a79282b9894e236.woff')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_a07afe1b1823860ac453566f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.737793;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_f8d1af9a28f04becbc9dcb88.woff')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_b010e47a581509ad388b8702.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ffc{font-family:ffc;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9c7afd5cb03786d278f78994.woff')format("woff");}.ffd{font-family:ffd;line-height:0.708008;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_0f31720e86d7001c818442b7.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b4603d5343e847babdc076c2.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;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_db5193143bb41e985d310505.woff')format("woff");}.ff10{font-family:ff10;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;}
.m2{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);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m3{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:-78.660000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls12{letter-spacing:-0.720000px;}
.lse{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.226200px;}
.lsd{letter-spacing:-0.223800px;}
.ls1c{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.lsb{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.018000px;}
.ls1d{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.144720px;}
.ls15{letter-spacing:0.152400px;}
.ls6{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.206400px;}
.ls14{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.270720px;}
.ls1b{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.493920px;}
.ls13{letter-spacing:0.666000px;}
.ls8{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.979920px;}
.ls1e{letter-spacing:6.660000px;}
.ls2{letter-spacing:15.300000px;}
.ls18{letter-spacing:17.460000px;}
.ls1f{letter-spacing:18.180000px;}
.ls19{letter-spacing:31.860000px;}
.ls3{letter-spacing:47.700000px;}
.ls9{letter-spacing:52.560000px;}
.ls1{letter-spacing:71.280000px;}
.ls0{letter-spacing:72.000000px;}
.ls1a{letter-spacing:170.100000px;}
.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;}
}
.wsc{word-spacing:-18.000000px;}
.wsa{word-spacing:-15.840000px;}
.ws11{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.238800px;}
.wsd{word-spacing:-15.199800px;}
.ws16{word-spacing:-15.146400px;}
.ws13{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.833200px;}
.ws14{word-spacing:-14.580000px;}
.ws17{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.518000px;}
.ws5{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.420000px;}
.wsf{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.836200px;}
.ws3{word-spacing:-11.700000px;}
.ws0{word-spacing:-10.440000px;}
.wse{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-59.580000px;}
._25{margin-left:-4.392000px;}
._19{margin-left:-3.065760px;}
._2{margin-left:-1.788480px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._13{width:3.461280px;}
._12{width:4.541760px;}
._14{width:5.589360px;}
._26{width:6.615120px;}
._17{width:7.649280px;}
._8{width:9.143280px;}
._9{width:10.394400px;}
._a{width:11.712960px;}
._e{width:12.788640px;}
._1e{width:14.772960px;}
._f{width:15.959520px;}
._2b{width:17.021520px;}
._15{width:18.346320px;}
._11{width:20.350080px;}
._10{width:21.453840px;}
._21{width:22.754160px;}
._1d{width:24.413040px;}
._1c{width:25.548480px;}
._c{width:27.429840px;}
._b{width:28.804320px;}
._27{width:30.298320px;}
._1a{width:31.752000px;}
._1b{width:32.892480px;}
._18{width:34.362000px;}
._d{width:35.616960px;}
._24{width:36.959040px;}
._28{width:38.067120px;}
._29{width:39.083040px;}
._2a{width:40.369680px;}
._3d{width:41.712480px;}
._2c{width:43.505280px;}
._30{width:44.612640px;}
._1f{width:46.270080px;}
._2d{width:47.380800px;}
._2f{width:48.584880px;}
._22{width:49.944960px;}
._16{width:51.453360px;}
._34{width:53.623440px;}
._20{width:56.710080px;}
._35{width:59.042880px;}
._39{width:61.672320px;}
._38{width:62.927280px;}
._36{width:64.249200px;}
._4{width:65.496000px;}
._37{width:67.320000px;}
._3c{width:68.904480px;}
._3{width:71.502240px;}
._31{width:78.106320px;}
._3f{width:79.899120px;}
._33{width:84.587760px;}
._3b{width:85.875120px;}
._32{width:104.759280px;}
._2e{width:108.344880px;}
._3e{width:170.015520px;}
._40{width:195.534720px;}
._5{width:199.620000px;}
._41{width:211.490640px;}
._23{width:285.870000px;}
._3a{width:715.865040px;}
._7{width:755.976000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:transparent;}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:5.760000px;}
.fs10{font-size:6.000000px;}
.fsc{font-size:23.760000px;}
.fs7{font-size:30.240000px;}
.fsd{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fse{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsf{font-size:56.880000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y74{bottom:-251.670000px;}
.y73{bottom:-217.830000px;}
.y72{bottom:-184.170000px;}
.y82{bottom:-155.190000px;}
.y71{bottom:-150.330000px;}
.y81{bottom:-121.350000px;}
.y70{bottom:-116.640000px;}
.y80{bottom:-87.690000px;}
.y6f{bottom:-82.800000px;}
.y7f{bottom:-53.850000px;}
.y6e{bottom:-49.140000px;}
.y67{bottom:-28.650000px;}
.y3d{bottom:-27.180000px;}
.y7e{bottom:-20.145000px;}
.y84{bottom:-17.922750px;}
.y6d{bottom:-15.480000px;}
.y0{bottom:0.000000px;}
.y64{bottom:0.735000px;}
.y207{bottom:1.837500px;}
.y6c{bottom:2.520000px;}
.y2{bottom:3.960000px;}
.y132{bottom:4.695000px;}
.y3c{bottom:5.040000px;}
.y66{bottom:5.580000px;}
.y151{bottom:5.745000px;}
.y59{bottom:5.955000px;}
.y153{bottom:6.465000px;}
.y152{bottom:6.645000px;}
.y157{bottom:6.660000px;}
.y155{bottom:6.825000px;}
.y158{bottom:6.840000px;}
.y10d{bottom:7.020000px;}
.y178{bottom:9.165000px;}
.y14f{bottom:9.180000px;}
.y172{bottom:9.525000px;}
.y174{bottom:9.705000px;}
.y116{bottom:9.885000px;}
.y13e{bottom:9.915000px;}
.y113{bottom:9.930000px;}
.y117{bottom:10.065000px;}
.y114{bottom:10.110000px;}
.y148{bottom:10.620000px;}
.y7{bottom:12.420000px;}
.y63{bottom:12.795000px;}
.y10f{bottom:13.320000px;}
.y4{bottom:13.500000px;}
.y7d{bottom:13.515000px;}
.y3{bottom:13.680000px;}
.y16b{bottom:13.875000px;}
.y145{bottom:14.055000px;}
.y16e{bottom:14.235000px;}
.y139{bottom:15.300000px;}
.y6b{bottom:15.660000px;}
.y176{bottom:16.545000px;}
.y17f{bottom:16.725000px;}
.y17d{bottom:16.905000px;}
.y170{bottom:17.130000px;}
.y133{bottom:18.720000px;}
.y130{bottom:18.900000px;}
.y58{bottom:19.995000px;}
.y146{bottom:20.880000px;}
.y165{bottom:21.240000px;}
.y168{bottom:21.600000px;}
.y166{bottom:21.960000px;}
.y13d{bottom:23.760000px;}
.y177{bottom:24.105000px;}
.y17a{bottom:24.285000px;}
.y17b{bottom:24.465000px;}
.y171{bottom:24.510000px;}
.y180{bottom:24.645000px;}
.y173{bottom:24.690000px;}
.y62{bottom:25.065000px;}
.y6{bottom:25.200000px;}
.y169{bottom:27.540000px;}
.y16c{bottom:27.720000px;}
.y143{bottom:28.080000px;}
.y6a{bottom:28.620000px;}
.y137{bottom:28.635000px;}
.y57{bottom:28.815000px;}
.y16d{bottom:29.160000px;}
.y14d{bottom:35.640000px;}
.y61{bottom:37.125000px;}
.y5{bottom:38.160000px;}
.y13c{bottom:38.715000px;}
.y69{bottom:41.040000px;}
.y135{bottom:42.480000px;}
.y7c{bottom:44.475000px;}
.y88{bottom:46.260000px;}
.y56{bottom:46.635000px;}
.y60{bottom:49.185000px;}
.y14c{bottom:49.680000px;}
.y13b{bottom:52.755000px;}
.y7b{bottom:57.615000px;}
.yec{bottom:60.480000px;}
.y5f{bottom:61.245000px;}
.y1{bottom:61.380000px;}
.y87{bottom:62.640000px;}
.y14a{bottom:63.525000px;}
.y83{bottom:63.780000px;}
.y55{bottom:64.455000px;}
.y13a{bottom:66.600000px;}
.y7a{bottom:70.575000px;}
.y5e{bottom:73.305000px;}
.y86{bottom:80.460000px;}
.y54{bottom:82.455000px;}
.y79{bottom:83.715000px;}
.y5d{bottom:85.365000px;}
.y53{bottom:95.775000px;}
.y78{bottom:96.675000px;}
.y5c{bottom:97.425000px;}
.y1ab{bottom:99.720000px;}
.y12d{bottom:100.980000px;}
.y1bf{bottom:103.680000px;}
.y52{bottom:104.595000px;}
.yeb{bottom:105.660000px;}
.y77{bottom:109.635000px;}
.y1df{bottom:111.060000px;}
.y5b{bottom:114.345000px;}
.y3a{bottom:114.840000px;}
.y12c{bottom:118.080000px;}
.y1aa{bottom:119.520000px;}
.y76{bottom:122.055000px;}
.y51{bottom:122.415000px;}
.yb9{bottom:123.120000px;}
.y1be{bottom:123.480000px;}
.yea{bottom:125.460000px;}
.y184{bottom:129.420000px;}
.y1de{bottom:130.860000px;}
.y205{bottom:132.660000px;}
.y122{bottom:134.280000px;}
.y39{bottom:134.640000px;}
.y12b{bottom:135.360000px;}
.y1a9{bottom:139.320000px;}
.y50{bottom:140.235000px;}
.y1bd{bottom:143.280000px;}
.ye9{bottom:145.260000px;}
.y1dd{bottom:150.660000px;}
.yb8{bottom:151.560000px;}
.y204{bottom:152.460000px;}
.y12a{bottom:152.640000px;}
.y183{bottom:153.360000px;}
.y121{bottom:154.260000px;}
.y38{bottom:154.440000px;}
.y4f{bottom:158.055000px;}
.y1a8{bottom:159.120000px;}
.y1bc{bottom:163.110000px;}
.ye8{bottom:165.090000px;}
.y129{bottom:169.950000px;}
.y1dc{bottom:170.490000px;}
.yb7{bottom:171.390000px;}
.y203{bottom:172.290000px;}
.y120{bottom:174.090000px;}
.y37{bottom:174.450000px;}
.y4e{bottom:175.875000px;}
.y1a7{bottom:179.130000px;}
.y1bb{bottom:183.090000px;}
.ye7{bottom:185.070000px;}
.y128{bottom:187.230000px;}
.y182{bottom:188.310000px;}
.y1db{bottom:190.290000px;}
.yb6{bottom:191.190000px;}
.y202{bottom:192.270000px;}
.y4d{bottom:193.875000px;}
.y11f{bottom:193.890000px;}
.y36{bottom:194.250000px;}
.y1a6{bottom:198.930000px;}
.y181{bottom:202.170000px;}
.y1ba{bottom:202.890000px;}
.y127{bottom:204.330000px;}
.ye6{bottom:204.870000px;}
.yb5{bottom:210.990000px;}
.y1da{bottom:211.170000px;}
.y4c{bottom:211.695000px;}
.y201{bottom:212.070000px;}
.y11e{bottom:213.690000px;}
.y35{bottom:214.050000px;}
.y17e{bottom:214.065000px;}
.y1a5{bottom:218.730000px;}
.y126{bottom:221.610000px;}
.y1b9{bottom:222.690000px;}
.ye5{bottom:224.670000px;}
.y4b{bottom:229.545000px;}
.yb4{bottom:231.870000px;}
.y11d{bottom:233.490000px;}
.y34{bottom:233.850000px;}
.y1a4{bottom:238.530000px;}
.y125{bottom:238.890000px;}
.y1b8{bottom:242.490000px;}
.y4a{bottom:242.865000px;}
.ye4{bottom:244.470000px;}
.y200{bottom:251.670000px;}
.y49{bottom:251.685000px;}
.y1d9{bottom:252.030000px;}
.yb3{bottom:252.750000px;}
.y11c{bottom:253.470000px;}
.y33{bottom:253.650000px;}
.y17c{bottom:255.105000px;}
.y124{bottom:256.170000px;}
.y1a3{bottom:258.330000px;}
.y1b7{bottom:262.290000px;}
.ye3{bottom:264.270000px;}
.y48{bottom:269.505000px;}
.y1ff{bottom:271.470000px;}
.y1d8{bottom:272.730000px;}
.y11b{bottom:273.270000px;}
.y123{bottom:273.450000px;}
.y32{bottom:273.630000px;}
.y1a2{bottom:278.310000px;}
.y1b6{bottom:282.270000px;}
.ye2{bottom:284.250000px;}
.y47{bottom:287.505000px;}
.yb2{bottom:290.910000px;}
.y1fe{bottom:291.450000px;}
.y11a{bottom:293.070000px;}
.y31{bottom:293.430000px;}
.y179{bottom:295.605000px;}
.y1d7{bottom:296.490000px;}
.y1a1{bottom:298.110000px;}
.y1b5{bottom:302.070000px;}
.ye1{bottom:304.050000px;}
.y46{bottom:305.325000px;}
.yb1{bottom:308.190000px;}
.y1fd{bottom:311.250000px;}
.y119{bottom:312.870000px;}
.y30{bottom:313.230000px;}
.y1a0{bottom:317.910000px;}
.y1b4{bottom:321.870000px;}
.y45{bottom:323.145000px;}
.ye0{bottom:323.850000px;}
.yb0{bottom:325.470000px;}
.y1fc{bottom:331.050000px;}
.y2f{bottom:333.030000px;}
.y175{bottom:336.105000px;}
.y44{bottom:336.465000px;}
.y1d6{bottom:337.350000px;}
.y19f{bottom:337.710000px;}
.y1b3{bottom:341.670000px;}
.yaf{bottom:342.750000px;}
.ydf{bottom:343.650000px;}
.y43{bottom:345.285000px;}
.y118{bottom:350.670000px;}
.y1fb{bottom:350.850000px;}
.y2e{bottom:352.830000px;}
.y1d5{bottom:357.330000px;}
.y19e{bottom:357.510000px;}
.yae{bottom:360.030000px;}
.y1b2{bottom:361.470000px;}
.y115{bottom:362.565000px;}
.y42{bottom:363.105000px;}
.yde{bottom:363.450000px;}
.y1fa{bottom:370.650000px;}
.y2d{bottom:373.710000px;}
.y16f{bottom:376.065000px;}
.y1d4{bottom:377.130000px;}
.yad{bottom:377.310000px;}
.y41{bottom:380.925000px;}
.y1b1{bottom:381.450000px;}
.ydd{bottom:383.430000px;}
.y112{bottom:389.565000px;}
.y1f9{bottom:390.630000px;}
.y2c{bottom:394.095000px;}
.yac{bottom:394.455000px;}
.y1d3{bottom:396.975000px;}
.y19d{bottom:397.335000px;}
.y3e{bottom:398.760000px;}
.y40{bottom:398.925000px;}
.y1b0{bottom:401.295000px;}
.ydc{bottom:403.275000px;}
.y2b{bottom:409.395000px;}
.y1f8{bottom:410.475000px;}
.yab{bottom:411.735000px;}
.y111{bottom:416.595000px;}
.y3f{bottom:416.745000px;}
.y1d2{bottom:416.775000px;}
.y16a{bottom:417.120000px;}
.y167{bottom:417.135000px;}
.y1af{bottom:421.095000px;}
.ydb{bottom:423.075000px;}
.yaa{bottom:429.015000px;}
.y1f7{bottom:430.275000px;}
.y2a{bottom:433.155000px;}
.y1d1{bottom:436.575000px;}
.y19c{bottom:436.935000px;}
.y1ae{bottom:440.895000px;}
.y75{bottom:441.060000px;}
.yda{bottom:442.875000px;}
.ya9{bottom:446.295000px;}
.y1f6{bottom:450.075000px;}
.y110{bottom:450.255000px;}
.y29{bottom:454.035000px;}
.y1d0{bottom:456.555000px;}
.y19b{bottom:456.735000px;}
.y1ad{bottom:460.695000px;}
.yd9{bottom:462.675000px;}
.ya8{bottom:463.575000px;}
.y164{bottom:468.615000px;}
.y1f5{bottom:469.875000px;}
.y28{bottom:474.015000px;}
.y1cf{bottom:476.355000px;}
.y19a{bottom:476.535000px;}
.y1ac{bottom:480.675000px;}
.ya7{bottom:480.855000px;}
.yd8{bottom:482.655000px;}
.y10e{bottom:484.095000px;}
.y27{bottom:487.695000px;}
.y1f4{bottom:489.855000px;}
.y1ce{bottom:496.155000px;}
.y26{bottom:496.335000px;}
.y199{bottom:496.515000px;}
.ya6{bottom:500.475000px;}
.yd7{bottom:502.455000px;}
.y1f3{bottom:509.655000px;}
.y198{bottom:516.315000px;}
.y1cd{bottom:516.855000px;}
.y10c{bottom:519.375000px;}
.y25{bottom:519.555000px;}
.ya5{bottom:520.275000px;}
.yd6{bottom:522.255000px;}
.y163{bottom:526.935000px;}
.y1f2{bottom:529.455000px;}
.y197{bottom:536.115000px;}
.ya4{bottom:540.075000px;}
.yd5{bottom:542.055000px;}
.y24{bottom:542.955000px;}
.y10b{bottom:545.295000px;}
.y1f1{bottom:549.255000px;}
.y196{bottom:555.915000px;}
.y1cc{bottom:557.715000px;}
.ya3{bottom:559.875000px;}
.yd4{bottom:561.855000px;}
.y10a{bottom:563.835000px;}
.y162{bottom:565.095000px;}
.y23{bottom:566.175000px;}
.y1f0{bottom:569.055000px;}
.y195{bottom:575.715000px;}
.y1cb{bottom:577.695000px;}
.ya2{bottom:579.855000px;}
.yd3{bottom:581.835000px;}
.y109{bottom:583.635000px;}
.y161{bottom:585.075000px;}
.yf2{bottom:585.795000px;}
.y1ef{bottom:589.935000px;}
.y194{bottom:595.695000px;}
.y1ca{bottom:597.495000px;}
.y22{bottom:599.475000px;}
.ya1{bottom:599.655000px;}
.yd2{bottom:601.635000px;}
.y5a{bottom:603.060000px;}
.y108{bottom:603.435000px;}
.y160{bottom:604.875000px;}
.yf1{bottom:605.595000px;}
.y193{bottom:615.495000px;}
.y21{bottom:616.935000px;}
.y1c9{bottom:617.295000px;}
.ya0{bottom:619.455000px;}
.yd1{bottom:621.435000px;}
.y107{bottom:623.265000px;}
.y15f{bottom:624.705000px;}
.yf0{bottom:625.425000px;}
.y1ee{bottom:630.825000px;}
.y20{bottom:634.605000px;}
.y192{bottom:635.325000px;}
.y1c8{bottom:637.125000px;}
.y9f{bottom:639.285000px;}
.yd0{bottom:641.265000px;}
.y106{bottom:643.065000px;}
.y15e{bottom:644.505000px;}
.yef{bottom:645.225000px;}
.y1ed{bottom:651.525000px;}
.y191{bottom:655.125000px;}
.y1f{bottom:656.205000px;}
.y1c7{bottom:656.925000px;}
.y9e{bottom:659.085000px;}
.ycf{bottom:661.065000px;}
.y105{bottom:663.045000px;}
.y15d{bottom:664.305000px;}
.yee{bottom:665.925000px;}
.y1e{bottom:671.685000px;}
.y190{bottom:674.925000px;}
.y1c6{bottom:676.905000px;}
.y9d{bottom:679.065000px;}
.yce{bottom:681.045000px;}
.y104{bottom:682.845000px;}
.y15c{bottom:684.285000px;}
.yed{bottom:685.905000px;}
.y1d{bottom:687.345000px;}
.y1ec{bottom:692.385000px;}
.y18f{bottom:694.905000px;}
.y1c5{bottom:696.705000px;}
.y9c{bottom:698.865000px;}
.ycd{bottom:700.845000px;}
.y103{bottom:702.645000px;}
.y1c{bottom:702.825000px;}
.y15b{bottom:704.085000px;}
.y1eb{bottom:712.185000px;}
.y18e{bottom:714.705000px;}
.y1c4{bottom:716.505000px;}
.y1b{bottom:718.305000px;}
.y9b{bottom:718.665000px;}
.ycc{bottom:720.645000px;}
.y15a{bottom:722.085000px;}
.y102{bottom:722.445000px;}
.y1a{bottom:729.465000px;}
.y1ea{bottom:733.065000px;}
.y18d{bottom:734.505000px;}
.y159{bottom:735.945000px;}
.y1c3{bottom:736.305000px;}
.y9a{bottom:738.465000px;}
.ycb{bottom:740.445000px;}
.y68{bottom:741.345000px;}
.y101{bottom:742.245000px;}
.y19{bottom:743.145000px;}
.y14b{bottom:747.645000px;}
.y149{bottom:747.660000px;}
.y18c{bottom:754.305000px;}
.y18{bottom:755.745000px;}
.y1c2{bottom:756.105000px;}
.y99{bottom:758.265000px;}
.yca{bottom:760.245000px;}
.y100{bottom:762.225000px;}
.y156{bottom:767.985000px;}
.y17{bottom:768.165000px;}
.y1e9{bottom:773.925000px;}
.y18b{bottom:774.105000px;}
.y1c1{bottom:776.085000px;}
.y98{bottom:778.245000px;}
.yc9{bottom:780.225000px;}
.y16{bottom:781.125000px;}
.yff{bottom:782.025000px;}
.y154{bottom:788.160000px;}
.y1e8{bottom:793.725000px;}
.y18a{bottom:794.085000px;}
.y15{bottom:794.805000px;}
.y1c0{bottom:796.785000px;}
.y97{bottom:798.045000px;}
.yc8{bottom:800.025000px;}
.yfe{bottom:801.825000px;}
.y14{bottom:807.765000px;}
.y150{bottom:808.500000px;}
.y1e7{bottom:813.525000px;}
.y189{bottom:813.885000px;}
.y96{bottom:817.845000px;}
.yc7{bottom:819.825000px;}
.yfd{bottom:821.625000px;}
.y14e{bottom:828.645000px;}
.y1e6{bottom:833.325000px;}
.y188{bottom:833.685000px;}
.y13{bottom:834.405000px;}
.y95{bottom:837.645000px;}
.yc6{bottom:839.625000px;}
.yfc{bottom:841.425000px;}
.y1e5{bottom:853.350000px;}
.y187{bottom:853.530000px;}
.y144{bottom:855.315000px;}
.y142{bottom:855.330000px;}
.y94{bottom:857.490000px;}
.yc5{bottom:859.470000px;}
.yfb{bottom:861.450000px;}
.y12{bottom:865.230000px;}
.y1e4{bottom:873.150000px;}
.y186{bottom:873.330000px;}
.y147{bottom:876.210000px;}
.y93{bottom:877.470000px;}
.y11{bottom:879.990000px;}
.yc4{bottom:880.350000px;}
.yfa{bottom:881.250000px;}
.y185{bottom:893.310000px;}
.y1e3{bottom:893.850000px;}
.y92{bottom:897.270000px;}
.y10{bottom:899.250000px;}
.yc3{bottom:899.970000px;}
.yf9{bottom:901.950000px;}
.yf{bottom:909.330000px;}
.y141{bottom:911.670000px;}
.yc2{bottom:913.110000px;}
.y91{bottom:917.070000px;}
.ye{bottom:928.590000px;}
.y140{bottom:930.030000px;}
.yc1{bottom:932.910000px;}
.y1e2{bottom:934.710000px;}
.y90{bottom:936.870000px;}
.yd{bottom:939.750000px;}
.yf8{bottom:942.810000px;}
.y13f{bottom:948.030000px;}
.yc0{bottom:952.710000px;}
.y1e1{bottom:954.510000px;}
.y8f{bottom:956.670000px;}
.yc{bottom:957.750000px;}
.y136{bottom:959.895000px;}
.y134{bottom:959.910000px;}
.yf7{bottom:962.610000px;}
.ybf{bottom:972.510000px;}
.y1e0{bottom:975.390000px;}
.y8e{bottom:976.650000px;}
.yb{bottom:980.970000px;}
.yf6{bottom:982.590000px;}
.ybe{bottom:992.490000px;}
.y8d{bottom:996.450000px;}
.y138{bottom:1000.410000px;}
.yf5{bottom:1002.390000px;}
.ya{bottom:1004.550000px;}
.ybd{bottom:1012.290000px;}
.y206{bottom:1015.890000px;}
.y8c{bottom:1016.250000px;}
.yf4{bottom:1023.090000px;}
.ybc{bottom:1032.090000px;}
.y8b{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y131{bottom:1039.635000px;}
.y12f{bottom:1039.650000px;}
.yf3{bottom:1042.890000px;}
.ybb{bottom:1051.890000px;}
.y8a{bottom:1055.850000px;}
.y8{bottom:1063.230000px;}
.yba{bottom:1072.590000px;}
.y89{bottom:1075.650000px;}
.y12e{bottom:1077.090000px;}
.y65{bottom:1096.200000px;}
.y85{bottom:1123.200000px;}
.y3b{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h51{height:6.257812px;}
.h2{height:13.500000px;}
.h18{height:16.920000px;}
.h2a{height:18.165000px;}
.h3e{height:19.425000px;}
.h40{height:19.440000px;}
.h3f{height:19.605000px;}
.h41{height:19.620000px;}
.h3b{height:20.145000px;}
.h1f{height:22.140000px;}
.h15{height:23.319141px;}
.h3d{height:24.322500px;}
.h2e{height:26.265000px;}
.h2d{height:26.301000px;}
.h3a{height:27.525000px;}
.h29{height:29.664141px;}
.hd{height:29.678906px;}
.h30{height:29.691000px;}
.h31{height:29.700000px;}
.he{height:30.963516px;}
.h2b{height:32.925000px;}
.h2c{height:33.105000px;}
.h17{height:36.281250px;}
.h34{height:37.065000px;}
.h49{height:39.045000px;}
.h4a{height:39.051000px;}
.h4b{height:39.060000px;}
.h12{height:39.503370px;}
.h4c{height:39.765000px;}
.h35{height:39.771000px;}
.h36{height:39.780000px;}
.h4d{height:40.305000px;}
.h4e{height:40.311000px;}
.h4f{height:40.320000px;}
.h47{height:40.341000px;}
.h48{height:40.342500px;}
.h5{height:40.985156px;}
.h25{height:41.535703px;}
.h1e{height:42.086250px;}
.h10{height:44.518359px;}
.h11{height:46.622932px;}
.hc{height:47.344922px;}
.h4{height:47.699850px;}
.h39{height:48.405000px;}
.h1c{height:48.410156px;}
.h37{height:48.411000px;}
.h38{height:48.420000px;}
.h19{height:48.616875px;}
.h43{height:49.305000px;}
.h44{height:49.315500px;}
.h45{height:49.320000px;}
.h46{height:49.583118px;}
.h13{height:50.364141px;}
.h42{height:50.385000px;}
.h21{height:52.020000px;}
.h14{height:52.998047px;}
.h50{height:53.573906px;}
.h1a{height:54.421875px;}
.hf{height:55.291992px;}
.h3{height:58.651172px;}
.h2f{height:59.038594px;}
.ha{height:60.226875px;}
.h27{height:61.423863px;}
.hb{height:65.010937px;}
.h22{height:65.884219px;}
.h26{height:70.628906px;}
.h16{height:72.562500px;}
.h20{height:74.953125px;}
.h24{height:75.093750px;}
.h32{height:77.571000px;}
.h33{height:77.580000px;}
.h7{height:86.585445px;}
.h28{height:93.936445px;}
.h8{height:96.508125px;}
.h9{height:99.687656px;}
.h3c{height:105.322500px;}
.h1d{height:122.445000px;}
.h23{height:133.020000px;}
.h1b{height:428.985000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w27{width:43.200000px;}
.w2a{width:44.310000px;}
.w25{width:44.316000px;}
.w26{width:44.325000px;}
.w13{width:60.156000px;}
.w14{width:60.165000px;}
.wd{width:60.300000px;}
.w28{width:68.745000px;}
.w15{width:70.200000px;}
.w19{width:76.845000px;}
.w1e{width:76.851000px;}
.w1f{width:76.860000px;}
.w16{width:76.896000px;}
.w1a{width:76.905000px;}
.w18{width:80.301000px;}
.w1d{width:80.302500px;}
.w2d{width:80.625000px;}
.w32{width:80.635500px;}
.w33{width:80.640000px;}
.w3{width:82.071000px;}
.w2f{width:87.645000px;}
.w35{width:87.651000px;}
.w36{width:87.660000px;}
.w29{width:97.221000px;}
.w17{width:100.065000px;}
.w1b{width:100.075500px;}
.w1c{width:100.080000px;}
.w2e{width:101.361000px;}
.w34{width:101.362500px;}
.w30{width:108.030000px;}
.w37{width:108.036000px;}
.w38{width:108.045000px;}
.w22{width:135.036000px;}
.w24{width:145.065000px;}
.w9{width:154.470000px;}
.w20{width:155.355000px;}
.w21{width:155.370000px;}
.wf{width:160.590000px;}
.w23{width:165.975000px;}
.wc{width:167.595000px;}
.w2c{width:168.690000px;}
.w31{width:168.705000px;}
.w2b{width:168.861000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.we{width:185.280000px;}
.w10{width:224.130000px;}
.w11{width:334.140000px;}
.w12{width:334.155000px;}
.w6{width:532.905000px;}
.wb{width:573.795000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:795.735000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x59{left:4.252500px;}
.x2{left:8.091000px;}
.x3e{left:9.705000px;}
.x13{left:10.791000px;}
.x38{left:13.140000px;}
.x37{left:14.220000px;}
.x23{left:15.300000px;}
.x44{left:17.820000px;}
.x34{left:19.095000px;}
.x4c{left:20.145000px;}
.x19{left:21.255000px;}
.x33{left:23.580000px;}
.x46{left:24.825000px;}
.x4b{left:27.360000px;}
.x36{left:28.620000px;}
.x25{left:30.450000px;}
.x57{left:31.545000px;}
.x3c{left:33.120000px;}
.x3d{left:34.725000px;}
.x4e{left:36.540000px;}
.x2a{left:38.370000px;}
.x28{left:43.950000px;}
.x48{left:45.900000px;}
.x29{left:50.040000px;}
.x27{left:52.740000px;}
.x56{left:56.520000px;}
.x4d{left:58.500000px;}
.x4f{left:60.120000px;}
.x4a{left:62.100000px;}
.x58{left:63.360000px;}
.x55{left:67.860000px;}
.x47{left:69.480000px;}
.x49{left:70.560000px;}
.x3{left:73.965000px;}
.x2b{left:79.950000px;}
.x12{left:81.765000px;}
.x18{left:93.105000px;}
.x15{left:94.725000px;}
.xd{left:101.196000px;}
.x1{left:108.045000px;}
.xa{left:109.836000px;}
.x50{left:111.105000px;}
.x2d{left:121.536000px;}
.x2e{left:124.425000px;}
.x31{left:126.930000px;}
.x9{left:129.636000px;}
.xe{left:132.696000px;}
.x1e{left:135.036000px;}
.x1b{left:152.130000px;}
.x30{left:160.590000px;}
.x6{left:172.830000px;}
.x1f{left:175.530000px;}
.xc{left:177.510000px;}
.x2c{left:179.670000px;}
.x20{left:181.845000px;}
.x4{left:190.125000px;}
.x2f{left:210.630000px;}
.xb{left:256.215000px;}
.x21{left:262.140000px;}
.x7{left:271.875000px;}
.x3f{left:279.615000px;}
.x14{left:302.115000px;}
.x16{left:310.350000px;}
.x22{left:349.455000px;}
.x17{left:371.580000px;}
.x24{left:409.755000px;}
.x40{left:414.660000px;}
.x39{left:425.460000px;}
.x5{left:446.505000px;}
.x51{left:448.680000px;}
.x8{left:452.265000px;}
.xf{left:473.145000px;}
.x45{left:483.420000px;}
.x10{left:489.165000px;}
.x11{left:490.785000px;}
.x3a{left:525.540000px;}
.x52{left:529.320000px;}
.x41{left:580.650000px;}
.x26{left:595.050000px;}
.x3b{left:605.850000px;}
.x1a{left:620.253000px;}
.x53{left:630.690000px;}
.x1d{left:645.450000px;}
.x32{left:682.710000px;}
.x54{left:718.350000px;}
.x42{left:725.730000px;}
.x35{left:742.860000px;}
.x43{left:770.040000px;}
.x1c{left:799.200000px;}
@media print{
.v3{vertical-align:-69.920000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls12{letter-spacing:-0.640000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.201067pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls1c{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.016000pt;}
.ls1d{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.128640pt;}
.ls15{letter-spacing:0.135467pt;}
.ls6{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.183467pt;}
.ls14{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.240640pt;}
.ls1b{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.439040pt;}
.ls13{letter-spacing:0.592000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.871040pt;}
.ls1e{letter-spacing:5.920000pt;}
.ls2{letter-spacing:13.600000pt;}
.ls18{letter-spacing:15.520000pt;}
.ls1f{letter-spacing:16.160000pt;}
.ls19{letter-spacing:28.320000pt;}
.ls3{letter-spacing:42.400000pt;}
.ls9{letter-spacing:46.720000pt;}
.ls1{letter-spacing:63.360000pt;}
.ls0{letter-spacing:64.000000pt;}
.ls1a{letter-spacing:151.200000pt;}
.wsc{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws11{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.545600pt;}
.wsd{word-spacing:-13.510933pt;}
.ws16{word-spacing:-13.463467pt;}
.ws13{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.ws2{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.185067pt;}
.ws14{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.016000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.040000pt;}
.wsf{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.521067pt;}
.ws3{word-spacing:-10.400000pt;}
.ws0{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-52.960000pt;}
._25{margin-left:-3.904000pt;}
._19{margin-left:-2.725120pt;}
._2{margin-left:-1.589760pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._13{width:3.076693pt;}
._12{width:4.037120pt;}
._14{width:4.968320pt;}
._26{width:5.880107pt;}
._17{width:6.799360pt;}
._8{width:8.127360pt;}
._9{width:9.239467pt;}
._a{width:10.411520pt;}
._e{width:11.367680pt;}
._1e{width:13.131520pt;}
._f{width:14.186240pt;}
._2b{width:15.130240pt;}
._15{width:16.307840pt;}
._11{width:18.088960pt;}
._10{width:19.070080pt;}
._21{width:20.225920pt;}
._1d{width:21.700480pt;}
._1c{width:22.709760pt;}
._c{width:24.382080pt;}
._b{width:25.603840pt;}
._27{width:26.931840pt;}
._1a{width:28.224000pt;}
._1b{width:29.237760pt;}
._18{width:30.544000pt;}
._d{width:31.659520pt;}
._24{width:32.852480pt;}
._28{width:33.837440pt;}
._29{width:34.740480pt;}
._2a{width:35.884160pt;}
._3d{width:37.077760pt;}
._2c{width:38.671360pt;}
._30{width:39.655680pt;}
._1f{width:41.128960pt;}
._2d{width:42.116267pt;}
._2f{width:43.186560pt;}
._22{width:44.395520pt;}
._16{width:45.736320pt;}
._34{width:47.665280pt;}
._20{width:50.408960pt;}
._35{width:52.482560pt;}
._39{width:54.819840pt;}
._38{width:55.935360pt;}
._36{width:57.110400pt;}
._4{width:58.218667pt;}
._37{width:59.840000pt;}
._3c{width:61.248427pt;}
._3{width:63.557547pt;}
._31{width:69.427840pt;}
._3f{width:71.021440pt;}
._33{width:75.189120pt;}
._3b{width:76.333440pt;}
._32{width:93.119360pt;}
._2e{width:96.306560pt;}
._3e{width:151.124907pt;}
._40{width:173.808640pt;}
._5{width:177.440000pt;}
._41{width:187.991680pt;}
._23{width:254.106667pt;}
._3a{width:636.324480pt;}
._7{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs10{font-size:5.333333pt;}
.fsc{font-size:21.120000pt;}
.fs7{font-size:26.880000pt;}
.fsd{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fse{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsf{font-size:50.560000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y74{bottom:-223.706667pt;}
.y73{bottom:-193.626667pt;}
.y72{bottom:-163.706667pt;}
.y82{bottom:-137.946667pt;}
.y71{bottom:-133.626667pt;}
.y81{bottom:-107.866667pt;}
.y70{bottom:-103.680000pt;}
.y80{bottom:-77.946667pt;}
.y6f{bottom:-73.600000pt;}
.y7f{bottom:-47.866667pt;}
.y6e{bottom:-43.680000pt;}
.y67{bottom:-25.466667pt;}
.y3d{bottom:-24.160000pt;}
.y7e{bottom:-17.906667pt;}
.y84{bottom:-15.931333pt;}
.y6d{bottom:-13.760000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:0.653333pt;}
.y207{bottom:1.633333pt;}
.y6c{bottom:2.240000pt;}
.y2{bottom:3.520000pt;}
.y132{bottom:4.173333pt;}
.y3c{bottom:4.480000pt;}
.y66{bottom:4.960000pt;}
.y151{bottom:5.106667pt;}
.y59{bottom:5.293333pt;}
.y153{bottom:5.746667pt;}
.y152{bottom:5.906667pt;}
.y157{bottom:5.920000pt;}
.y155{bottom:6.066667pt;}
.y158{bottom:6.080000pt;}
.y10d{bottom:6.240000pt;}
.y178{bottom:8.146667pt;}
.y14f{bottom:8.160000pt;}
.y172{bottom:8.466667pt;}
.y174{bottom:8.626667pt;}
.y116{bottom:8.786667pt;}
.y13e{bottom:8.813333pt;}
.y113{bottom:8.826667pt;}
.y117{bottom:8.946667pt;}
.y114{bottom:8.986667pt;}
.y148{bottom:9.440000pt;}
.y7{bottom:11.040000pt;}
.y63{bottom:11.373333pt;}
.y10f{bottom:11.840000pt;}
.y4{bottom:12.000000pt;}
.y7d{bottom:12.013333pt;}
.y3{bottom:12.160000pt;}
.y16b{bottom:12.333333pt;}
.y145{bottom:12.493333pt;}
.y16e{bottom:12.653333pt;}
.y139{bottom:13.600000pt;}
.y6b{bottom:13.920000pt;}
.y176{bottom:14.706667pt;}
.y17f{bottom:14.866667pt;}
.y17d{bottom:15.026667pt;}
.y170{bottom:15.226667pt;}
.y133{bottom:16.640000pt;}
.y130{bottom:16.800000pt;}
.y58{bottom:17.773333pt;}
.y146{bottom:18.560000pt;}
.y165{bottom:18.880000pt;}
.y168{bottom:19.200000pt;}
.y166{bottom:19.520000pt;}
.y13d{bottom:21.120000pt;}
.y177{bottom:21.426667pt;}
.y17a{bottom:21.586667pt;}
.y17b{bottom:21.746667pt;}
.y171{bottom:21.786667pt;}
.y180{bottom:21.906667pt;}
.y173{bottom:21.946667pt;}
.y62{bottom:22.280000pt;}
.y6{bottom:22.400000pt;}
.y169{bottom:24.480000pt;}
.y16c{bottom:24.640000pt;}
.y143{bottom:24.960000pt;}
.y6a{bottom:25.440000pt;}
.y137{bottom:25.453333pt;}
.y57{bottom:25.613333pt;}
.y16d{bottom:25.920000pt;}
.y14d{bottom:31.680000pt;}
.y61{bottom:33.000000pt;}
.y5{bottom:33.920000pt;}
.y13c{bottom:34.413333pt;}
.y69{bottom:36.480000pt;}
.y135{bottom:37.760000pt;}
.y7c{bottom:39.533333pt;}
.y88{bottom:41.120000pt;}
.y56{bottom:41.453333pt;}
.y60{bottom:43.720000pt;}
.y14c{bottom:44.160000pt;}
.y13b{bottom:46.893333pt;}
.y7b{bottom:51.213333pt;}
.yec{bottom:53.760000pt;}
.y5f{bottom:54.440000pt;}
.y1{bottom:54.560000pt;}
.y87{bottom:55.680000pt;}
.y14a{bottom:56.466667pt;}
.y83{bottom:56.693333pt;}
.y55{bottom:57.293333pt;}
.y13a{bottom:59.200000pt;}
.y7a{bottom:62.733333pt;}
.y5e{bottom:65.160000pt;}
.y86{bottom:71.520000pt;}
.y54{bottom:73.293333pt;}
.y79{bottom:74.413333pt;}
.y5d{bottom:75.880000pt;}
.y53{bottom:85.133333pt;}
.y78{bottom:85.933333pt;}
.y5c{bottom:86.600000pt;}
.y1ab{bottom:88.640000pt;}
.y12d{bottom:89.760000pt;}
.y1bf{bottom:92.160000pt;}
.y52{bottom:92.973333pt;}
.yeb{bottom:93.920000pt;}
.y77{bottom:97.453333pt;}
.y1df{bottom:98.720000pt;}
.y5b{bottom:101.640000pt;}
.y3a{bottom:102.080000pt;}
.y12c{bottom:104.960000pt;}
.y1aa{bottom:106.240000pt;}
.y76{bottom:108.493333pt;}
.y51{bottom:108.813333pt;}
.yb9{bottom:109.440000pt;}
.y1be{bottom:109.760000pt;}
.yea{bottom:111.520000pt;}
.y184{bottom:115.040000pt;}
.y1de{bottom:116.320000pt;}
.y205{bottom:117.920000pt;}
.y122{bottom:119.360000pt;}
.y39{bottom:119.680000pt;}
.y12b{bottom:120.320000pt;}
.y1a9{bottom:123.840000pt;}
.y50{bottom:124.653333pt;}
.y1bd{bottom:127.360000pt;}
.ye9{bottom:129.120000pt;}
.y1dd{bottom:133.920000pt;}
.yb8{bottom:134.720000pt;}
.y204{bottom:135.520000pt;}
.y12a{bottom:135.680000pt;}
.y183{bottom:136.320000pt;}
.y121{bottom:137.120000pt;}
.y38{bottom:137.280000pt;}
.y4f{bottom:140.493333pt;}
.y1a8{bottom:141.440000pt;}
.y1bc{bottom:144.986667pt;}
.ye8{bottom:146.746667pt;}
.y129{bottom:151.066667pt;}
.y1dc{bottom:151.546667pt;}
.yb7{bottom:152.346667pt;}
.y203{bottom:153.146667pt;}
.y120{bottom:154.746667pt;}
.y37{bottom:155.066667pt;}
.y4e{bottom:156.333333pt;}
.y1a7{bottom:159.226667pt;}
.y1bb{bottom:162.746667pt;}
.ye7{bottom:164.506667pt;}
.y128{bottom:166.426667pt;}
.y182{bottom:167.386667pt;}
.y1db{bottom:169.146667pt;}
.yb6{bottom:169.946667pt;}
.y202{bottom:170.906667pt;}
.y4d{bottom:172.333333pt;}
.y11f{bottom:172.346667pt;}
.y36{bottom:172.666667pt;}
.y1a6{bottom:176.826667pt;}
.y181{bottom:179.706667pt;}
.y1ba{bottom:180.346667pt;}
.y127{bottom:181.626667pt;}
.ye6{bottom:182.106667pt;}
.yb5{bottom:187.546667pt;}
.y1da{bottom:187.706667pt;}
.y4c{bottom:188.173333pt;}
.y201{bottom:188.506667pt;}
.y11e{bottom:189.946667pt;}
.y35{bottom:190.266667pt;}
.y17e{bottom:190.280000pt;}
.y1a5{bottom:194.426667pt;}
.y126{bottom:196.986667pt;}
.y1b9{bottom:197.946667pt;}
.ye5{bottom:199.706667pt;}
.y4b{bottom:204.040000pt;}
.yb4{bottom:206.106667pt;}
.y11d{bottom:207.546667pt;}
.y34{bottom:207.866667pt;}
.y1a4{bottom:212.026667pt;}
.y125{bottom:212.346667pt;}
.y1b8{bottom:215.546667pt;}
.y4a{bottom:215.880000pt;}
.ye4{bottom:217.306667pt;}
.y200{bottom:223.706667pt;}
.y49{bottom:223.720000pt;}
.y1d9{bottom:224.026667pt;}
.yb3{bottom:224.666667pt;}
.y11c{bottom:225.306667pt;}
.y33{bottom:225.466667pt;}
.y17c{bottom:226.760000pt;}
.y124{bottom:227.706667pt;}
.y1a3{bottom:229.626667pt;}
.y1b7{bottom:233.146667pt;}
.ye3{bottom:234.906667pt;}
.y48{bottom:239.560000pt;}
.y1ff{bottom:241.306667pt;}
.y1d8{bottom:242.426667pt;}
.y11b{bottom:242.906667pt;}
.y123{bottom:243.066667pt;}
.y32{bottom:243.226667pt;}
.y1a2{bottom:247.386667pt;}
.y1b6{bottom:250.906667pt;}
.ye2{bottom:252.666667pt;}
.y47{bottom:255.560000pt;}
.yb2{bottom:258.586667pt;}
.y1fe{bottom:259.066667pt;}
.y11a{bottom:260.506667pt;}
.y31{bottom:260.826667pt;}
.y179{bottom:262.760000pt;}
.y1d7{bottom:263.546667pt;}
.y1a1{bottom:264.986667pt;}
.y1b5{bottom:268.506667pt;}
.ye1{bottom:270.266667pt;}
.y46{bottom:271.400000pt;}
.yb1{bottom:273.946667pt;}
.y1fd{bottom:276.666667pt;}
.y119{bottom:278.106667pt;}
.y30{bottom:278.426667pt;}
.y1a0{bottom:282.586667pt;}
.y1b4{bottom:286.106667pt;}
.y45{bottom:287.240000pt;}
.ye0{bottom:287.866667pt;}
.yb0{bottom:289.306667pt;}
.y1fc{bottom:294.266667pt;}
.y2f{bottom:296.026667pt;}
.y175{bottom:298.760000pt;}
.y44{bottom:299.080000pt;}
.y1d6{bottom:299.866667pt;}
.y19f{bottom:300.186667pt;}
.y1b3{bottom:303.706667pt;}
.yaf{bottom:304.666667pt;}
.ydf{bottom:305.466667pt;}
.y43{bottom:306.920000pt;}
.y118{bottom:311.706667pt;}
.y1fb{bottom:311.866667pt;}
.y2e{bottom:313.626667pt;}
.y1d5{bottom:317.626667pt;}
.y19e{bottom:317.786667pt;}
.yae{bottom:320.026667pt;}
.y1b2{bottom:321.306667pt;}
.y115{bottom:322.280000pt;}
.y42{bottom:322.760000pt;}
.yde{bottom:323.066667pt;}
.y1fa{bottom:329.466667pt;}
.y2d{bottom:332.186667pt;}
.y16f{bottom:334.280000pt;}
.y1d4{bottom:335.226667pt;}
.yad{bottom:335.386667pt;}
.y41{bottom:338.600000pt;}
.y1b1{bottom:339.066667pt;}
.ydd{bottom:340.826667pt;}
.y112{bottom:346.280000pt;}
.y1f9{bottom:347.226667pt;}
.y2c{bottom:350.306667pt;}
.yac{bottom:350.626667pt;}
.y1d3{bottom:352.866667pt;}
.y19d{bottom:353.186667pt;}
.y3e{bottom:354.453333pt;}
.y40{bottom:354.600000pt;}
.y1b0{bottom:356.706667pt;}
.ydc{bottom:358.466667pt;}
.y2b{bottom:363.906667pt;}
.y1f8{bottom:364.866667pt;}
.yab{bottom:365.986667pt;}
.y111{bottom:370.306667pt;}
.y3f{bottom:370.440000pt;}
.y1d2{bottom:370.466667pt;}
.y16a{bottom:370.773333pt;}
.y167{bottom:370.786667pt;}
.y1af{bottom:374.306667pt;}
.ydb{bottom:376.066667pt;}
.yaa{bottom:381.346667pt;}
.y1f7{bottom:382.466667pt;}
.y2a{bottom:385.026667pt;}
.y1d1{bottom:388.066667pt;}
.y19c{bottom:388.386667pt;}
.y1ae{bottom:391.906667pt;}
.y75{bottom:392.053333pt;}
.yda{bottom:393.666667pt;}
.ya9{bottom:396.706667pt;}
.y1f6{bottom:400.066667pt;}
.y110{bottom:400.226667pt;}
.y29{bottom:403.586667pt;}
.y1d0{bottom:405.826667pt;}
.y19b{bottom:405.986667pt;}
.y1ad{bottom:409.506667pt;}
.yd9{bottom:411.266667pt;}
.ya8{bottom:412.066667pt;}
.y164{bottom:416.546667pt;}
.y1f5{bottom:417.666667pt;}
.y28{bottom:421.346667pt;}
.y1cf{bottom:423.426667pt;}
.y19a{bottom:423.586667pt;}
.y1ac{bottom:427.266667pt;}
.ya7{bottom:427.426667pt;}
.yd8{bottom:429.026667pt;}
.y10e{bottom:430.306667pt;}
.y27{bottom:433.506667pt;}
.y1f4{bottom:435.426667pt;}
.y1ce{bottom:441.026667pt;}
.y26{bottom:441.186667pt;}
.y199{bottom:441.346667pt;}
.ya6{bottom:444.866667pt;}
.yd7{bottom:446.626667pt;}
.y1f3{bottom:453.026667pt;}
.y198{bottom:458.946667pt;}
.y1cd{bottom:459.426667pt;}
.y10c{bottom:461.666667pt;}
.y25{bottom:461.826667pt;}
.ya5{bottom:462.466667pt;}
.yd6{bottom:464.226667pt;}
.y163{bottom:468.386667pt;}
.y1f2{bottom:470.626667pt;}
.y197{bottom:476.546667pt;}
.ya4{bottom:480.066667pt;}
.yd5{bottom:481.826667pt;}
.y24{bottom:482.626667pt;}
.y10b{bottom:484.706667pt;}
.y1f1{bottom:488.226667pt;}
.y196{bottom:494.146667pt;}
.y1cc{bottom:495.746667pt;}
.ya3{bottom:497.666667pt;}
.yd4{bottom:499.426667pt;}
.y10a{bottom:501.186667pt;}
.y162{bottom:502.306667pt;}
.y23{bottom:503.266667pt;}
.y1f0{bottom:505.826667pt;}
.y195{bottom:511.746667pt;}
.y1cb{bottom:513.506667pt;}
.ya2{bottom:515.426667pt;}
.yd3{bottom:517.186667pt;}
.y109{bottom:518.786667pt;}
.y161{bottom:520.066667pt;}
.yf2{bottom:520.706667pt;}
.y1ef{bottom:524.386667pt;}
.y194{bottom:529.506667pt;}
.y1ca{bottom:531.106667pt;}
.y22{bottom:532.866667pt;}
.ya1{bottom:533.026667pt;}
.yd2{bottom:534.786667pt;}
.y5a{bottom:536.053333pt;}
.y108{bottom:536.386667pt;}
.y160{bottom:537.666667pt;}
.yf1{bottom:538.306667pt;}
.y193{bottom:547.106667pt;}
.y21{bottom:548.386667pt;}
.y1c9{bottom:548.706667pt;}
.ya0{bottom:550.626667pt;}
.yd1{bottom:552.386667pt;}
.y107{bottom:554.013333pt;}
.y15f{bottom:555.293333pt;}
.yf0{bottom:555.933333pt;}
.y1ee{bottom:560.733333pt;}
.y20{bottom:564.093333pt;}
.y192{bottom:564.733333pt;}
.y1c8{bottom:566.333333pt;}
.y9f{bottom:568.253333pt;}
.yd0{bottom:570.013333pt;}
.y106{bottom:571.613333pt;}
.y15e{bottom:572.893333pt;}
.yef{bottom:573.533333pt;}
.y1ed{bottom:579.133333pt;}
.y191{bottom:582.333333pt;}
.y1f{bottom:583.293333pt;}
.y1c7{bottom:583.933333pt;}
.y9e{bottom:585.853333pt;}
.ycf{bottom:587.613333pt;}
.y105{bottom:589.373333pt;}
.y15d{bottom:590.493333pt;}
.yee{bottom:591.933333pt;}
.y1e{bottom:597.053333pt;}
.y190{bottom:599.933333pt;}
.y1c6{bottom:601.693333pt;}
.y9d{bottom:603.613333pt;}
.yce{bottom:605.373333pt;}
.y104{bottom:606.973333pt;}
.y15c{bottom:608.253333pt;}
.yed{bottom:609.693333pt;}
.y1d{bottom:610.973333pt;}
.y1ec{bottom:615.453333pt;}
.y18f{bottom:617.693333pt;}
.y1c5{bottom:619.293333pt;}
.y9c{bottom:621.213333pt;}
.ycd{bottom:622.973333pt;}
.y103{bottom:624.573333pt;}
.y1c{bottom:624.733333pt;}
.y15b{bottom:625.853333pt;}
.y1eb{bottom:633.053333pt;}
.y18e{bottom:635.293333pt;}
.y1c4{bottom:636.893333pt;}
.y1b{bottom:638.493333pt;}
.y9b{bottom:638.813333pt;}
.ycc{bottom:640.573333pt;}
.y15a{bottom:641.853333pt;}
.y102{bottom:642.173333pt;}
.y1a{bottom:648.413333pt;}
.y1ea{bottom:651.613333pt;}
.y18d{bottom:652.893333pt;}
.y159{bottom:654.173333pt;}
.y1c3{bottom:654.493333pt;}
.y9a{bottom:656.413333pt;}
.ycb{bottom:658.173333pt;}
.y68{bottom:658.973333pt;}
.y101{bottom:659.773333pt;}
.y19{bottom:660.573333pt;}
.y14b{bottom:664.573333pt;}
.y149{bottom:664.586667pt;}
.y18c{bottom:670.493333pt;}
.y18{bottom:671.773333pt;}
.y1c2{bottom:672.093333pt;}
.y99{bottom:674.013333pt;}
.yca{bottom:675.773333pt;}
.y100{bottom:677.533333pt;}
.y156{bottom:682.653333pt;}
.y17{bottom:682.813333pt;}
.y1e9{bottom:687.933333pt;}
.y18b{bottom:688.093333pt;}
.y1c1{bottom:689.853333pt;}
.y98{bottom:691.773333pt;}
.yc9{bottom:693.533333pt;}
.y16{bottom:694.333333pt;}
.yff{bottom:695.133333pt;}
.y154{bottom:700.586667pt;}
.y1e8{bottom:705.533333pt;}
.y18a{bottom:705.853333pt;}
.y15{bottom:706.493333pt;}
.y1c0{bottom:708.253333pt;}
.y97{bottom:709.373333pt;}
.yc8{bottom:711.133333pt;}
.yfe{bottom:712.733333pt;}
.y14{bottom:718.013333pt;}
.y150{bottom:718.666667pt;}
.y1e7{bottom:723.133333pt;}
.y189{bottom:723.453333pt;}
.y96{bottom:726.973333pt;}
.yc7{bottom:728.733333pt;}
.yfd{bottom:730.333333pt;}
.y14e{bottom:736.573333pt;}
.y1e6{bottom:740.733333pt;}
.y188{bottom:741.053333pt;}
.y13{bottom:741.693333pt;}
.y95{bottom:744.573333pt;}
.yc6{bottom:746.333333pt;}
.yfc{bottom:747.933333pt;}
.y1e5{bottom:758.533333pt;}
.y187{bottom:758.693333pt;}
.y144{bottom:760.280000pt;}
.y142{bottom:760.293333pt;}
.y94{bottom:762.213333pt;}
.yc5{bottom:763.973333pt;}
.yfb{bottom:765.733333pt;}
.y12{bottom:769.093333pt;}
.y1e4{bottom:776.133333pt;}
.y186{bottom:776.293333pt;}
.y147{bottom:778.853333pt;}
.y93{bottom:779.973333pt;}
.y11{bottom:782.213333pt;}
.yc4{bottom:782.533333pt;}
.yfa{bottom:783.333333pt;}
.y185{bottom:794.053333pt;}
.y1e3{bottom:794.533333pt;}
.y92{bottom:797.573333pt;}
.y10{bottom:799.333333pt;}
.yc3{bottom:799.973333pt;}
.yf9{bottom:801.733333pt;}
.yf{bottom:808.293333pt;}
.y141{bottom:810.373333pt;}
.yc2{bottom:811.653333pt;}
.y91{bottom:815.173333pt;}
.ye{bottom:825.413333pt;}
.y140{bottom:826.693333pt;}
.yc1{bottom:829.253333pt;}
.y1e2{bottom:830.853333pt;}
.y90{bottom:832.773333pt;}
.yd{bottom:835.333333pt;}
.yf8{bottom:838.053333pt;}
.y13f{bottom:842.693333pt;}
.yc0{bottom:846.853333pt;}
.y1e1{bottom:848.453333pt;}
.y8f{bottom:850.373333pt;}
.yc{bottom:851.333333pt;}
.y136{bottom:853.240000pt;}
.y134{bottom:853.253333pt;}
.yf7{bottom:855.653333pt;}
.ybf{bottom:864.453333pt;}
.y1e0{bottom:867.013333pt;}
.y8e{bottom:868.133333pt;}
.yb{bottom:871.973333pt;}
.yf6{bottom:873.413333pt;}
.ybe{bottom:882.213333pt;}
.y8d{bottom:885.733333pt;}
.y138{bottom:889.253333pt;}
.yf5{bottom:891.013333pt;}
.ya{bottom:892.933333pt;}
.ybd{bottom:899.813333pt;}
.y206{bottom:903.013333pt;}
.y8c{bottom:903.333333pt;}
.yf4{bottom:909.413333pt;}
.ybc{bottom:917.413333pt;}
.y8b{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y131{bottom:924.120000pt;}
.y12f{bottom:924.133333pt;}
.yf3{bottom:927.013333pt;}
.ybb{bottom:935.013333pt;}
.y8a{bottom:938.533333pt;}
.y8{bottom:945.093333pt;}
.yba{bottom:953.413333pt;}
.y89{bottom:956.133333pt;}
.y12e{bottom:957.413333pt;}
.y65{bottom:974.400000pt;}
.y85{bottom:998.400000pt;}
.y3b{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h51{height:5.562500pt;}
.h2{height:12.000000pt;}
.h18{height:15.040000pt;}
.h2a{height:16.146667pt;}
.h3e{height:17.266667pt;}
.h40{height:17.280000pt;}
.h3f{height:17.426667pt;}
.h41{height:17.440000pt;}
.h3b{height:17.906667pt;}
.h1f{height:19.680000pt;}
.h15{height:20.728125pt;}
.h3d{height:21.620000pt;}
.h2e{height:23.346667pt;}
.h2d{height:23.378667pt;}
.h3a{height:24.466667pt;}
.h29{height:26.368125pt;}
.hd{height:26.381250pt;}
.h30{height:26.392000pt;}
.h31{height:26.400000pt;}
.he{height:27.523125pt;}
.h2b{height:29.266667pt;}
.h2c{height:29.426667pt;}
.h17{height:32.250000pt;}
.h34{height:32.946667pt;}
.h49{height:34.706667pt;}
.h4a{height:34.712000pt;}
.h4b{height:34.720000pt;}
.h12{height:35.114107pt;}
.h4c{height:35.346667pt;}
.h35{height:35.352000pt;}
.h36{height:35.360000pt;}
.h4d{height:35.826667pt;}
.h4e{height:35.832000pt;}
.h4f{height:35.840000pt;}
.h47{height:35.858667pt;}
.h48{height:35.860000pt;}
.h5{height:36.431250pt;}
.h25{height:36.920625pt;}
.h1e{height:37.410000pt;}
.h10{height:39.571875pt;}
.h11{height:41.442606pt;}
.hc{height:42.084375pt;}
.h4{height:42.399867pt;}
.h39{height:43.026667pt;}
.h1c{height:43.031250pt;}
.h37{height:43.032000pt;}
.h38{height:43.040000pt;}
.h19{height:43.215000pt;}
.h43{height:43.826667pt;}
.h44{height:43.836000pt;}
.h45{height:43.840000pt;}
.h46{height:44.073883pt;}
.h13{height:44.768125pt;}
.h42{height:44.786667pt;}
.h21{height:46.240000pt;}
.h14{height:47.109375pt;}
.h50{height:47.621250pt;}
.h1a{height:48.375000pt;}
.hf{height:49.148438pt;}
.h3{height:52.134375pt;}
.h2f{height:52.478750pt;}
.ha{height:53.535000pt;}
.h27{height:54.598989pt;}
.hb{height:57.787500pt;}
.h22{height:58.563750pt;}
.h26{height:62.781250pt;}
.h16{height:64.500000pt;}
.h20{height:66.625000pt;}
.h24{height:66.750000pt;}
.h32{height:68.952000pt;}
.h33{height:68.960000pt;}
.h7{height:76.964840pt;}
.h28{height:83.499062pt;}
.h8{height:85.785000pt;}
.h9{height:88.611250pt;}
.h3c{height:93.620000pt;}
.h1d{height:108.840000pt;}
.h23{height:118.240000pt;}
.h1b{height:381.320000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w27{width:38.400000pt;}
.w2a{width:39.386667pt;}
.w25{width:39.392000pt;}
.w26{width:39.400000pt;}
.w13{width:53.472000pt;}
.w14{width:53.480000pt;}
.wd{width:53.600000pt;}
.w28{width:61.106667pt;}
.w15{width:62.400000pt;}
.w19{width:68.306667pt;}
.w1e{width:68.312000pt;}
.w1f{width:68.320000pt;}
.w16{width:68.352000pt;}
.w1a{width:68.360000pt;}
.w18{width:71.378667pt;}
.w1d{width:71.380000pt;}
.w2d{width:71.666667pt;}
.w32{width:71.676000pt;}
.w33{width:71.680000pt;}
.w3{width:72.952000pt;}
.w2f{width:77.906667pt;}
.w35{width:77.912000pt;}
.w36{width:77.920000pt;}
.w29{width:86.418667pt;}
.w17{width:88.946667pt;}
.w1b{width:88.956000pt;}
.w1c{width:88.960000pt;}
.w2e{width:90.098667pt;}
.w34{width:90.100000pt;}
.w30{width:96.026667pt;}
.w37{width:96.032000pt;}
.w38{width:96.040000pt;}
.w22{width:120.032000pt;}
.w24{width:128.946667pt;}
.w9{width:137.306667pt;}
.w20{width:138.093333pt;}
.w21{width:138.106667pt;}
.wf{width:142.746667pt;}
.w23{width:147.533333pt;}
.wc{width:148.973333pt;}
.w2c{width:149.946667pt;}
.w31{width:149.960000pt;}
.w2b{width:150.098667pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.we{width:164.693333pt;}
.w10{width:199.226667pt;}
.w11{width:297.013333pt;}
.w12{width:297.026667pt;}
.w6{width:473.693333pt;}
.wb{width:510.040000pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:707.320000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x59{left:3.780000pt;}
.x2{left:7.192000pt;}
.x3e{left:8.626667pt;}
.x13{left:9.592000pt;}
.x38{left:11.680000pt;}
.x37{left:12.640000pt;}
.x23{left:13.600000pt;}
.x44{left:15.840000pt;}
.x34{left:16.973333pt;}
.x4c{left:17.906667pt;}
.x19{left:18.893333pt;}
.x33{left:20.960000pt;}
.x46{left:22.066667pt;}
.x4b{left:24.320000pt;}
.x36{left:25.440000pt;}
.x25{left:27.066667pt;}
.x57{left:28.040000pt;}
.x3c{left:29.440000pt;}
.x3d{left:30.866667pt;}
.x4e{left:32.480000pt;}
.x2a{left:34.106667pt;}
.x28{left:39.066667pt;}
.x48{left:40.800000pt;}
.x29{left:44.480000pt;}
.x27{left:46.880000pt;}
.x56{left:50.240000pt;}
.x4d{left:52.000000pt;}
.x4f{left:53.440000pt;}
.x4a{left:55.200000pt;}
.x58{left:56.320000pt;}
.x55{left:60.320000pt;}
.x47{left:61.760000pt;}
.x49{left:62.720000pt;}
.x3{left:65.746667pt;}
.x2b{left:71.066667pt;}
.x12{left:72.680000pt;}
.x18{left:82.760000pt;}
.x15{left:84.200000pt;}
.xd{left:89.952000pt;}
.x1{left:96.040000pt;}
.xa{left:97.632000pt;}
.x50{left:98.760000pt;}
.x2d{left:108.032000pt;}
.x2e{left:110.600000pt;}
.x31{left:112.826667pt;}
.x9{left:115.232000pt;}
.xe{left:117.952000pt;}
.x1e{left:120.032000pt;}
.x1b{left:135.226667pt;}
.x30{left:142.746667pt;}
.x6{left:153.626667pt;}
.x1f{left:156.026667pt;}
.xc{left:157.786667pt;}
.x2c{left:159.706667pt;}
.x20{left:161.640000pt;}
.x4{left:169.000000pt;}
.x2f{left:187.226667pt;}
.xb{left:227.746667pt;}
.x21{left:233.013333pt;}
.x7{left:241.666667pt;}
.x3f{left:248.546667pt;}
.x14{left:268.546667pt;}
.x16{left:275.866667pt;}
.x22{left:310.626667pt;}
.x17{left:330.293333pt;}
.x24{left:364.226667pt;}
.x40{left:368.586667pt;}
.x39{left:378.186667pt;}
.x5{left:396.893333pt;}
.x51{left:398.826667pt;}
.x8{left:402.013333pt;}
.xf{left:420.573333pt;}
.x45{left:429.706667pt;}
.x10{left:434.813333pt;}
.x11{left:436.253333pt;}
.x3a{left:467.146667pt;}
.x52{left:470.506667pt;}
.x41{left:516.133333pt;}
.x26{left:528.933333pt;}
.x3b{left:538.533333pt;}
.x1a{left:551.336000pt;}
.x53{left:560.613333pt;}
.x1d{left:573.733333pt;}
.x32{left:606.853333pt;}
.x54{left:638.533333pt;}
.x42{left:645.093333pt;}
.x35{left:660.320000pt;}
.x43{left:684.480000pt;}
.x1c{left:710.400000pt;}
}




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