
    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_f73a9d5de58b963d9b5da55c.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_933b907471173c27278d99f2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0b3ac5e576234d2e05954e0f.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_cb831bfc45030f6d94299355.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1155f12929f8b5a5d697f43c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_02150b17daf3c65f70b00170.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_782923eea44f8eca33a0fe11.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_38857a9a0ea9dd22e0e86e08.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ca0d3a805e80014c3d1a837c.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8425e66e58e97f5f4469f1b7.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_165fb94c4df93711d2726227.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_c7e299956df8418766f12f4e.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_78faaa5a2948206f10daf17b.woff')format("woff");}.fff{font-family:fff;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-1.440000px;}
.lse{letter-spacing:-0.810000px;}
.ls9{letter-spacing:-0.666000px;}
.ls1d{letter-spacing:-0.513600px;}
.lsa{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.223800px;}
.ls15{letter-spacing:-0.206400px;}
.ls1a{letter-spacing:-0.181200px;}
.lsb{letter-spacing:-0.090600px;}
.ls13{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.053280px;}
.ls17{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.181200px;}
.ls10{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.270720px;}
.ls20{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls19{letter-spacing:0.513600px;}
.ls5{letter-spacing:0.569520px;}
.ls1e{letter-spacing:0.666000px;}
.ls1b{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.840000px;}
.ls18{letter-spacing:0.924000px;}
.ls11{letter-spacing:8.100000px;}
.ls12{letter-spacing:8.820000px;}
.ls16{letter-spacing:10.260000px;}
.ls21{letter-spacing:13.140000px;}
.ls2{letter-spacing:47.700000px;}
.ls1{letter-spacing:72.000000px;}
.ls0{letter-spacing:72.720000px;}
.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;}
}
.wsf{word-spacing:-18.000000px;}
.wsd{word-spacing:-16.560000px;}
.ws10{word-spacing:-15.864000px;}
.ws15{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.238800px;}
.ws13{word-spacing:-14.993280px;}
.wsc{word-spacing:-14.940000px;}
.wse{word-spacing:-14.733600px;}
.ws14{word-spacing:-14.426400px;}
.ws2{word-spacing:-14.274000px;}
.ws8{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.241200px;}
.ws12{word-spacing:-12.060000px;}
.ws5{word-spacing:-11.969400px;}
.ws11{word-spacing:-11.878800px;}
.ws7{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.340000px;}
.ws3{word-spacing:-10.980000px;}
.wsa{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.wsb{word-spacing:0.000000px;}
.ws0{word-spacing:61.560000px;}
._5{margin-left:-59.580000px;}
._36{margin-left:-4.332240px;}
._6{margin-left:-3.018240px;}
._2{margin-left:-1.523520px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._15{width:3.613440px;}
._c{width:4.840560px;}
._22{width:5.976000px;}
._d{width:7.230960px;}
._19{width:8.414640px;}
._9{width:9.891360px;}
._7{width:10.936080px;}
._b{width:12.670560px;}
._a{width:13.924080px;}
._17{width:15.157440px;}
._18{width:16.208400px;}
._2f{width:18.107280px;}
._e{width:19.123200px;}
._f{width:20.441520px;}
._16{width:21.546000px;}
._13{width:23.032800px;}
._12{width:24.680880px;}
._29{width:26.533440px;}
._2e{width:27.549360px;}
._27{width:28.625040px;}
._8{width:29.911680px;}
._10{width:31.254480px;}
._21{width:32.449680px;}
._14{width:33.704640px;}
._1c{width:34.827840px;}
._24{width:36.393840px;}
._23{width:38.126880px;}
._11{width:39.501360px;}
._28{width:41.473440px;}
._2b{width:42.847920px;}
._33{width:43.863840px;}
._2c{width:44.939520px;}
._34{width:46.612800px;}
._35{width:47.628720px;}
._2d{width:48.823920px;}
._31{width:52.588800px;}
._1a{width:58.589280px;}
._1b{width:60.121920px;}
._2a{width:61.493040px;}
._26{width:62.508960px;}
._30{width:63.763920px;}
._3{width:65.496000px;}
._32{width:66.545520px;}
._25{width:69.919200px;}
._1f{width:71.868960px;}
._1d{width:90.201600px;}
._1e{width:91.454400px;}
._4{width:199.620000px;}
._20{width:285.870000px;}
.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;}
.fsf{font-size:6.000000px;}
.fsd{font-size:23.760000px;}
.fs8{font-size:30.240000px;}
.fsc{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fs7{font-size:45.360000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fse{font-size:62.991941px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y4b{bottom:-247.710000px;}
.y4a{bottom:-213.870000px;}
.y7d{bottom:-198.750000px;}
.y49{bottom:-180.210000px;}
.y7c{bottom:-165.090000px;}
.y48{bottom:-146.550000px;}
.y7b{bottom:-131.250000px;}
.y47{bottom:-112.710000px;}
.y7a{bottom:-97.545000px;}
.y46{bottom:-79.020000px;}
.y79{bottom:-63.705000px;}
.y45{bottom:-45.180000px;}
.y78{bottom:-30.045000px;}
.y4e{bottom:-27.180000px;}
.y7f{bottom:-17.922750px;}
.y44{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.y77{bottom:0.915000px;}
.y217{bottom:1.837500px;}
.y17f{bottom:2.685000px;}
.y172{bottom:2.700000px;}
.y17b{bottom:2.865000px;}
.y157{bottom:2.880000px;}
.y166{bottom:3.060000px;}
.y2{bottom:3.960000px;}
.y16b{bottom:4.500000px;}
.y4d{bottom:5.040000px;}
.y150{bottom:5.220000px;}
.y15e{bottom:5.385000px;}
.y70{bottom:5.580000px;}
.y153{bottom:5.760000px;}
.y14c{bottom:5.940000px;}
.y156{bottom:6.120000px;}
.y15c{bottom:6.165000px;}
.y14b{bottom:6.300000px;}
.y147{bottom:6.660000px;}
.y43{bottom:6.840000px;}
.y6e{bottom:9.555000px;}
.y17c{bottom:9.885000px;}
.y167{bottom:9.900000px;}
.y146{bottom:10.800000px;}
.y5{bottom:12.600000px;}
.y63{bottom:13.875000px;}
.y76{bottom:14.055000px;}
.y17a{bottom:16.545000px;}
.y149{bottom:16.560000px;}
.y180{bottom:16.725000px;}
.y165{bottom:16.740000px;}
.y170{bottom:16.770000px;}
.y178{bottom:16.920000px;}
.y42{bottom:20.700000px;}
.y6{bottom:21.960000px;}
.y6d{bottom:22.695000px;}
.y3{bottom:23.220000px;}
.y4{bottom:24.660000px;}
.y75{bottom:27.015000px;}
.y62{bottom:29.715000px;}
.y17e{bottom:30.405000px;}
.y175{bottom:30.420000px;}
.y41{bottom:34.740000px;}
.y159{bottom:35.460000px;}
.y6c{bottom:35.655000px;}
.y74{bottom:39.975000px;}
.y61{bottom:42.135000px;}
.y162{bottom:45.705000px;}
.y82{bottom:46.980000px;}
.y40{bottom:47.520000px;}
.y6b{bottom:48.645000px;}
.y14e{bottom:53.100000px;}
.y73{bottom:53.115000px;}
.y1{bottom:57.420000px;}
.y161{bottom:59.385000px;}
.y60{bottom:60.135000px;}
.y6a{bottom:61.785000px;}
.y7e{bottom:63.780000px;}
.y72{bottom:65.355000px;}
.y160{bottom:73.245000px;}
.y69{bottom:74.745000px;}
.y5f{bottom:75.435000px;}
.y5e{bottom:87.855000px;}
.y68{bottom:87.885000px;}
.y67{bottom:100.845000px;}
.y189{bottom:104.940000px;}
.y5d{bottom:105.675000px;}
.yab{bottom:106.200000px;}
.y1d1{bottom:108.180000px;}
.yfe{bottom:109.620000px;}
.y9b{bottom:110.880000px;}
.y66{bottom:113.805000px;}
.y1ae{bottom:119.520000px;}
.y5c{bottom:123.495000px;}
.y143{bottom:126.180000px;}
.ydc{bottom:127.440000px;}
.y1d0{bottom:127.980000px;}
.yaa{bottom:128.700000px;}
.y38{bottom:129.420000px;}
.y3e{bottom:130.500000px;}
.y9a{bottom:130.680000px;}
.y65{bottom:130.905000px;}
.y1ad{bottom:139.320000px;}
.y5b{bottom:141.345000px;}
.y188{bottom:146.700000px;}
.ydb{bottom:147.240000px;}
.y1cf{bottom:147.780000px;}
.ya9{bottom:148.500000px;}
.y37{bottom:149.220000px;}
.y3d{bottom:150.300000px;}
.y99{bottom:150.480000px;}
.y5a{bottom:156.645000px;}
.y1ac{bottom:159.120000px;}
.yda{bottom:167.070000px;}
.y1ce{bottom:167.790000px;}
.y142{bottom:167.970000px;}
.ya8{bottom:168.330000px;}
.yfd{bottom:169.050000px;}
.y36{bottom:169.230000px;}
.y59{bottom:169.245000px;}
.y3c{bottom:170.130000px;}
.y187{bottom:170.670000px;}
.y98{bottom:171.570000px;}
.y1ab{bottom:179.130000px;}
.yd9{bottom:187.050000px;}
.y58{bottom:187.065000px;}
.y1cd{bottom:187.590000px;}
.ya7{bottom:188.310000px;}
.y35{bottom:189.030000px;}
.y3b{bottom:189.930000px;}
.y97{bottom:191.010000px;}
.y186{bottom:191.730000px;}
.y1aa{bottom:198.930000px;}
.y141{bottom:203.070000px;}
.y96{bottom:204.150000px;}
.y57{bottom:204.885000px;}
.y185{bottom:205.590000px;}
.yd8{bottom:206.850000px;}
.y1cc{bottom:207.390000px;}
.ya6{bottom:208.110000px;}
.y34{bottom:208.830000px;}
.y3a{bottom:209.730000px;}
.y125{bottom:214.770000px;}
.y56{bottom:218.205000px;}
.y1a9{bottom:218.730000px;}
.y184{bottom:219.450000px;}
.y140{bottom:222.690000px;}
.y95{bottom:223.950000px;}
.yd7{bottom:226.650000px;}
.y55{bottom:227.025000px;}
.y39{bottom:227.550000px;}
.ya5{bottom:227.910000px;}
.y1cb{bottom:228.090000px;}
.y33{bottom:228.630000px;}
.y183{bottom:231.345000px;}
.y124{bottom:234.570000px;}
.y1a8{bottom:238.530000px;}
.y13f{bottom:242.490000px;}
.y94{bottom:243.750000px;}
.y54{bottom:244.845000px;}
.yd6{bottom:246.450000px;}
.ya4{bottom:247.710000px;}
.y32{bottom:248.430000px;}
.y123{bottom:254.370000px;}
.y1a7{bottom:258.330000px;}
.y182{bottom:259.605000px;}
.y13e{bottom:262.290000px;}
.y53{bottom:262.665000px;}
.y93{bottom:263.550000px;}
.yd5{bottom:266.250000px;}
.ya3{bottom:267.510000px;}
.yfc{bottom:268.230000px;}
.y31{bottom:268.410000px;}
.y1ca{bottom:268.950000px;}
.y122{bottom:274.170000px;}
.y1a6{bottom:278.310000px;}
.y52{bottom:280.665000px;}
.y13d{bottom:282.270000px;}
.y92{bottom:283.530000px;}
.yd4{bottom:286.230000px;}
.ya2{bottom:287.490000px;}
.y181{bottom:288.045000px;}
.y30{bottom:288.210000px;}
.y1c9{bottom:288.930000px;}
.y121{bottom:294.150000px;}
.y1a5{bottom:298.110000px;}
.y51{bottom:298.485000px;}
.y13c{bottom:302.070000px;}
.y91{bottom:303.330000px;}
.yd3{bottom:306.030000px;}
.ya1{bottom:307.290000px;}
.y2f{bottom:308.010000px;}
.y1c8{bottom:308.730000px;}
.y120{bottom:313.950000px;}
.y50{bottom:316.305000px;}
.y1a4{bottom:317.910000px;}
.y13b{bottom:321.870000px;}
.y90{bottom:323.130000px;}
.yd2{bottom:325.830000px;}
.ya0{bottom:327.090000px;}
.y2e{bottom:327.810000px;}
.y1c7{bottom:328.530000px;}
.y17d{bottom:330.165000px;}
.y11f{bottom:333.750000px;}
.y1a3{bottom:337.710000px;}
.y13a{bottom:341.670000px;}
.y8f{bottom:342.930000px;}
.yd1{bottom:345.630000px;}
.y9f{bottom:346.890000px;}
.y2d{bottom:347.610000px;}
.y1c6{bottom:348.330000px;}
.y11e{bottom:353.550000px;}
.y1a2{bottom:357.510000px;}
.y139{bottom:361.470000px;}
.y8e{bottom:362.730000px;}
.yd0{bottom:365.430000px;}
.y9e{bottom:366.690000px;}
.yfb{bottom:367.410000px;}
.y2c{bottom:367.590000px;}
.y1c5{bottom:368.130000px;}
.y179{bottom:372.285000px;}
.y11d{bottom:373.350000px;}
.y1a1{bottom:377.310000px;}
.y138{bottom:381.450000px;}
.y8d{bottom:382.710000px;}
.ycf{bottom:385.410000px;}
.y9d{bottom:386.670000px;}
.y2b{bottom:387.390000px;}
.y1c4{bottom:388.110000px;}
.y11c{bottom:393.375000px;}
.y1a0{bottom:397.335000px;}
.y177{bottom:400.575000px;}
.y137{bottom:401.295000px;}
.y216{bottom:403.095000px;}
.y8c{bottom:403.815000px;}
.yce{bottom:405.255000px;}
.y9c{bottom:406.515000px;}
.y2a{bottom:407.235000px;}
.y1c3{bottom:407.955000px;}
.y11b{bottom:413.175000px;}
.y19f{bottom:417.135000px;}
.y136{bottom:421.095000px;}
.ycd{bottom:425.055000px;}
.y29{bottom:427.035000px;}
.y8b{bottom:427.215000px;}
.y1c2{bottom:428.655000px;}
.y11a{bottom:432.975000px;}
.y19e{bottom:436.935000px;}
.y215{bottom:437.655000px;}
.y135{bottom:440.895000px;}
.y176{bottom:442.875000px;}
.y1f2{bottom:444.135000px;}
.ycc{bottom:444.855000px;}
.y28{bottom:446.835000px;}
.y8a{bottom:449.535000px;}
.y119{bottom:452.775000px;}
.y214{bottom:454.935000px;}
.y19d{bottom:456.735000px;}
.y134{bottom:460.695000px;}
.y1f1{bottom:461.415000px;}
.y89{bottom:464.295000px;}
.ycb{bottom:464.655000px;}
.yfa{bottom:466.635000px;}
.y27{bottom:467.715000px;}
.y1c1{bottom:469.515000px;}
.y213{bottom:472.215000px;}
.y118{bottom:472.575000px;}
.y19c{bottom:476.535000px;}
.y1f0{bottom:478.695000px;}
.y133{bottom:480.675000px;}
.yca{bottom:484.635000px;}
.y26{bottom:484.995000px;}
.yf9{bottom:486.615000px;}
.y212{bottom:489.315000px;}
.y1c0{bottom:490.395000px;}
.y117{bottom:492.555000px;}
.y25{bottom:493.455000px;}
.y71{bottom:494.160000px;}
.y4f{bottom:495.780000px;}
.y1ef{bottom:495.975000px;}
.y19b{bottom:496.515000px;}
.y132{bottom:500.475000px;}
.yc9{bottom:505.695000px;}
.yf8{bottom:506.415000px;}
.y211{bottom:506.595000px;}
.y116{bottom:512.355000px;}
.y1ee{bottom:513.075000px;}
.y174{bottom:513.255000px;}
.y19a{bottom:516.315000px;}
.y131{bottom:520.275000px;}
.y210{bottom:523.875000px;}
.yc8{bottom:525.135000px;}
.yf7{bottom:526.215000px;}
.y24{bottom:528.015000px;}
.y1ed{bottom:530.355000px;}
.y1bf{bottom:531.255000px;}
.y115{bottom:532.155000px;}
.y199{bottom:536.115000px;}
.yc7{bottom:538.995000px;}
.y130{bottom:540.075000px;}
.y20f{bottom:541.155000px;}
.yf6{bottom:546.015000px;}
.y1ec{bottom:547.635000px;}
.y1be{bottom:551.055000px;}
.y23{bottom:551.415000px;}
.y114{bottom:551.955000px;}
.y173{bottom:555.375000px;}
.y198{bottom:555.915000px;}
.y20e{bottom:558.435000px;}
.y12f{bottom:559.875000px;}
.yc6{bottom:561.855000px;}
.y1eb{bottom:564.915000px;}
.yf5{bottom:565.815000px;}
.y1bd{bottom:570.855000px;}
.y113{bottom:571.755000px;}
.y197{bottom:575.715000px;}
.y12e{bottom:579.855000px;}
.yc5{bottom:581.835000px;}
.y1ea{bottom:582.195000px;}
.y64{bottom:582.720000px;}
.y171{bottom:583.815000px;}
.yf4{bottom:585.795000px;}
.y1bc{bottom:590.115000px;}
.y112{bottom:591.735000px;}
.y20d{bottom:592.815000px;}
.y196{bottom:595.695000px;}
.y1e9{bottom:599.295000px;}
.y12d{bottom:599.655000px;}
.yc4{bottom:601.635000px;}
.yf3{bottom:605.595000px;}
.y22{bottom:606.135000px;}
.y20c{bottom:610.095000px;}
.y111{bottom:611.535000px;}
.y16f{bottom:612.075000px;}
.y195{bottom:615.495000px;}
.y1e8{bottom:616.575000px;}
.y12c{bottom:619.455000px;}
.yc3{bottom:621.435000px;}
.y21{bottom:621.795000px;}
.yf2{bottom:625.425000px;}
.y20b{bottom:627.405000px;}
.y1bb{bottom:631.005000px;}
.y110{bottom:631.365000px;}
.y1e7{bottom:633.885000px;}
.y194{bottom:635.325000px;}
.y20{bottom:637.305000px;}
.y12b{bottom:639.285000px;}
.y16e{bottom:640.545000px;}
.yc2{bottom:641.265000px;}
.y20a{bottom:644.685000px;}
.yf1{bottom:645.225000px;}
.y1ba{bottom:650.985000px;}
.y10f{bottom:651.165000px;}
.y1f{bottom:652.785000px;}
.y193{bottom:655.125000px;}
.y12a{bottom:659.085000px;}
.yc1{bottom:661.065000px;}
.y16d{bottom:661.425000px;}
.y209{bottom:661.965000px;}
.yf0{bottom:665.025000px;}
.y1e{bottom:668.265000px;}
.y1e6{bottom:668.445000px;}
.y1b9{bottom:670.785000px;}
.y10e{bottom:670.965000px;}
.y192{bottom:674.925000px;}
.y129{bottom:679.065000px;}
.y208{bottom:679.245000px;}
.yc0{bottom:681.045000px;}
.y16c{bottom:681.765000px;}
.y15f{bottom:681.780000px;}
.y1d{bottom:683.925000px;}
.yef{bottom:685.005000px;}
.y1e5{bottom:685.725000px;}
.y1b8{bottom:690.585000px;}
.y10d{bottom:690.945000px;}
.y191{bottom:694.905000px;}
.y16a{bottom:696.165000px;}
.y207{bottom:696.345000px;}
.y128{bottom:698.865000px;}
.y1c{bottom:699.405000px;}
.ybf{bottom:700.845000px;}
.y1e4{bottom:702.825000px;}
.yee{bottom:704.805000px;}
.y1b7{bottom:710.385000px;}
.y10c{bottom:711.645000px;}
.y206{bottom:713.625000px;}
.y169{bottom:713.805000px;}
.y190{bottom:714.705000px;}
.y1b{bottom:714.885000px;}
.y127{bottom:718.665000px;}
.y1e3{bottom:720.105000px;}
.ybe{bottom:720.645000px;}
.yed{bottom:724.605000px;}
.y1a{bottom:726.045000px;}
.y1b6{bottom:730.185000px;}
.y205{bottom:730.905000px;}
.y18f{bottom:734.505000px;}
.y3f{bottom:734.685000px;}
.y10b{bottom:735.405000px;}
.y1e2{bottom:737.385000px;}
.y126{bottom:738.465000px;}
.y19{bottom:739.725000px;}
.ybd{bottom:740.445000px;}
.y168{bottom:742.065000px;}
.yec{bottom:744.405000px;}
.y204{bottom:748.185000px;}
.y1b5{bottom:751.065000px;}
.y18{bottom:752.685000px;}
.y18e{bottom:754.305000px;}
.y1e1{bottom:754.665000px;}
.y10a{bottom:758.265000px;}
.ybc{bottom:760.245000px;}
.y164{bottom:761.685000px;}
.yeb{bottom:764.205000px;}
.y17{bottom:765.465000px;}
.y1e0{bottom:771.945000px;}
.y18d{bottom:774.105000px;}
.y1b4{bottom:774.825000px;}
.y109{bottom:778.245000px;}
.y16{bottom:778.425000px;}
.ybb{bottom:780.225000px;}
.y203{bottom:782.565000px;}
.yea{bottom:784.185000px;}
.y1df{bottom:789.225000px;}
.y163{bottom:790.140000px;}
.y15{bottom:792.285000px;}
.y18c{bottom:794.085000px;}
.y108{bottom:798.045000px;}
.y202{bottom:799.845000px;}
.yba{bottom:801.285000px;}
.ye9{bottom:803.985000px;}
.y14{bottom:805.065000px;}
.y1de{bottom:806.325000px;}
.y158{bottom:809.565000px;}
.y18b{bottom:813.885000px;}
.y1b3{bottom:815.685000px;}
.y201{bottom:817.125000px;}
.y107{bottom:817.845000px;}
.yb9{bottom:820.545000px;}
.y1dd{bottom:823.605000px;}
.ye8{bottom:823.785000px;}
.y15d{bottom:829.920000px;}
.y13{bottom:831.885000px;}
.yb8{bottom:833.685000px;}
.y200{bottom:834.405000px;}
.y1b2{bottom:835.485000px;}
.y106{bottom:837.645000px;}
.y1dc{bottom:840.885000px;}
.y12{bottom:843.045000px;}
.ye7{bottom:843.585000px;}
.y15b{bottom:849.525000px;}
.y1ff{bottom:851.685000px;}
.yb7{bottom:853.530000px;}
.y1b1{bottom:855.330000px;}
.y105{bottom:857.490000px;}
.y1db{bottom:858.210000px;}
.ye6{bottom:863.430000px;}
.y11{bottom:867.390000px;}
.y1fe{bottom:869.010000px;}
.y15a{bottom:870.450000px;}
.yb6{bottom:873.330000px;}
.y1b0{bottom:875.310000px;}
.y1da{bottom:875.490000px;}
.y104{bottom:877.470000px;}
.ye5{bottom:883.410000px;}
.y1fd{bottom:886.110000px;}
.y14d{bottom:889.350000px;}
.y10{bottom:891.510000px;}
.y1d9{bottom:892.590000px;}
.yb5{bottom:893.310000px;}
.y1af{bottom:896.010000px;}
.y103{bottom:897.270000px;}
.yf{bottom:901.770000px;}
.ye4{bottom:903.210000px;}
.y1fc{bottom:903.390000px;}
.y155{bottom:903.930000px;}
.y1d8{bottom:909.870000px;}
.yb4{bottom:913.110000px;}
.y102{bottom:917.070000px;}
.y1fb{bottom:920.670000px;}
.ye{bottom:921.210000px;}
.ye3{bottom:923.010000px;}
.y154{bottom:924.810000px;}
.y1d7{bottom:927.150000px;}
.yb3{bottom:932.910000px;}
.yd{bottom:936.150000px;}
.y101{bottom:936.870000px;}
.y1fa{bottom:937.950000px;}
.ye2{bottom:942.810000px;}
.y152{bottom:944.430000px;}
.yc{bottom:947.670000px;}
.yb2{bottom:952.710000px;}
.y1f9{bottom:955.230000px;}
.y100{bottom:956.670000px;}
.y1d6{bottom:961.710000px;}
.ye1{bottom:962.610000px;}
.y151{bottom:964.590000px;}
.yb{bottom:965.130000px;}
.yb1{bottom:972.510000px;}
.yff{bottom:976.650000px;}
.y1d5{bottom:978.990000px;}
.ye0{bottom:982.590000px;}
.y88{bottom:983.310000px;}
.y14f{bottom:985.470000px;}
.ya{bottom:986.730000px;}
.y1f8{bottom:989.610000px;}
.yb0{bottom:992.490000px;}
.y87{bottom:996.450000px;}
.y1d4{bottom:996.630000px;}
.ydf{bottom:1002.390000px;}
.y148{bottom:1004.370000px;}
.y1f7{bottom:1006.890000px;}
.y9{bottom:1008.690000px;}
.yaf{bottom:1012.290000px;}
.y86{bottom:1016.250000px;}
.yde{bottom:1023.090000px;}
.y1f6{bottom:1024.170000px;}
.y14a{bottom:1024.710000px;}
.yae{bottom:1032.090000px;}
.y1d3{bottom:1034.790000px;}
.y85{bottom:1036.050000px;}
.y8{bottom:1036.230000px;}
.y1f5{bottom:1041.450000px;}
.ydd{bottom:1042.710000px;}
.y145{bottom:1047.750000px;}
.yad{bottom:1051.890000px;}
.y1d2{bottom:1052.070000px;}
.y84{bottom:1055.850000px;}
.y1f4{bottom:1058.730000px;}
.y7{bottom:1063.230000px;}
.y18a{bottom:1072.590000px;}
.yac{bottom:1072.950000px;}
.y83{bottom:1075.650000px;}
.y1f3{bottom:1075.830000px;}
.y144{bottom:1077.090000px;}
.y6f{bottom:1096.200000px;}
.y81{bottom:1105.920000px;}
.y80{bottom:1123.200000px;}
.y4c{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h16{height:5.805000px;}
.h48{height:6.257812px;}
.h2{height:13.500000px;}
.h36{height:13.665000px;}
.h3e{height:13.680000px;}
.h1a{height:16.920000px;}
.h32{height:18.165000px;}
.h35{height:18.705000px;}
.h3d{height:18.900000px;}
.h34{height:19.425000px;}
.h3f{height:19.440000px;}
.h30{height:19.605000px;}
.h39{height:19.620000px;}
.h33{height:20.145000px;}
.h40{height:20.160000px;}
.h38{height:20.182500px;}
.h2f{height:20.865000px;}
.h2d{height:21.585000px;}
.h21{height:22.140000px;}
.h42{height:27.525000px;}
.h3c{height:27.540000px;}
.h45{height:27.561000px;}
.h43{height:27.705000px;}
.h41{height:27.750000px;}
.h2a{height:29.664141px;}
.hc{height:29.678906px;}
.h28{height:30.476250px;}
.hf{height:30.963516px;}
.h2c{height:31.081955px;}
.h4{height:34.200000px;}
.h14{height:36.281250px;}
.h13{height:39.503370px;}
.h5{height:40.985156px;}
.h2e{height:41.205000px;}
.h44{height:41.385000px;}
.h27{height:41.726953px;}
.h20{height:42.086250px;}
.h26{height:42.661046px;}
.h46{height:42.922699px;}
.h11{height:44.518359px;}
.hb{height:45.116367px;}
.h18{height:45.714375px;}
.h12{height:46.622932px;}
.hd{height:47.344922px;}
.h1b{height:48.616875px;}
.h15{height:52.998047px;}
.h1c{height:54.421875px;}
.h10{height:55.291992px;}
.h1e{height:55.503491px;}
.h17{height:57.780000px;}
.h25{height:58.621992px;}
.h3{height:58.651172px;}
.h2b{height:60.226875px;}
.h47{height:61.423863px;}
.ha{height:65.010937px;}
.h19{height:65.884219px;}
.he{height:67.824844px;}
.h29{height:70.628906px;}
.h9{height:72.562500px;}
.h22{height:74.953125px;}
.h24{height:75.093750px;}
.h23{height:76.320000px;}
.h37{height:79.042500px;}
.h7{height:87.695156px;}
.h8{height:96.508125px;}
.h31{height:114.285000px;}
.h3a{height:127.075500px;}
.h3b{height:127.080000px;}
.h1f{height:139.005000px;}
.h1d{height:328.545000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w11{width:59.400000px;}
.w14{width:60.870000px;}
.w12{width:80.985000px;}
.w13{width:81.021000px;}
.w3{width:82.071000px;}
.w17{width:120.270000px;}
.w10{width:141.870000px;}
.w5{width:154.470000px;}
.wf{width:162.015000px;}
.wd{width:175.155000px;}
.w15{width:175.170000px;}
.we{width:182.190000px;}
.w8{width:182.355000px;}
.wa{width:187.590000px;}
.wb{width:357.366000px;}
.wc{width:363.300000px;}
.w7{width:532.920000px;}
.w16{width:545.505000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w9{width:743.175000px;}
.w6{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:4.252500px;}
.x2{left:8.091000px;}
.x12{left:10.791000px;}
.x3b{left:14.565000px;}
.x30{left:16.200000px;}
.x38{left:18.165000px;}
.x2f{left:19.800000px;}
.x18{left:21.255000px;}
.x2c{left:22.680000px;}
.x35{left:23.925000px;}
.x39{left:25.200000px;}
.x2e{left:27.000000px;}
.x3c{left:28.260000px;}
.x26{left:30.240000px;}
.x2a{left:32.790000px;}
.x28{left:35.085000px;}
.x32{left:36.540000px;}
.x2d{left:41.220000px;}
.x31{left:43.920000px;}
.x33{left:45.180000px;}
.x24{left:46.785000px;}
.x36{left:58.680000px;}
.x3d{left:62.100000px;}
.x3a{left:65.160000px;}
.x23{left:72.360000px;}
.x3{left:73.965000px;}
.x34{left:78.300000px;}
.x16{left:80.505000px;}
.x13{left:81.765000px;}
.x11{left:93.105000px;}
.x15{left:95.445000px;}
.x1{left:108.045000px;}
.x1a{left:120.996000px;}
.xb{left:125.136000px;}
.x6{left:128.376000px;}
.xe{left:132.696000px;}
.x21{left:158.610000px;}
.x7{left:167.250000px;}
.x1b{left:169.230000px;}
.x1c{left:173.010000px;}
.x4{left:190.125000px;}
.xd{left:213.150000px;}
.x37{left:249.690000px;}
.x9{left:270.795000px;}
.x22{left:283.215000px;}
.x17{left:285.690000px;}
.x14{left:303.195000px;}
.x1f{left:329.475000px;}
.xc{left:407.235000px;}
.x1d{left:441.285000px;}
.x8{left:443.085000px;}
.x5{left:446.505000px;}
.xa{left:459.105000px;}
.x20{left:465.420000px;}
.xf{left:489.165000px;}
.x10{left:490.785000px;}
.x3e{left:495.645000px;}
.x29{left:546.420000px;}
.x19{left:620.253000px;}
.x25{left:627.450000px;}
.x2b{left:708.450000px;}
.x27{left:769.320000px;}
.x1e{left:828.180000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-1.280000pt;}
.lse{letter-spacing:-0.720000pt;}
.ls9{letter-spacing:-0.592000pt;}
.ls1d{letter-spacing:-0.456533pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls15{letter-spacing:-0.183467pt;}
.ls1a{letter-spacing:-0.161067pt;}
.lsb{letter-spacing:-0.080533pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.047360pt;}
.ls17{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.161067pt;}
.ls10{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.240640pt;}
.ls20{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls19{letter-spacing:0.456533pt;}
.ls5{letter-spacing:0.506240pt;}
.ls1e{letter-spacing:0.592000pt;}
.ls1b{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.746667pt;}
.ls18{letter-spacing:0.821333pt;}
.ls11{letter-spacing:7.200000pt;}
.ls12{letter-spacing:7.840000pt;}
.ls16{letter-spacing:9.120000pt;}
.ls21{letter-spacing:11.680000pt;}
.ls2{letter-spacing:42.400000pt;}
.ls1{letter-spacing:64.000000pt;}
.ls0{letter-spacing:64.640000pt;}
.wsf{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.720000pt;}
.ws10{word-spacing:-14.101333pt;}
.ws15{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.545600pt;}
.ws13{word-spacing:-13.327360pt;}
.wsc{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.096533pt;}
.ws14{word-spacing:-12.823467pt;}
.ws2{word-spacing:-12.688000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws6{word-spacing:-10.881067pt;}
.ws12{word-spacing:-10.720000pt;}
.ws5{word-spacing:-10.639467pt;}
.ws11{word-spacing:-10.558933pt;}
.ws7{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.080000pt;}
.ws3{word-spacing:-9.760000pt;}
.wsa{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.wsb{word-spacing:0.000000pt;}
.ws0{word-spacing:54.720000pt;}
._5{margin-left:-52.960000pt;}
._36{margin-left:-3.850880pt;}
._6{margin-left:-2.682880pt;}
._2{margin-left:-1.354240pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._15{width:3.211947pt;}
._c{width:4.302720pt;}
._22{width:5.312000pt;}
._d{width:6.427520pt;}
._19{width:7.479680pt;}
._9{width:8.792320pt;}
._7{width:9.720960pt;}
._b{width:11.262720pt;}
._a{width:12.376960pt;}
._17{width:13.473280pt;}
._18{width:14.407467pt;}
._2f{width:16.095360pt;}
._e{width:16.998400pt;}
._f{width:18.170240pt;}
._16{width:19.152000pt;}
._13{width:20.473600pt;}
._12{width:21.938560pt;}
._29{width:23.585280pt;}
._2e{width:24.488320pt;}
._27{width:25.444480pt;}
._8{width:26.588160pt;}
._10{width:27.781760pt;}
._21{width:28.844160pt;}
._14{width:29.959680pt;}
._1c{width:30.958080pt;}
._24{width:32.350080pt;}
._23{width:33.890560pt;}
._11{width:35.112320pt;}
._28{width:36.865280pt;}
._2b{width:38.087040pt;}
._33{width:38.990080pt;}
._2c{width:39.946240pt;}
._34{width:41.433600pt;}
._35{width:42.336640pt;}
._2d{width:43.399040pt;}
._31{width:46.745600pt;}
._1a{width:52.079360pt;}
._1b{width:53.441707pt;}
._2a{width:54.660480pt;}
._26{width:55.563520pt;}
._30{width:56.679040pt;}
._3{width:58.218667pt;}
._32{width:59.151573pt;}
._25{width:62.150400pt;}
._1f{width:63.883520pt;}
._1d{width:80.179200pt;}
._1e{width:81.292800pt;}
._4{width:177.440000pt;}
._20{width:254.106667pt;}
.fs2{font-size:5.120000pt;}
.fsf{font-size:5.333333pt;}
.fsd{font-size:21.120000pt;}
.fs8{font-size:26.880000pt;}
.fsc{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fs7{font-size:40.320000pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fse{font-size:55.992837pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y4b{bottom:-220.186667pt;}
.y4a{bottom:-190.106667pt;}
.y7d{bottom:-176.666667pt;}
.y49{bottom:-160.186667pt;}
.y7c{bottom:-146.746667pt;}
.y48{bottom:-130.266667pt;}
.y7b{bottom:-116.666667pt;}
.y47{bottom:-100.186667pt;}
.y7a{bottom:-86.706667pt;}
.y46{bottom:-70.240000pt;}
.y79{bottom:-56.626667pt;}
.y45{bottom:-40.160000pt;}
.y78{bottom:-26.706667pt;}
.y4e{bottom:-24.160000pt;}
.y7f{bottom:-15.931333pt;}
.y44{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.y77{bottom:0.813333pt;}
.y217{bottom:1.633333pt;}
.y17f{bottom:2.386667pt;}
.y172{bottom:2.400000pt;}
.y17b{bottom:2.546667pt;}
.y157{bottom:2.560000pt;}
.y166{bottom:2.720000pt;}
.y2{bottom:3.520000pt;}
.y16b{bottom:4.000000pt;}
.y4d{bottom:4.480000pt;}
.y150{bottom:4.640000pt;}
.y15e{bottom:4.786667pt;}
.y70{bottom:4.960000pt;}
.y153{bottom:5.120000pt;}
.y14c{bottom:5.280000pt;}
.y156{bottom:5.440000pt;}
.y15c{bottom:5.480000pt;}
.y14b{bottom:5.600000pt;}
.y147{bottom:5.920000pt;}
.y43{bottom:6.080000pt;}
.y6e{bottom:8.493333pt;}
.y17c{bottom:8.786667pt;}
.y167{bottom:8.800000pt;}
.y146{bottom:9.600000pt;}
.y5{bottom:11.200000pt;}
.y63{bottom:12.333333pt;}
.y76{bottom:12.493333pt;}
.y17a{bottom:14.706667pt;}
.y149{bottom:14.720000pt;}
.y180{bottom:14.866667pt;}
.y165{bottom:14.880000pt;}
.y170{bottom:14.906667pt;}
.y178{bottom:15.040000pt;}
.y42{bottom:18.400000pt;}
.y6{bottom:19.520000pt;}
.y6d{bottom:20.173333pt;}
.y3{bottom:20.640000pt;}
.y4{bottom:21.920000pt;}
.y75{bottom:24.013333pt;}
.y62{bottom:26.413333pt;}
.y17e{bottom:27.026667pt;}
.y175{bottom:27.040000pt;}
.y41{bottom:30.880000pt;}
.y159{bottom:31.520000pt;}
.y6c{bottom:31.693333pt;}
.y74{bottom:35.533333pt;}
.y61{bottom:37.453333pt;}
.y162{bottom:40.626667pt;}
.y82{bottom:41.760000pt;}
.y40{bottom:42.240000pt;}
.y6b{bottom:43.240000pt;}
.y14e{bottom:47.200000pt;}
.y73{bottom:47.213333pt;}
.y1{bottom:51.040000pt;}
.y161{bottom:52.786667pt;}
.y60{bottom:53.453333pt;}
.y6a{bottom:54.920000pt;}
.y7e{bottom:56.693333pt;}
.y72{bottom:58.093333pt;}
.y160{bottom:65.106667pt;}
.y69{bottom:66.440000pt;}
.y5f{bottom:67.053333pt;}
.y5e{bottom:78.093333pt;}
.y68{bottom:78.120000pt;}
.y67{bottom:89.640000pt;}
.y189{bottom:93.280000pt;}
.y5d{bottom:93.933333pt;}
.yab{bottom:94.400000pt;}
.y1d1{bottom:96.160000pt;}
.yfe{bottom:97.440000pt;}
.y9b{bottom:98.560000pt;}
.y66{bottom:101.160000pt;}
.y1ae{bottom:106.240000pt;}
.y5c{bottom:109.773333pt;}
.y143{bottom:112.160000pt;}
.ydc{bottom:113.280000pt;}
.y1d0{bottom:113.760000pt;}
.yaa{bottom:114.400000pt;}
.y38{bottom:115.040000pt;}
.y3e{bottom:116.000000pt;}
.y9a{bottom:116.160000pt;}
.y65{bottom:116.360000pt;}
.y1ad{bottom:123.840000pt;}
.y5b{bottom:125.640000pt;}
.y188{bottom:130.400000pt;}
.ydb{bottom:130.880000pt;}
.y1cf{bottom:131.360000pt;}
.ya9{bottom:132.000000pt;}
.y37{bottom:132.640000pt;}
.y3d{bottom:133.600000pt;}
.y99{bottom:133.760000pt;}
.y5a{bottom:139.240000pt;}
.y1ac{bottom:141.440000pt;}
.yda{bottom:148.506667pt;}
.y1ce{bottom:149.146667pt;}
.y142{bottom:149.306667pt;}
.ya8{bottom:149.626667pt;}
.yfd{bottom:150.266667pt;}
.y36{bottom:150.426667pt;}
.y59{bottom:150.440000pt;}
.y3c{bottom:151.226667pt;}
.y187{bottom:151.706667pt;}
.y98{bottom:152.506667pt;}
.y1ab{bottom:159.226667pt;}
.yd9{bottom:166.266667pt;}
.y58{bottom:166.280000pt;}
.y1cd{bottom:166.746667pt;}
.ya7{bottom:167.386667pt;}
.y35{bottom:168.026667pt;}
.y3b{bottom:168.826667pt;}
.y97{bottom:169.786667pt;}
.y186{bottom:170.426667pt;}
.y1aa{bottom:176.826667pt;}
.y141{bottom:180.506667pt;}
.y96{bottom:181.466667pt;}
.y57{bottom:182.120000pt;}
.y185{bottom:182.746667pt;}
.yd8{bottom:183.866667pt;}
.y1cc{bottom:184.346667pt;}
.ya6{bottom:184.986667pt;}
.y34{bottom:185.626667pt;}
.y3a{bottom:186.426667pt;}
.y125{bottom:190.906667pt;}
.y56{bottom:193.960000pt;}
.y1a9{bottom:194.426667pt;}
.y184{bottom:195.066667pt;}
.y140{bottom:197.946667pt;}
.y95{bottom:199.066667pt;}
.yd7{bottom:201.466667pt;}
.y55{bottom:201.800000pt;}
.y39{bottom:202.266667pt;}
.ya5{bottom:202.586667pt;}
.y1cb{bottom:202.746667pt;}
.y33{bottom:203.226667pt;}
.y183{bottom:205.640000pt;}
.y124{bottom:208.506667pt;}
.y1a8{bottom:212.026667pt;}
.y13f{bottom:215.546667pt;}
.y94{bottom:216.666667pt;}
.y54{bottom:217.640000pt;}
.yd6{bottom:219.066667pt;}
.ya4{bottom:220.186667pt;}
.y32{bottom:220.826667pt;}
.y123{bottom:226.106667pt;}
.y1a7{bottom:229.626667pt;}
.y182{bottom:230.760000pt;}
.y13e{bottom:233.146667pt;}
.y53{bottom:233.480000pt;}
.y93{bottom:234.266667pt;}
.yd5{bottom:236.666667pt;}
.ya3{bottom:237.786667pt;}
.yfc{bottom:238.426667pt;}
.y31{bottom:238.586667pt;}
.y1ca{bottom:239.066667pt;}
.y122{bottom:243.706667pt;}
.y1a6{bottom:247.386667pt;}
.y52{bottom:249.480000pt;}
.y13d{bottom:250.906667pt;}
.y92{bottom:252.026667pt;}
.yd4{bottom:254.426667pt;}
.ya2{bottom:255.546667pt;}
.y181{bottom:256.040000pt;}
.y30{bottom:256.186667pt;}
.y1c9{bottom:256.826667pt;}
.y121{bottom:261.466667pt;}
.y1a5{bottom:264.986667pt;}
.y51{bottom:265.320000pt;}
.y13c{bottom:268.506667pt;}
.y91{bottom:269.626667pt;}
.yd3{bottom:272.026667pt;}
.ya1{bottom:273.146667pt;}
.y2f{bottom:273.786667pt;}
.y1c8{bottom:274.426667pt;}
.y120{bottom:279.066667pt;}
.y50{bottom:281.160000pt;}
.y1a4{bottom:282.586667pt;}
.y13b{bottom:286.106667pt;}
.y90{bottom:287.226667pt;}
.yd2{bottom:289.626667pt;}
.ya0{bottom:290.746667pt;}
.y2e{bottom:291.386667pt;}
.y1c7{bottom:292.026667pt;}
.y17d{bottom:293.480000pt;}
.y11f{bottom:296.666667pt;}
.y1a3{bottom:300.186667pt;}
.y13a{bottom:303.706667pt;}
.y8f{bottom:304.826667pt;}
.yd1{bottom:307.226667pt;}
.y9f{bottom:308.346667pt;}
.y2d{bottom:308.986667pt;}
.y1c6{bottom:309.626667pt;}
.y11e{bottom:314.266667pt;}
.y1a2{bottom:317.786667pt;}
.y139{bottom:321.306667pt;}
.y8e{bottom:322.426667pt;}
.yd0{bottom:324.826667pt;}
.y9e{bottom:325.946667pt;}
.yfb{bottom:326.586667pt;}
.y2c{bottom:326.746667pt;}
.y1c5{bottom:327.226667pt;}
.y179{bottom:330.920000pt;}
.y11d{bottom:331.866667pt;}
.y1a1{bottom:335.386667pt;}
.y138{bottom:339.066667pt;}
.y8d{bottom:340.186667pt;}
.ycf{bottom:342.586667pt;}
.y9d{bottom:343.706667pt;}
.y2b{bottom:344.346667pt;}
.y1c4{bottom:344.986667pt;}
.y11c{bottom:349.666667pt;}
.y1a0{bottom:353.186667pt;}
.y177{bottom:356.066667pt;}
.y137{bottom:356.706667pt;}
.y216{bottom:358.306667pt;}
.y8c{bottom:358.946667pt;}
.yce{bottom:360.226667pt;}
.y9c{bottom:361.346667pt;}
.y2a{bottom:361.986667pt;}
.y1c3{bottom:362.626667pt;}
.y11b{bottom:367.266667pt;}
.y19f{bottom:370.786667pt;}
.y136{bottom:374.306667pt;}
.ycd{bottom:377.826667pt;}
.y29{bottom:379.586667pt;}
.y8b{bottom:379.746667pt;}
.y1c2{bottom:381.026667pt;}
.y11a{bottom:384.866667pt;}
.y19e{bottom:388.386667pt;}
.y215{bottom:389.026667pt;}
.y135{bottom:391.906667pt;}
.y176{bottom:393.666667pt;}
.y1f2{bottom:394.786667pt;}
.ycc{bottom:395.426667pt;}
.y28{bottom:397.186667pt;}
.y8a{bottom:399.586667pt;}
.y119{bottom:402.466667pt;}
.y214{bottom:404.386667pt;}
.y19d{bottom:405.986667pt;}
.y134{bottom:409.506667pt;}
.y1f1{bottom:410.146667pt;}
.y89{bottom:412.706667pt;}
.ycb{bottom:413.026667pt;}
.yfa{bottom:414.786667pt;}
.y27{bottom:415.746667pt;}
.y1c1{bottom:417.346667pt;}
.y213{bottom:419.746667pt;}
.y118{bottom:420.066667pt;}
.y19c{bottom:423.586667pt;}
.y1f0{bottom:425.506667pt;}
.y133{bottom:427.266667pt;}
.yca{bottom:430.786667pt;}
.y26{bottom:431.106667pt;}
.yf9{bottom:432.546667pt;}
.y212{bottom:434.946667pt;}
.y1c0{bottom:435.906667pt;}
.y117{bottom:437.826667pt;}
.y25{bottom:438.626667pt;}
.y71{bottom:439.253333pt;}
.y4f{bottom:440.693333pt;}
.y1ef{bottom:440.866667pt;}
.y19b{bottom:441.346667pt;}
.y132{bottom:444.866667pt;}
.yc9{bottom:449.506667pt;}
.yf8{bottom:450.146667pt;}
.y211{bottom:450.306667pt;}
.y116{bottom:455.426667pt;}
.y1ee{bottom:456.066667pt;}
.y174{bottom:456.226667pt;}
.y19a{bottom:458.946667pt;}
.y131{bottom:462.466667pt;}
.y210{bottom:465.666667pt;}
.yc8{bottom:466.786667pt;}
.yf7{bottom:467.746667pt;}
.y24{bottom:469.346667pt;}
.y1ed{bottom:471.426667pt;}
.y1bf{bottom:472.226667pt;}
.y115{bottom:473.026667pt;}
.y199{bottom:476.546667pt;}
.yc7{bottom:479.106667pt;}
.y130{bottom:480.066667pt;}
.y20f{bottom:481.026667pt;}
.yf6{bottom:485.346667pt;}
.y1ec{bottom:486.786667pt;}
.y1be{bottom:489.826667pt;}
.y23{bottom:490.146667pt;}
.y114{bottom:490.626667pt;}
.y173{bottom:493.666667pt;}
.y198{bottom:494.146667pt;}
.y20e{bottom:496.386667pt;}
.y12f{bottom:497.666667pt;}
.yc6{bottom:499.426667pt;}
.y1eb{bottom:502.146667pt;}
.yf5{bottom:502.946667pt;}
.y1bd{bottom:507.426667pt;}
.y113{bottom:508.226667pt;}
.y197{bottom:511.746667pt;}
.y12e{bottom:515.426667pt;}
.yc5{bottom:517.186667pt;}
.y1ea{bottom:517.506667pt;}
.y64{bottom:517.973333pt;}
.y171{bottom:518.946667pt;}
.yf4{bottom:520.706667pt;}
.y1bc{bottom:524.546667pt;}
.y112{bottom:525.986667pt;}
.y20d{bottom:526.946667pt;}
.y196{bottom:529.506667pt;}
.y1e9{bottom:532.706667pt;}
.y12d{bottom:533.026667pt;}
.yc4{bottom:534.786667pt;}
.yf3{bottom:538.306667pt;}
.y22{bottom:538.786667pt;}
.y20c{bottom:542.306667pt;}
.y111{bottom:543.586667pt;}
.y16f{bottom:544.066667pt;}
.y195{bottom:547.106667pt;}
.y1e8{bottom:548.066667pt;}
.y12c{bottom:550.626667pt;}
.yc3{bottom:552.386667pt;}
.y21{bottom:552.706667pt;}
.yf2{bottom:555.933333pt;}
.y20b{bottom:557.693333pt;}
.y1bb{bottom:560.893333pt;}
.y110{bottom:561.213333pt;}
.y1e7{bottom:563.453333pt;}
.y194{bottom:564.733333pt;}
.y20{bottom:566.493333pt;}
.y12b{bottom:568.253333pt;}
.y16e{bottom:569.373333pt;}
.yc2{bottom:570.013333pt;}
.y20a{bottom:573.053333pt;}
.yf1{bottom:573.533333pt;}
.y1ba{bottom:578.653333pt;}
.y10f{bottom:578.813333pt;}
.y1f{bottom:580.253333pt;}
.y193{bottom:582.333333pt;}
.y12a{bottom:585.853333pt;}
.yc1{bottom:587.613333pt;}
.y16d{bottom:587.933333pt;}
.y209{bottom:588.413333pt;}
.yf0{bottom:591.133333pt;}
.y1e{bottom:594.013333pt;}
.y1e6{bottom:594.173333pt;}
.y1b9{bottom:596.253333pt;}
.y10e{bottom:596.413333pt;}
.y192{bottom:599.933333pt;}
.y129{bottom:603.613333pt;}
.y208{bottom:603.773333pt;}
.yc0{bottom:605.373333pt;}
.y16c{bottom:606.013333pt;}
.y15f{bottom:606.026667pt;}
.y1d{bottom:607.933333pt;}
.yef{bottom:608.893333pt;}
.y1e5{bottom:609.533333pt;}
.y1b8{bottom:613.853333pt;}
.y10d{bottom:614.173333pt;}
.y191{bottom:617.693333pt;}
.y16a{bottom:618.813333pt;}
.y207{bottom:618.973333pt;}
.y128{bottom:621.213333pt;}
.y1c{bottom:621.693333pt;}
.ybf{bottom:622.973333pt;}
.y1e4{bottom:624.733333pt;}
.yee{bottom:626.493333pt;}
.y1b7{bottom:631.453333pt;}
.y10c{bottom:632.573333pt;}
.y206{bottom:634.333333pt;}
.y169{bottom:634.493333pt;}
.y190{bottom:635.293333pt;}
.y1b{bottom:635.453333pt;}
.y127{bottom:638.813333pt;}
.y1e3{bottom:640.093333pt;}
.ybe{bottom:640.573333pt;}
.yed{bottom:644.093333pt;}
.y1a{bottom:645.373333pt;}
.y1b6{bottom:649.053333pt;}
.y205{bottom:649.693333pt;}
.y18f{bottom:652.893333pt;}
.y3f{bottom:653.053333pt;}
.y10b{bottom:653.693333pt;}
.y1e2{bottom:655.453333pt;}
.y126{bottom:656.413333pt;}
.y19{bottom:657.533333pt;}
.ybd{bottom:658.173333pt;}
.y168{bottom:659.613333pt;}
.yec{bottom:661.693333pt;}
.y204{bottom:665.053333pt;}
.y1b5{bottom:667.613333pt;}
.y18{bottom:669.053333pt;}
.y18e{bottom:670.493333pt;}
.y1e1{bottom:670.813333pt;}
.y10a{bottom:674.013333pt;}
.ybc{bottom:675.773333pt;}
.y164{bottom:677.053333pt;}
.yeb{bottom:679.293333pt;}
.y17{bottom:680.413333pt;}
.y1e0{bottom:686.173333pt;}
.y18d{bottom:688.093333pt;}
.y1b4{bottom:688.733333pt;}
.y109{bottom:691.773333pt;}
.y16{bottom:691.933333pt;}
.ybb{bottom:693.533333pt;}
.y203{bottom:695.613333pt;}
.yea{bottom:697.053333pt;}
.y1df{bottom:701.533333pt;}
.y163{bottom:702.346667pt;}
.y15{bottom:704.253333pt;}
.y18c{bottom:705.853333pt;}
.y108{bottom:709.373333pt;}
.y202{bottom:710.973333pt;}
.yba{bottom:712.253333pt;}
.ye9{bottom:714.653333pt;}
.y14{bottom:715.613333pt;}
.y1de{bottom:716.733333pt;}
.y158{bottom:719.613333pt;}
.y18b{bottom:723.453333pt;}
.y1b3{bottom:725.053333pt;}
.y201{bottom:726.333333pt;}
.y107{bottom:726.973333pt;}
.yb9{bottom:729.373333pt;}
.y1dd{bottom:732.093333pt;}
.ye8{bottom:732.253333pt;}
.y15d{bottom:737.706667pt;}
.y13{bottom:739.453333pt;}
.yb8{bottom:741.053333pt;}
.y200{bottom:741.693333pt;}
.y1b2{bottom:742.653333pt;}
.y106{bottom:744.573333pt;}
.y1dc{bottom:747.453333pt;}
.y12{bottom:749.373333pt;}
.ye7{bottom:749.853333pt;}
.y15b{bottom:755.133333pt;}
.y1ff{bottom:757.053333pt;}
.yb7{bottom:758.693333pt;}
.y1b1{bottom:760.293333pt;}
.y105{bottom:762.213333pt;}
.y1db{bottom:762.853333pt;}
.ye6{bottom:767.493333pt;}
.y11{bottom:771.013333pt;}
.y1fe{bottom:772.453333pt;}
.y15a{bottom:773.733333pt;}
.yb6{bottom:776.293333pt;}
.y1b0{bottom:778.053333pt;}
.y1da{bottom:778.213333pt;}
.y104{bottom:779.973333pt;}
.ye5{bottom:785.253333pt;}
.y1fd{bottom:787.653333pt;}
.y14d{bottom:790.533333pt;}
.y10{bottom:792.453333pt;}
.y1d9{bottom:793.413333pt;}
.yb5{bottom:794.053333pt;}
.y1af{bottom:796.453333pt;}
.y103{bottom:797.573333pt;}
.yf{bottom:801.573333pt;}
.ye4{bottom:802.853333pt;}
.y1fc{bottom:803.013333pt;}
.y155{bottom:803.493333pt;}
.y1d8{bottom:808.773333pt;}
.yb4{bottom:811.653333pt;}
.y102{bottom:815.173333pt;}
.y1fb{bottom:818.373333pt;}
.ye{bottom:818.853333pt;}
.ye3{bottom:820.453333pt;}
.y154{bottom:822.053333pt;}
.y1d7{bottom:824.133333pt;}
.yb3{bottom:829.253333pt;}
.yd{bottom:832.133333pt;}
.y101{bottom:832.773333pt;}
.y1fa{bottom:833.733333pt;}
.ye2{bottom:838.053333pt;}
.y152{bottom:839.493333pt;}
.yc{bottom:842.373333pt;}
.yb2{bottom:846.853333pt;}
.y1f9{bottom:849.093333pt;}
.y100{bottom:850.373333pt;}
.y1d6{bottom:854.853333pt;}
.ye1{bottom:855.653333pt;}
.y151{bottom:857.413333pt;}
.yb{bottom:857.893333pt;}
.yb1{bottom:864.453333pt;}
.yff{bottom:868.133333pt;}
.y1d5{bottom:870.213333pt;}
.ye0{bottom:873.413333pt;}
.y88{bottom:874.053333pt;}
.y14f{bottom:875.973333pt;}
.ya{bottom:877.093333pt;}
.y1f8{bottom:879.653333pt;}
.yb0{bottom:882.213333pt;}
.y87{bottom:885.733333pt;}
.y1d4{bottom:885.893333pt;}
.ydf{bottom:891.013333pt;}
.y148{bottom:892.773333pt;}
.y1f7{bottom:895.013333pt;}
.y9{bottom:896.613333pt;}
.yaf{bottom:899.813333pt;}
.y86{bottom:903.333333pt;}
.yde{bottom:909.413333pt;}
.y1f6{bottom:910.373333pt;}
.y14a{bottom:910.853333pt;}
.yae{bottom:917.413333pt;}
.y1d3{bottom:919.813333pt;}
.y85{bottom:920.933333pt;}
.y8{bottom:921.093333pt;}
.y1f5{bottom:925.733333pt;}
.ydd{bottom:926.853333pt;}
.y145{bottom:931.333333pt;}
.yad{bottom:935.013333pt;}
.y1d2{bottom:935.173333pt;}
.y84{bottom:938.533333pt;}
.y1f4{bottom:941.093333pt;}
.y7{bottom:945.093333pt;}
.y18a{bottom:953.413333pt;}
.yac{bottom:953.733333pt;}
.y83{bottom:956.133333pt;}
.y1f3{bottom:956.293333pt;}
.y144{bottom:957.413333pt;}
.y6f{bottom:974.400000pt;}
.y81{bottom:983.040000pt;}
.y80{bottom:998.400000pt;}
.y4c{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h16{height:5.160000pt;}
.h48{height:5.562500pt;}
.h2{height:12.000000pt;}
.h36{height:12.146667pt;}
.h3e{height:12.160000pt;}
.h1a{height:15.040000pt;}
.h32{height:16.146667pt;}
.h35{height:16.626667pt;}
.h3d{height:16.800000pt;}
.h34{height:17.266667pt;}
.h3f{height:17.280000pt;}
.h30{height:17.426667pt;}
.h39{height:17.440000pt;}
.h33{height:17.906667pt;}
.h40{height:17.920000pt;}
.h38{height:17.940000pt;}
.h2f{height:18.546667pt;}
.h2d{height:19.186667pt;}
.h21{height:19.680000pt;}
.h42{height:24.466667pt;}
.h3c{height:24.480000pt;}
.h45{height:24.498667pt;}
.h43{height:24.626667pt;}
.h41{height:24.666667pt;}
.h2a{height:26.368125pt;}
.hc{height:26.381250pt;}
.h28{height:27.090000pt;}
.hf{height:27.523125pt;}
.h2c{height:27.628404pt;}
.h4{height:30.400000pt;}
.h14{height:32.250000pt;}
.h13{height:35.114107pt;}
.h5{height:36.431250pt;}
.h2e{height:36.626667pt;}
.h44{height:36.786667pt;}
.h27{height:37.090625pt;}
.h20{height:37.410000pt;}
.h26{height:37.920930pt;}
.h46{height:38.153511pt;}
.h11{height:39.571875pt;}
.hb{height:40.103437pt;}
.h18{height:40.635000pt;}
.h12{height:41.442606pt;}
.hd{height:42.084375pt;}
.h1b{height:43.215000pt;}
.h15{height:47.109375pt;}
.h1c{height:48.375000pt;}
.h10{height:49.148438pt;}
.h1e{height:49.336436pt;}
.h17{height:51.360000pt;}
.h25{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2b{height:53.535000pt;}
.h47{height:54.598989pt;}
.ha{height:57.787500pt;}
.h19{height:58.563750pt;}
.he{height:60.288750pt;}
.h29{height:62.781250pt;}
.h9{height:64.500000pt;}
.h22{height:66.625000pt;}
.h24{height:66.750000pt;}
.h23{height:67.840000pt;}
.h37{height:70.260000pt;}
.h7{height:77.951250pt;}
.h8{height:85.785000pt;}
.h31{height:101.586667pt;}
.h3a{height:112.956000pt;}
.h3b{height:112.960000pt;}
.h1f{height:123.560000pt;}
.h1d{height:292.040000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w11{width:52.800000pt;}
.w14{width:54.106667pt;}
.w12{width:71.986667pt;}
.w13{width:72.018667pt;}
.w3{width:72.952000pt;}
.w17{width:106.906667pt;}
.w10{width:126.106667pt;}
.w5{width:137.306667pt;}
.wf{width:144.013333pt;}
.wd{width:155.693333pt;}
.w15{width:155.706667pt;}
.we{width:161.946667pt;}
.w8{width:162.093333pt;}
.wa{width:166.746667pt;}
.wb{width:317.658667pt;}
.wc{width:322.933333pt;}
.w7{width:473.706667pt;}
.w16{width:484.893333pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w9{width:660.600000pt;}
.w6{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:3.780000pt;}
.x2{left:7.192000pt;}
.x12{left:9.592000pt;}
.x3b{left:12.946667pt;}
.x30{left:14.400000pt;}
.x38{left:16.146667pt;}
.x2f{left:17.600000pt;}
.x18{left:18.893333pt;}
.x2c{left:20.160000pt;}
.x35{left:21.266667pt;}
.x39{left:22.400000pt;}
.x2e{left:24.000000pt;}
.x3c{left:25.120000pt;}
.x26{left:26.880000pt;}
.x2a{left:29.146667pt;}
.x28{left:31.186667pt;}
.x32{left:32.480000pt;}
.x2d{left:36.640000pt;}
.x31{left:39.040000pt;}
.x33{left:40.160000pt;}
.x24{left:41.586667pt;}
.x36{left:52.160000pt;}
.x3d{left:55.200000pt;}
.x3a{left:57.920000pt;}
.x23{left:64.320000pt;}
.x3{left:65.746667pt;}
.x34{left:69.600000pt;}
.x16{left:71.560000pt;}
.x13{left:72.680000pt;}
.x11{left:82.760000pt;}
.x15{left:84.840000pt;}
.x1{left:96.040000pt;}
.x1a{left:107.552000pt;}
.xb{left:111.232000pt;}
.x6{left:114.112000pt;}
.xe{left:117.952000pt;}
.x21{left:140.986667pt;}
.x7{left:148.666667pt;}
.x1b{left:150.426667pt;}
.x1c{left:153.786667pt;}
.x4{left:169.000000pt;}
.xd{left:189.466667pt;}
.x37{left:221.946667pt;}
.x9{left:240.706667pt;}
.x22{left:251.746667pt;}
.x17{left:253.946667pt;}
.x14{left:269.506667pt;}
.x1f{left:292.866667pt;}
.xc{left:361.986667pt;}
.x1d{left:392.253333pt;}
.x8{left:393.853333pt;}
.x5{left:396.893333pt;}
.xa{left:408.093333pt;}
.x20{left:413.706667pt;}
.xf{left:434.813333pt;}
.x10{left:436.253333pt;}
.x3e{left:440.573333pt;}
.x29{left:485.706667pt;}
.x19{left:551.336000pt;}
.x25{left:557.733333pt;}
.x2b{left:629.733333pt;}
.x27{left:683.840000pt;}
.x1e{left:736.160000pt;}
}




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