
    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_33456abcbdb2421a1a40c5a6.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_ade64a26bf3d7afc2b95612a.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_7c0d6ef66639022a2ed8ac70.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_5ea1094a88384ed75f209c04.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b0b15e2014e9299aee880581.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_2708fd9fd160649447b04223.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5669c40ea06607c2eabc4a63.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1fc800e0ce77c7b2792fe4b2.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a07afe1b1823860ac453566f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d512f9ab53b82259d681a572.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_63c005c3b04fee9b640d3fa4.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5cc66e1baa41cac16e039ef4.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ea7eafa94ec9426a21df98f2.woff')format("woff");}.fff{font-family:fff;line-height:0.932129;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:-77.760000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.460200px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.223800px;}
.lsd{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.181200px;}
.ls17{letter-spacing:-0.053280px;}
.ls8{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.108000px;}
.ls1b{letter-spacing:0.135600px;}
.ls5{letter-spacing:0.144720px;}
.ls2{letter-spacing:0.180000px;}
.lse{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.270720px;}
.ls1a{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.513600px;}
.lsc{letter-spacing:0.569400px;}
.ls16{letter-spacing:0.666000px;}
.ls10{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.978000px;}
.ls19{letter-spacing:1.620000px;}
.ls1d{letter-spacing:5.940000px;}
.ls3{letter-spacing:15.300000px;}
.ls4{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.ls1{letter-spacing:72.000000px;}
.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;}
}
.wsb{word-spacing:-18.000000px;}
.wsd{word-spacing:-15.840000px;}
.ws13{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.238800px;}
.ws15{word-spacing:-15.075600px;}
.ws12{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws11{word-spacing:-14.886720px;}
.ws2{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.479800px;}
.wsc{word-spacing:-13.860000px;}
.ws6{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.284000px;}
.ws4{word-spacing:-12.420000px;}
.wse{word-spacing:-11.878800px;}
.ws3{word-spacing:-11.700000px;}
.ws8{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws9{word-spacing:0.000000px;}
.ws0{word-spacing:60.840000px;}
._6{margin-left:-59.580000px;}
._2d{margin-left:-4.302720px;}
._16{margin-left:-3.167280px;}
._2{margin-left:-2.053440px;}
._3{margin-left:-1.035840px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._c{width:3.705120px;}
._f{width:4.780800px;}
._1b{width:5.976720px;}
._d{width:7.410240px;}
._a{width:9.382320px;}
._b{width:10.581120px;}
._15{width:11.935440px;}
._26{width:13.012560px;}
._1f{width:14.073120px;}
._1a{width:15.300000px;}
._12{width:17.123040px;}
._11{width:18.910560px;}
._9{width:20.531040px;}
._25{width:21.566880px;}
._8{width:22.589280px;}
._24{width:23.947440px;}
._17{width:25.191840px;}
._18{width:26.213520px;}
._e{width:27.244080px;}
._10{width:28.761120px;}
._19{width:30.411360px;}
._13{width:31.672800px;}
._14{width:33.198480px;}
._23{width:34.569360px;}
._2a{width:36.327600px;}
._27{width:37.350000px;}
._1c{width:39.212640px;}
._2e{width:40.268160px;}
._30{width:41.318640px;}
._29{width:42.489360px;}
._21{width:44.461440px;}
._22{width:46.166400px;}
._34{width:47.210400px;}
._28{width:49.692240px;}
._33{width:50.947200px;}
._3d{width:52.223760px;}
._2f{width:53.516880px;}
._36{width:56.451600px;}
._31{width:57.482640px;}
._39{width:58.662720px;}
._2b{width:60.192000px;}
._2c{width:61.308000px;}
._3b{width:62.346240px;}
._4{width:65.496000px;}
._3e{width:76.194000px;}
._1d{width:84.981600px;}
._1e{width:86.234400px;}
._37{width:93.046320px;}
._38{width:94.420800px;}
._35{width:114.619440px;}
._32{width:157.527360px;}
._5{width:199.620000px;}
._20{width:285.870000px;}
._3c{width:417.184560px;}
._3a{width:586.238880px;}
._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;}
.fsf{font-size:6.000000px;}
.fsd{font-size:18.000000px;}
.fsc{font-size:23.760000px;}
.fs6{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.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;}
.y6a{bottom:-251.670000px;}
.y69{bottom:-217.830000px;}
.y79{bottom:-196.230000px;}
.y68{bottom:-184.170000px;}
.y78{bottom:-162.390000px;}
.y67{bottom:-150.330000px;}
.y77{bottom:-128.730000px;}
.y66{bottom:-116.670000px;}
.y76{bottom:-94.890000px;}
.y65{bottom:-82.800000px;}
.y75{bottom:-61.185000px;}
.y64{bottom:-49.140000px;}
.y5d{bottom:-28.650000px;}
.y74{bottom:-27.525000px;}
.y3d{bottom:-19.620000px;}
.y7b{bottom:-17.922750px;}
.y63{bottom:-15.480000px;}
.y0{bottom:0.000000px;}
.y273{bottom:1.837500px;}
.y62{bottom:2.520000px;}
.y73{bottom:3.435000px;}
.y2{bottom:3.960000px;}
.yb9{bottom:4.665000px;}
.yb0{bottom:4.680000px;}
.yba{bottom:4.845000px;}
.yb1{bottom:4.860000px;}
.y103{bottom:4.890000px;}
.ybc{bottom:5.025000px;}
.yb3{bottom:5.040000px;}
.y5c{bottom:5.580000px;}
.yae{bottom:6.480000px;}
.yf8{bottom:9.900000px;}
.y7{bottom:12.420000px;}
.y3c{bottom:12.600000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.yf7{bottom:14.940000px;}
.y61{bottom:15.660000px;}
.y72{bottom:16.575000px;}
.y6{bottom:25.200000px;}
.y53{bottom:25.755000px;}
.y5a{bottom:28.125000px;}
.y60{bottom:28.620000px;}
.yfa{bottom:29.520000px;}
.y71{bottom:29.535000px;}
.y5{bottom:38.160000px;}
.y101{bottom:38.325000px;}
.y52{bottom:39.615000px;}
.y59{bottom:40.545000px;}
.y5f{bottom:41.040000px;}
.y70{bottom:42.675000px;}
.yff{bottom:45.345000px;}
.yd3{bottom:46.260000px;}
.y51{bottom:48.615000px;}
.y58{bottom:52.605000px;}
.y100{bottom:54.165000px;}
.y109{bottom:54.525000px;}
.y6f{bottom:55.635000px;}
.y7d{bottom:60.480000px;}
.y1{bottom:61.380000px;}
.yd2{bottom:62.640000px;}
.y7a{bottom:63.780000px;}
.y57{bottom:64.665000px;}
.y50{bottom:66.435000px;}
.y6e{bottom:68.595000px;}
.y56{bottom:76.725000px;}
.yd1{bottom:80.460000px;}
.y6d{bottom:81.735000px;}
.y4f{bottom:84.255000px;}
.y55{bottom:93.645000px;}
.y6c{bottom:93.975000px;}
.y4e{bottom:97.575000px;}
.y4d{bottom:106.395000px;}
.y205{bottom:107.100000px;}
.y1b7{bottom:107.280000px;}
.y1de{bottom:109.260000px;}
.y3a{bottom:111.420000px;}
.y1e8{bottom:113.220000px;}
.yd0{bottom:114.480000px;}
.y1a2{bottom:115.200000px;}
.y111{bottom:116.100000px;}
.y269{bottom:116.280000px;}
.yc7{bottom:116.460000px;}
.y226{bottom:117.180000px;}
.y112{bottom:118.800000px;}
.y171{bottom:121.140000px;}
.y4c{bottom:124.215000px;}
.y204{bottom:126.900000px;}
.y1b6{bottom:127.080000px;}
.y142{bottom:129.060000px;}
.y39{bottom:131.220000px;}
.y272{bottom:132.660000px;}
.y1e7{bottom:133.020000px;}
.ycf{bottom:134.280000px;}
.y1a1{bottom:135.000000px;}
.y268{bottom:136.080000px;}
.yc6{bottom:136.260000px;}
.y225{bottom:136.980000px;}
.y110{bottom:139.860000px;}
.y170{bottom:140.940000px;}
.y4b{bottom:142.035000px;}
.y203{bottom:146.700000px;}
.y1b5{bottom:146.880000px;}
.y141{bottom:148.860000px;}
.y38{bottom:151.200000px;}
.y240{bottom:152.460000px;}
.y1e6{bottom:152.820000px;}
.yce{bottom:154.260000px;}
.y1a0{bottom:154.800000px;}
.y267{bottom:155.880000px;}
.yc5{bottom:156.240000px;}
.y224{bottom:156.780000px;}
.y4a{bottom:160.065000px;}
.y16f{bottom:160.740000px;}
.y202{bottom:164.730000px;}
.y1b4{bottom:166.710000px;}
.y1dd{bottom:166.890000px;}
.y140{bottom:168.690000px;}
.y1e5{bottom:170.850000px;}
.y37{bottom:171.030000px;}
.y271{bottom:172.290000px;}
.y23f{bottom:172.470000px;}
.ycd{bottom:174.090000px;}
.y19f{bottom:174.630000px;}
.y266{bottom:175.710000px;}
.yc4{bottom:176.070000px;}
.y223{bottom:176.610000px;}
.y49{bottom:177.885000px;}
.y16e{bottom:180.570000px;}
.y1dc{bottom:182.550000px;}
.y1b3{bottom:186.510000px;}
.y13f{bottom:189.930000px;}
.y108{bottom:189.945000px;}
.y36{bottom:190.830000px;}
.y48{bottom:191.205000px;}
.y23e{bottom:192.270000px;}
.ycc{bottom:193.890000px;}
.y19e{bottom:194.610000px;}
.y265{bottom:195.690000px;}
.y222{bottom:196.590000px;}
.yc3{bottom:196.770000px;}
.y47{bottom:200.025000px;}
.y201{bottom:200.370000px;}
.y16d{bottom:200.550000px;}
.y1db{bottom:202.530000px;}
.y1b2{bottom:206.490000px;}
.y10f{bottom:206.685000px;}
.y35{bottom:210.630000px;}
.y23d{bottom:212.070000px;}
.ycb{bottom:213.690000px;}
.y19d{bottom:214.410000px;}
.y264{bottom:215.490000px;}
.yc2{bottom:216.390000px;}
.y46{bottom:217.845000px;}
.y200{bottom:220.170000px;}
.y16c{bottom:220.350000px;}
.y1da{bottom:222.330000px;}
.y10e{bottom:223.245000px;}
.y1b1{bottom:226.290000px;}
.yc1{bottom:229.530000px;}
.y34{bottom:230.430000px;}
.y23c{bottom:231.870000px;}
.y13e{bottom:233.130000px;}
.yca{bottom:233.490000px;}
.y19c{bottom:234.210000px;}
.y263{bottom:235.290000px;}
.y45{bottom:235.665000px;}
.y221{bottom:236.190000px;}
.y10d{bottom:239.805000px;}
.y1ff{bottom:239.970000px;}
.y16b{bottom:240.150000px;}
.y1d9{bottom:242.130000px;}
.y13d{bottom:246.090000px;}
.yc0{bottom:249.510000px;}
.y33{bottom:250.410000px;}
.y23b{bottom:251.670000px;}
.yc9{bottom:253.470000px;}
.y44{bottom:253.485000px;}
.y19b{bottom:254.010000px;}
.y262{bottom:255.090000px;}
.y220{bottom:255.990000px;}
.y10c{bottom:256.545000px;}
.y1fe{bottom:259.770000px;}
.y16a{bottom:259.950000px;}
.y1d8{bottom:261.930000px;}
.y13c{bottom:265.890000px;}
.y1e4{bottom:267.150000px;}
.y32{bottom:270.210000px;}
.y270{bottom:271.470000px;}
.y43{bottom:271.485000px;}
.y23a{bottom:271.650000px;}
.y10b{bottom:273.105000px;}
.yc8{bottom:273.270000px;}
.y19a{bottom:273.810000px;}
.y261{bottom:274.890000px;}
.y21f{bottom:275.790000px;}
.y169{bottom:279.750000px;}
.y1d7{bottom:281.730000px;}
.y42{bottom:284.805000px;}
.y13b{bottom:285.690000px;}
.y1e3{bottom:286.590000px;}
.y10a{bottom:289.665000px;}
.y31{bottom:290.010000px;}
.y239{bottom:291.450000px;}
.y41{bottom:293.625000px;}
.y199{bottom:293.790000px;}
.y260{bottom:294.870000px;}
.y21e{bottom:295.770000px;}
.y1fd{bottom:299.550000px;}
.y168{bottom:299.730000px;}
.y1d6{bottom:301.710000px;}
.y13a{bottom:305.670000px;}
.yfe{bottom:306.405000px;}
.y1b0{bottom:306.570000px;}
.y30{bottom:309.810000px;}
.y238{bottom:311.250000px;}
.y40{bottom:311.445000px;}
.ybf{bottom:312.885000px;}
.y198{bottom:313.590000px;}
.y25f{bottom:314.670000px;}
.y21d{bottom:315.570000px;}
.y1fc{bottom:319.350000px;}
.y167{bottom:319.530000px;}
.y1d5{bottom:321.510000px;}
.y107{bottom:322.965000px;}
.y139{bottom:325.470000px;}
.y3f{bottom:329.265000px;}
.y2f{bottom:329.610000px;}
.ybe{bottom:329.625000px;}
.y1af{bottom:330.330000px;}
.y237{bottom:331.050000px;}
.y197{bottom:333.390000px;}
.y25e{bottom:334.470000px;}
.y21c{bottom:335.370000px;}
.y1fb{bottom:339.150000px;}
.y166{bottom:339.330000px;}
.y106{bottom:339.525000px;}
.y1d4{bottom:341.310000px;}
.y138{bottom:345.270000px;}
.ybd{bottom:346.185000px;}
.y2e{bottom:349.590000px;}
.y1ae{bottom:350.130000px;}
.y236{bottom:350.850000px;}
.y25d{bottom:354.270000px;}
.y196{bottom:354.450000px;}
.y21b{bottom:355.170000px;}
.y105{bottom:356.265000px;}
.y1fa{bottom:358.950000px;}
.y165{bottom:359.130000px;}
.y1d3{bottom:361.110000px;}
.ybb{bottom:362.745000px;}
.y1ad{bottom:363.090000px;}
.y137{bottom:365.070000px;}
.y2d{bottom:369.390000px;}
.y26f{bottom:370.650000px;}
.y235{bottom:370.830000px;}
.y104{bottom:372.825000px;}
.y195{bottom:373.890000px;}
.y25c{bottom:374.070000px;}
.y21a{bottom:374.970000px;}
.y164{bottom:378.930000px;}
.yb8{bottom:379.485000px;}
.y1d2{bottom:380.910000px;}
.y1ac{bottom:382.890000px;}
.y136{bottom:386.130000px;}
.y194{bottom:386.850000px;}
.y26e{bottom:388.110000px;}
.y2c{bottom:389.190000px;}
.y102{bottom:389.385000px;}
.y234{bottom:390.630000px;}
.y25b{bottom:394.095000px;}
.y219{bottom:394.995000px;}
.yb7{bottom:396.075000px;}
.y1f9{bottom:398.775000px;}
.y163{bottom:398.955000px;}
.y1d1{bottom:400.935000px;}
.y1ab{bottom:402.915000px;}
.y26d{bottom:405.435000px;}
.yf9{bottom:406.155000px;}
.y193{bottom:406.875000px;}
.y2b{bottom:409.035000px;}
.y135{bottom:410.115000px;}
.y233{bottom:410.475000px;}
.yb6{bottom:412.635000px;}
.y25a{bottom:413.895000px;}
.y218{bottom:414.795000px;}
.y1f8{bottom:418.575000px;}
.y162{bottom:418.755000px;}
.y1d0{bottom:420.735000px;}
.yfd{bottom:422.715000px;}
.y192{bottom:426.675000px;}
.y2a{bottom:428.835000px;}
.yb5{bottom:429.375000px;}
.y134{bottom:429.555000px;}
.y232{bottom:430.275000px;}
.y259{bottom:433.695000px;}
.y217{bottom:434.595000px;}
.y1f7{bottom:438.375000px;}
.y161{bottom:438.555000px;}
.yfc{bottom:439.275000px;}
.y26c{bottom:439.995000px;}
.y1cf{bottom:441.795000px;}
.y133{bottom:442.515000px;}
.yb4{bottom:445.935000px;}
.y191{bottom:446.475000px;}
.y29{bottom:449.715000px;}
.y231{bottom:450.975000px;}
.y258{bottom:453.495000px;}
.y216{bottom:454.395000px;}
.yfb{bottom:456.015000px;}
.y26b{bottom:457.275000px;}
.y1f6{bottom:458.175000px;}
.y160{bottom:458.355000px;}
.y132{bottom:462.315000px;}
.yb2{bottom:462.495000px;}
.y3e{bottom:465.180000px;}
.y1ce{bottom:465.555000px;}
.y190{bottom:466.275000px;}
.y28{bottom:470.055000px;}
.y257{bottom:473.295000px;}
.yf6{bottom:474.015000px;}
.y215{bottom:474.195000px;}
.y26a{bottom:474.375000px;}
.y1e2{bottom:478.155000px;}
.yaf{bottom:479.235000px;}
.y15f{bottom:479.415000px;}
.y27{bottom:479.955000px;}
.y131{bottom:482.115000px;}
.y6b{bottom:482.640000px;}
.y1cd{bottom:484.995000px;}
.y18f{bottom:486.075000px;}
.y26{bottom:487.515000px;}
.y230{bottom:492.015000px;}
.y214{bottom:494.175000px;}
.yad{bottom:495.795000px;}
.y1f5{bottom:497.955000px;}
.y1cc{bottom:498.135000px;}
.y25{bottom:501.195000px;}
.y130{bottom:502.095000px;}
.y15e{bottom:503.355000px;}
.yf5{bottom:505.695000px;}
.y18e{bottom:506.055000px;}
.y24{bottom:510.015000px;}
.y22f{bottom:511.815000px;}
.y213{bottom:513.975000px;}
.y1f4{bottom:517.755000px;}
.y1cb{bottom:517.935000px;}
.yac{bottom:520.635000px;}
.y12f{bottom:521.895000px;}
.y15d{bottom:522.795000px;}
.yf4{bottom:524.055000px;}
.y18d{bottom:525.855000px;}
.y22e{bottom:531.615000px;}
.y23{bottom:533.235000px;}
.y212{bottom:533.775000px;}
.y256{bottom:535.035000px;}
.y15c{bottom:535.755000px;}
.y1f3{bottom:537.555000px;}
.y1ca{bottom:537.735000px;}
.yab{bottom:539.175000px;}
.y12e{bottom:541.695000px;}
.yf3{bottom:543.855000px;}
.y18c{bottom:545.655000px;}
.ye9{bottom:546.015000px;}
.y22d{bottom:551.415000px;}
.y211{bottom:553.575000px;}
.y255{bottom:554.835000px;}
.y15b{bottom:555.555000px;}
.y22{bottom:556.455000px;}
.y1f2{bottom:557.355000px;}
.y1c9{bottom:557.535000px;}
.yaa{bottom:558.975000px;}
.y97{bottom:559.875000px;}
.y12d{bottom:561.495000px;}
.yf2{bottom:563.835000px;}
.y18b{bottom:565.455000px;}
.ye8{bottom:565.815000px;}
.y22c{bottom:571.215000px;}
.y210{bottom:573.375000px;}
.y254{bottom:574.635000px;}
.y15a{bottom:575.355000px;}
.y1c8{bottom:577.335000px;}
.ya9{bottom:578.775000px;}
.y21{bottom:579.855000px;}
.y12c{bottom:581.295000px;}
.yf1{bottom:583.635000px;}
.y18a{bottom:585.255000px;}
.ye7{bottom:585.795000px;}
.y22b{bottom:591.195000px;}
.y20f{bottom:593.355000px;}
.y253{bottom:594.435000px;}
.y159{bottom:595.335000px;}
.y1f1{bottom:597.135000px;}
.y1c7{bottom:597.315000px;}
.ya8{bottom:598.575000px;}
.y96{bottom:599.655000px;}
.y12b{bottom:601.275000px;}
.y54{bottom:601.800000px;}
.yf0{bottom:603.435000px;}
.y189{bottom:605.235000px;}
.ye6{bottom:605.595000px;}
.y22a{bottom:610.995000px;}
.y20e{bottom:613.155000px;}
.y158{bottom:615.135000px;}
.y252{bottom:615.315000px;}
.y1f0{bottom:616.935000px;}
.y1c6{bottom:617.115000px;}
.ya7{bottom:618.375000px;}
.y95{bottom:619.455000px;}
.y12a{bottom:621.075000px;}
.yef{bottom:623.265000px;}
.y188{bottom:625.065000px;}
.ye5{bottom:625.425000px;}
.y229{bottom:630.825000px;}
.y20d{bottom:632.985000px;}
.y20{bottom:634.605000px;}
.y157{bottom:634.965000px;}
.y1ef{bottom:636.765000px;}
.y1c5{bottom:636.945000px;}
.ya6{bottom:638.385000px;}
.y94{bottom:639.285000px;}
.y1aa{bottom:640.905000px;}
.y129{bottom:642.165000px;}
.yee{bottom:643.065000px;}
.y187{bottom:644.865000px;}
.ye4{bottom:645.225000px;}
.y1f{bottom:650.265000px;}
.y228{bottom:650.625000px;}
.y20c{bottom:652.785000px;}
.y156{bottom:654.765000px;}
.y251{bottom:656.205000px;}
.y1ee{bottom:656.565000px;}
.y1c4{bottom:656.745000px;}
.y1e1{bottom:658.005000px;}
.ya5{bottom:658.185000px;}
.y93{bottom:659.085000px;}
.y1a9{bottom:660.705000px;}
.y128{bottom:661.605000px;}
.yed{bottom:663.045000px;}
.y186{bottom:664.665000px;}
.ye3{bottom:665.025000px;}
.y1e{bottom:665.745000px;}
.y227{bottom:671.505000px;}
.y20b{bottom:672.585000px;}
.y127{bottom:674.565000px;}
.y1c3{bottom:676.545000px;}
.y250{bottom:676.905000px;}
.ya4{bottom:677.985000px;}
.y92{bottom:679.065000px;}
.y1a8{bottom:680.505000px;}
.y1d{bottom:681.225000px;}
.y1e0{bottom:681.765000px;}
.yec{bottom:682.845000px;}
.y185{bottom:684.465000px;}
.ye2{bottom:685.005000px;}
.y20a{bottom:692.565000px;}
.y126{bottom:694.545000px;}
.y1ed{bottom:696.345000px;}
.y1c2{bottom:696.525000px;}
.y1c{bottom:696.705000px;}
.ya3{bottom:697.785000px;}
.y91{bottom:698.865000px;}
.y1df{bottom:701.385000px;}
.y1a7{bottom:701.745000px;}
.yeb{bottom:703.545000px;}
.ye1{bottom:704.805000px;}
.y184{bottom:705.705000px;}
.y1b{bottom:707.865000px;}
.y209{bottom:712.365000px;}
.y125{bottom:714.345000px;}
.y1ec{bottom:716.145000px;}
.y1c1{bottom:716.325000px;}
.ya2{bottom:717.585000px;}
.y24f{bottom:717.765000px;}
.y90{bottom:718.665000px;}
.y5e{bottom:719.745000px;}
.y1a{bottom:721.545000px;}
.ye0{bottom:724.605000px;}
.y183{bottom:725.145000px;}
.y1a6{bottom:725.505000px;}
.y208{bottom:732.165000px;}
.y19{bottom:734.145000px;}
.y155{bottom:735.045000px;}
.y1c0{bottom:736.125000px;}
.y1eb{bottom:736.845000px;}
.ya1{bottom:737.565000px;}
.y24e{bottom:737.745000px;}
.y182{bottom:738.105000px;}
.y8f{bottom:738.465000px;}
.ydf{bottom:744.405000px;}
.y1a5{bottom:744.945000px;}
.y18{bottom:746.565000px;}
.y207{bottom:751.965000px;}
.y124{bottom:753.945000px;}
.y1bf{bottom:757.185000px;}
.ya0{bottom:757.365000px;}
.y24d{bottom:757.545000px;}
.y181{bottom:757.905000px;}
.y8e{bottom:758.265000px;}
.y154{bottom:758.805000px;}
.y17{bottom:759.525000px;}
.yde{bottom:764.205000px;}
.y206{bottom:771.765000px;}
.y16{bottom:773.205000px;}
.y123{bottom:773.745000px;}
.y9f{bottom:777.165000px;}
.y24c{bottom:777.345000px;}
.y180{bottom:777.705000px;}
.y8d{bottom:778.245000px;}
.y153{bottom:778.605000px;}
.y1be{bottom:780.945000px;}
.ydd{bottom:784.185000px;}
.y15{bottom:786.165000px;}
.y152{bottom:791.745000px;}
.y122{bottom:793.725000px;}
.y9e{bottom:796.965000px;}
.y24b{bottom:797.145000px;}
.y17f{bottom:797.685000px;}
.y8c{bottom:798.045000px;}
.y1bd{bottom:800.565000px;}
.ydc{bottom:803.985000px;}
.y151{bottom:811.545000px;}
.y14{bottom:812.985000px;}
.y121{bottom:813.525000px;}
.y24a{bottom:816.945000px;}
.y17e{bottom:817.485000px;}
.y9d{bottom:817.665000px;}
.y8b{bottom:817.845000px;}
.ydb{bottom:823.785000px;}
.y150{bottom:831.345000px;}
.y120{bottom:833.325000px;}
.y249{bottom:836.925000px;}
.y17d{bottom:837.285000px;}
.y9c{bottom:837.465000px;}
.y8a{bottom:837.645000px;}
.y13{bottom:843.585000px;}
.y14f{bottom:851.145000px;}
.y9b{bottom:851.865000px;}
.y11f{bottom:853.170000px;}
.y17c{bottom:857.130000px;}
.y89{bottom:857.490000px;}
.y248{bottom:857.670000px;}
.y12{bottom:861.990000px;}
.yda{bottom:863.430000px;}
.y14e{bottom:870.990000px;}
.y11e{bottom:872.970000px;}
.y9a{bottom:874.410000px;}
.y11{bottom:875.850000px;}
.y17b{bottom:876.930000px;}
.y88{bottom:877.470000px;}
.yd9{bottom:883.410000px;}
.y10{bottom:889.530000px;}
.y14d{bottom:890.970000px;}
.y11d{bottom:892.950000px;}
.y99{bottom:895.110000px;}
.y17a{bottom:896.910000px;}
.y87{bottom:897.270000px;}
.y247{bottom:898.530000px;}
.yd8{bottom:903.210000px;}
.yf{bottom:903.390000px;}
.y14c{bottom:910.770000px;}
.y11c{bottom:912.750000px;}
.y98{bottom:915.990000px;}
.ye{bottom:916.530000px;}
.y179{bottom:916.710000px;}
.y86{bottom:917.070000px;}
.y246{bottom:919.230000px;}
.yd7{bottom:923.010000px;}
.y14b{bottom:930.570000px;}
.y11b{bottom:932.550000px;}
.y178{bottom:936.510000px;}
.y85{bottom:936.870000px;}
.yd{bottom:938.490000px;}
.yd6{bottom:942.810000px;}
.yea{bottom:943.710000px;}
.y14a{bottom:950.370000px;}
.y1bc{bottom:952.350000px;}
.y11a{bottom:953.610000px;}
.y177{bottom:956.310000px;}
.y84{bottom:956.670000px;}
.y1a4{bottom:957.570000px;}
.y245{bottom:960.090000px;}
.yc{bottom:961.710000px;}
.yd5{bottom:963.510000px;}
.y149{bottom:970.170000px;}
.y1bb{bottom:972.150000px;}
.y119{bottom:973.050000px;}
.y176{bottom:976.110000px;}
.y83{bottom:976.650000px;}
.y1a3{bottom:977.010000px;}
.y1ea{bottom:977.370000px;}
.y244{bottom:980.070000px;}
.yb{bottom:980.970000px;}
.yd4{bottom:983.490000px;}
.y118{bottom:986.010000px;}
.y148{bottom:990.150000px;}
.y1ba{bottom:993.390000px;}
.y175{bottom:996.090000px;}
.y82{bottom:996.450000px;}
.y1e9{bottom:996.990000px;}
.y243{bottom:1000.770000px;}
.y117{bottom:1005.990000px;}
.ya{bottom:1008.690000px;}
.y147{bottom:1009.950000px;}
.y174{bottom:1015.890000px;}
.y81{bottom:1016.250000px;}
.y1b9{bottom:1017.150000px;}
.y116{bottom:1025.790000px;}
.y146{bottom:1029.750000px;}
.y80{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y1b8{bottom:1036.590000px;}
.y173{bottom:1036.950000px;}
.y242{bottom:1041.630000px;}
.y115{bottom:1045.590000px;}
.y145{bottom:1049.550000px;}
.y7f{bottom:1055.850000px;}
.y172{bottom:1056.390000px;}
.y241{bottom:1062.330000px;}
.y8{bottom:1063.230000px;}
.y114{bottom:1065.390000px;}
.y144{bottom:1069.350000px;}
.y7e{bottom:1075.650000px;}
.y113{bottom:1086.120000px;}
.y143{bottom:1089.180000px;}
.y5b{bottom:1096.200000px;}
.y7c{bottom:1123.200000px;}
.y3b{bottom:1129.680000px;}
.h6{height:5.653125px;}
.h33{height:6.257812px;}
.h2{height:13.500000px;}
.h27{height:15.825000px;}
.h29{height:15.861000px;}
.h28{height:16.005000px;}
.h15{height:18.140625px;}
.h26{height:19.425000px;}
.h1e{height:22.140000px;}
.h14{height:23.319141px;}
.h18{height:24.480000px;}
.h2c{height:26.085000px;}
.h2a{height:29.664141px;}
.hb{height:29.678906px;}
.he{height:30.963516px;}
.h16{height:36.281250px;}
.h12{height:39.503370px;}
.h5{height:40.985156px;}
.h2b{height:41.535703px;}
.h1d{height:42.086250px;}
.h32{height:42.806602px;}
.h10{height:44.518359px;}
.h11{height:46.622932px;}
.hd{height:47.344922px;}
.h4{height:47.699850px;}
.hc{height:47.884219px;}
.h19{height:48.616875px;}
.h20{height:52.020000px;}
.h13{height:52.998047px;}
.h1a{height:54.421875px;}
.hf{height:55.291992px;}
.h30{height:58.621992px;}
.h3{height:58.651172px;}
.h9{height:60.226875px;}
.h31{height:61.423863px;}
.ha{height:65.010937px;}
.h2d{height:65.685000px;}
.h21{height:65.884219px;}
.h24{height:70.628906px;}
.h25{height:70.664062px;}
.h17{height:72.562500px;}
.h1f{height:74.953125px;}
.h23{height:75.093750px;}
.h7{height:86.585445px;}
.h8{height:96.508125px;}
.h2e{height:98.841000px;}
.h1c{height:101.745000px;}
.h22{height:104.940000px;}
.h2f{height:115.545000px;}
.h1b{height:341.505000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.wb{width:53.625000px;}
.we{width:67.485000px;}
.w10{width:80.631000px;}
.w3{width:82.071000px;}
.wc{width:108.021000px;}
.wd{width:135.036000px;}
.wf{width:141.870000px;}
.w9{width:154.470000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.w11{width:209.175000px;}
.w12{width:430.845000px;}
.w6{width:532.920000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:811.575000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:4.252500px;}
.x2{left:8.091000px;}
.x13{left:10.791000px;}
.x1f{left:16.185000px;}
.x39{left:18.345000px;}
.x19{left:21.255000px;}
.x23{left:23.745000px;}
.x2d{left:25.020000px;}
.x28{left:27.705000px;}
.x30{left:29.700000px;}
.x21{left:31.500000px;}
.x2b{left:32.760000px;}
.x37{left:38.865000px;}
.x2e{left:42.480000px;}
.x38{left:46.965000px;}
.x27{left:48.060000px;}
.x26{left:49.710000px;}
.x29{left:50.970000px;}
.x2f{left:52.050000px;}
.x2c{left:53.820000px;}
.x2a{left:60.480000px;}
.x34{left:71.490000px;}
.x3{left:73.965000px;}
.x12{left:81.405000px;}
.x18{left:93.105000px;}
.x15{left:94.545000px;}
.xa{left:99.756000px;}
.x6{left:101.376000px;}
.x1{left:108.045000px;}
.xf{left:132.696000px;}
.x1c{left:135.036000px;}
.x1d{left:162.030000px;}
.x1b{left:170.130000px;}
.x7{left:171.930000px;}
.x36{left:185.475000px;}
.x33{left:188.685000px;}
.x4{left:190.125000px;}
.xc{left:193.170000px;}
.xd{left:196.050000px;}
.xe{left:199.830000px;}
.x1e{left:215.325000px;}
.xb{left:300.315000px;}
.x14{left:302.835000px;}
.x16{left:310.350000px;}
.x20{left:323.355000px;}
.x8{left:328.575000px;}
.x17{left:371.580000px;}
.x35{left:397.875000px;}
.x5{left:446.505000px;}
.x9{left:452.265000px;}
.x22{left:458.400000px;}
.x10{left:489.165000px;}
.x11{left:490.785000px;}
.x24{left:525.900000px;}
.x1a{left:620.253000px;}
.x25{left:633.930000px;}
.x32{left:645.450000px;}
.x31{left:799.200000px;}
@media print{
.v3{vertical-align:-69.120000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.409067pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.198933pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.161067pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.096000pt;}
.ls1b{letter-spacing:0.120533pt;}
.ls5{letter-spacing:0.128640pt;}
.ls2{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.240640pt;}
.ls1a{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.456533pt;}
.lsc{letter-spacing:0.506133pt;}
.ls16{letter-spacing:0.592000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.869333pt;}
.ls19{letter-spacing:1.440000pt;}
.ls1d{letter-spacing:5.280000pt;}
.ls3{letter-spacing:13.600000pt;}
.ls4{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls1{letter-spacing:64.000000pt;}
.wsb{word-spacing:-16.000000pt;}
.wsd{word-spacing:-14.080000pt;}
.ws13{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.545600pt;}
.ws15{word-spacing:-13.400533pt;}
.ws12{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws11{word-spacing:-13.232640pt;}
.ws2{word-spacing:-13.096533pt;}
.ws10{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.870933pt;}
.wsc{word-spacing:-12.320000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.808000pt;}
.ws4{word-spacing:-11.040000pt;}
.wse{word-spacing:-10.558933pt;}
.ws3{word-spacing:-10.400000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws9{word-spacing:0.000000pt;}
.ws0{word-spacing:54.080000pt;}
._6{margin-left:-52.960000pt;}
._2d{margin-left:-3.824640pt;}
._16{margin-left:-2.815360pt;}
._2{margin-left:-1.825280pt;}
._3{margin-left:-0.920747pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._c{width:3.293440pt;}
._f{width:4.249600pt;}
._1b{width:5.312640pt;}
._d{width:6.586880pt;}
._a{width:8.339840pt;}
._b{width:9.405440pt;}
._15{width:10.609280pt;}
._26{width:11.566720pt;}
._1f{width:12.509440pt;}
._1a{width:13.600000pt;}
._12{width:15.220480pt;}
._11{width:16.809387pt;}
._9{width:18.249813pt;}
._25{width:19.170560pt;}
._8{width:20.079360pt;}
._24{width:21.286613pt;}
._17{width:22.392747pt;}
._18{width:23.300907pt;}
._e{width:24.216960pt;}
._10{width:25.565440pt;}
._19{width:27.032320pt;}
._13{width:28.153600pt;}
._14{width:29.509760pt;}
._23{width:30.728320pt;}
._2a{width:32.291200pt;}
._27{width:33.200000pt;}
._1c{width:34.855680pt;}
._2e{width:35.793920pt;}
._30{width:36.727680pt;}
._29{width:37.768320pt;}
._21{width:39.521280pt;}
._22{width:41.036800pt;}
._34{width:41.964800pt;}
._28{width:44.170880pt;}
._33{width:45.286400pt;}
._3d{width:46.421120pt;}
._2f{width:47.570560pt;}
._36{width:50.179200pt;}
._31{width:51.095680pt;}
._39{width:52.144640pt;}
._2b{width:53.504000pt;}
._2c{width:54.496000pt;}
._3b{width:55.418880pt;}
._4{width:58.218667pt;}
._3e{width:67.728000pt;}
._1d{width:75.539200pt;}
._1e{width:76.652800pt;}
._37{width:82.707840pt;}
._38{width:83.929600pt;}
._35{width:101.883947pt;}
._32{width:140.024320pt;}
._5{width:177.440000pt;}
._20{width:254.106667pt;}
._3c{width:370.830720pt;}
._3a{width:521.101227pt;}
._7{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fsf{font-size:5.333333pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs6{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.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;}
.y6a{bottom:-223.706667pt;}
.y69{bottom:-193.626667pt;}
.y79{bottom:-174.426667pt;}
.y68{bottom:-163.706667pt;}
.y78{bottom:-144.346667pt;}
.y67{bottom:-133.626667pt;}
.y77{bottom:-114.426667pt;}
.y66{bottom:-103.706667pt;}
.y76{bottom:-84.346667pt;}
.y65{bottom:-73.600000pt;}
.y75{bottom:-54.386667pt;}
.y64{bottom:-43.680000pt;}
.y5d{bottom:-25.466667pt;}
.y74{bottom:-24.466667pt;}
.y3d{bottom:-17.440000pt;}
.y7b{bottom:-15.931333pt;}
.y63{bottom:-13.760000pt;}
.y0{bottom:0.000000pt;}
.y273{bottom:1.633333pt;}
.y62{bottom:2.240000pt;}
.y73{bottom:3.053333pt;}
.y2{bottom:3.520000pt;}
.yb9{bottom:4.146667pt;}
.yb0{bottom:4.160000pt;}
.yba{bottom:4.306667pt;}
.yb1{bottom:4.320000pt;}
.y103{bottom:4.346667pt;}
.ybc{bottom:4.466667pt;}
.yb3{bottom:4.480000pt;}
.y5c{bottom:4.960000pt;}
.yae{bottom:5.760000pt;}
.yf8{bottom:8.800000pt;}
.y7{bottom:11.040000pt;}
.y3c{bottom:11.200000pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.yf7{bottom:13.280000pt;}
.y61{bottom:13.920000pt;}
.y72{bottom:14.733333pt;}
.y6{bottom:22.400000pt;}
.y53{bottom:22.893333pt;}
.y5a{bottom:25.000000pt;}
.y60{bottom:25.440000pt;}
.yfa{bottom:26.240000pt;}
.y71{bottom:26.253333pt;}
.y5{bottom:33.920000pt;}
.y101{bottom:34.066667pt;}
.y52{bottom:35.213333pt;}
.y59{bottom:36.040000pt;}
.y5f{bottom:36.480000pt;}
.y70{bottom:37.933333pt;}
.yff{bottom:40.306667pt;}
.yd3{bottom:41.120000pt;}
.y51{bottom:43.213333pt;}
.y58{bottom:46.760000pt;}
.y100{bottom:48.146667pt;}
.y109{bottom:48.466667pt;}
.y6f{bottom:49.453333pt;}
.y7d{bottom:53.760000pt;}
.y1{bottom:54.560000pt;}
.yd2{bottom:55.680000pt;}
.y7a{bottom:56.693333pt;}
.y57{bottom:57.480000pt;}
.y50{bottom:59.053333pt;}
.y6e{bottom:60.973333pt;}
.y56{bottom:68.200000pt;}
.yd1{bottom:71.520000pt;}
.y6d{bottom:72.653333pt;}
.y4f{bottom:74.893333pt;}
.y55{bottom:83.240000pt;}
.y6c{bottom:83.533333pt;}
.y4e{bottom:86.733333pt;}
.y4d{bottom:94.573333pt;}
.y205{bottom:95.200000pt;}
.y1b7{bottom:95.360000pt;}
.y1de{bottom:97.120000pt;}
.y3a{bottom:99.040000pt;}
.y1e8{bottom:100.640000pt;}
.yd0{bottom:101.760000pt;}
.y1a2{bottom:102.400000pt;}
.y111{bottom:103.200000pt;}
.y269{bottom:103.360000pt;}
.yc7{bottom:103.520000pt;}
.y226{bottom:104.160000pt;}
.y112{bottom:105.600000pt;}
.y171{bottom:107.680000pt;}
.y4c{bottom:110.413333pt;}
.y204{bottom:112.800000pt;}
.y1b6{bottom:112.960000pt;}
.y142{bottom:114.720000pt;}
.y39{bottom:116.640000pt;}
.y272{bottom:117.920000pt;}
.y1e7{bottom:118.240000pt;}
.ycf{bottom:119.360000pt;}
.y1a1{bottom:120.000000pt;}
.y268{bottom:120.960000pt;}
.yc6{bottom:121.120000pt;}
.y225{bottom:121.760000pt;}
.y110{bottom:124.320000pt;}
.y170{bottom:125.280000pt;}
.y4b{bottom:126.253333pt;}
.y203{bottom:130.400000pt;}
.y1b5{bottom:130.560000pt;}
.y141{bottom:132.320000pt;}
.y38{bottom:134.400000pt;}
.y240{bottom:135.520000pt;}
.y1e6{bottom:135.840000pt;}
.yce{bottom:137.120000pt;}
.y1a0{bottom:137.600000pt;}
.y267{bottom:138.560000pt;}
.yc5{bottom:138.880000pt;}
.y224{bottom:139.360000pt;}
.y4a{bottom:142.280000pt;}
.y16f{bottom:142.880000pt;}
.y202{bottom:146.426667pt;}
.y1b4{bottom:148.186667pt;}
.y1dd{bottom:148.346667pt;}
.y140{bottom:149.946667pt;}
.y1e5{bottom:151.866667pt;}
.y37{bottom:152.026667pt;}
.y271{bottom:153.146667pt;}
.y23f{bottom:153.306667pt;}
.ycd{bottom:154.746667pt;}
.y19f{bottom:155.226667pt;}
.y266{bottom:156.186667pt;}
.yc4{bottom:156.506667pt;}
.y223{bottom:156.986667pt;}
.y49{bottom:158.120000pt;}
.y16e{bottom:160.506667pt;}
.y1dc{bottom:162.266667pt;}
.y1b3{bottom:165.786667pt;}
.y13f{bottom:168.826667pt;}
.y108{bottom:168.840000pt;}
.y36{bottom:169.626667pt;}
.y48{bottom:169.960000pt;}
.y23e{bottom:170.906667pt;}
.ycc{bottom:172.346667pt;}
.y19e{bottom:172.986667pt;}
.y265{bottom:173.946667pt;}
.y222{bottom:174.746667pt;}
.yc3{bottom:174.906667pt;}
.y47{bottom:177.800000pt;}
.y201{bottom:178.106667pt;}
.y16d{bottom:178.266667pt;}
.y1db{bottom:180.026667pt;}
.y1b2{bottom:183.546667pt;}
.y10f{bottom:183.720000pt;}
.y35{bottom:187.226667pt;}
.y23d{bottom:188.506667pt;}
.ycb{bottom:189.946667pt;}
.y19d{bottom:190.586667pt;}
.y264{bottom:191.546667pt;}
.yc2{bottom:192.346667pt;}
.y46{bottom:193.640000pt;}
.y200{bottom:195.706667pt;}
.y16c{bottom:195.866667pt;}
.y1da{bottom:197.626667pt;}
.y10e{bottom:198.440000pt;}
.y1b1{bottom:201.146667pt;}
.yc1{bottom:204.026667pt;}
.y34{bottom:204.826667pt;}
.y23c{bottom:206.106667pt;}
.y13e{bottom:207.226667pt;}
.yca{bottom:207.546667pt;}
.y19c{bottom:208.186667pt;}
.y263{bottom:209.146667pt;}
.y45{bottom:209.480000pt;}
.y221{bottom:209.946667pt;}
.y10d{bottom:213.160000pt;}
.y1ff{bottom:213.306667pt;}
.y16b{bottom:213.466667pt;}
.y1d9{bottom:215.226667pt;}
.y13d{bottom:218.746667pt;}
.yc0{bottom:221.786667pt;}
.y33{bottom:222.586667pt;}
.y23b{bottom:223.706667pt;}
.yc9{bottom:225.306667pt;}
.y44{bottom:225.320000pt;}
.y19b{bottom:225.786667pt;}
.y262{bottom:226.746667pt;}
.y220{bottom:227.546667pt;}
.y10c{bottom:228.040000pt;}
.y1fe{bottom:230.906667pt;}
.y16a{bottom:231.066667pt;}
.y1d8{bottom:232.826667pt;}
.y13c{bottom:236.346667pt;}
.y1e4{bottom:237.466667pt;}
.y32{bottom:240.186667pt;}
.y270{bottom:241.306667pt;}
.y43{bottom:241.320000pt;}
.y23a{bottom:241.466667pt;}
.y10b{bottom:242.760000pt;}
.yc8{bottom:242.906667pt;}
.y19a{bottom:243.386667pt;}
.y261{bottom:244.346667pt;}
.y21f{bottom:245.146667pt;}
.y169{bottom:248.666667pt;}
.y1d7{bottom:250.426667pt;}
.y42{bottom:253.160000pt;}
.y13b{bottom:253.946667pt;}
.y1e3{bottom:254.746667pt;}
.y10a{bottom:257.480000pt;}
.y31{bottom:257.786667pt;}
.y239{bottom:259.066667pt;}
.y41{bottom:261.000000pt;}
.y199{bottom:261.146667pt;}
.y260{bottom:262.106667pt;}
.y21e{bottom:262.906667pt;}
.y1fd{bottom:266.266667pt;}
.y168{bottom:266.426667pt;}
.y1d6{bottom:268.186667pt;}
.y13a{bottom:271.706667pt;}
.yfe{bottom:272.360000pt;}
.y1b0{bottom:272.506667pt;}
.y30{bottom:275.386667pt;}
.y238{bottom:276.666667pt;}
.y40{bottom:276.840000pt;}
.ybf{bottom:278.120000pt;}
.y198{bottom:278.746667pt;}
.y25f{bottom:279.706667pt;}
.y21d{bottom:280.506667pt;}
.y1fc{bottom:283.866667pt;}
.y167{bottom:284.026667pt;}
.y1d5{bottom:285.786667pt;}
.y107{bottom:287.080000pt;}
.y139{bottom:289.306667pt;}
.y3f{bottom:292.680000pt;}
.y2f{bottom:292.986667pt;}
.ybe{bottom:293.000000pt;}
.y1af{bottom:293.626667pt;}
.y237{bottom:294.266667pt;}
.y197{bottom:296.346667pt;}
.y25e{bottom:297.306667pt;}
.y21c{bottom:298.106667pt;}
.y1fb{bottom:301.466667pt;}
.y166{bottom:301.626667pt;}
.y106{bottom:301.800000pt;}
.y1d4{bottom:303.386667pt;}
.y138{bottom:306.906667pt;}
.ybd{bottom:307.720000pt;}
.y2e{bottom:310.746667pt;}
.y1ae{bottom:311.226667pt;}
.y236{bottom:311.866667pt;}
.y25d{bottom:314.906667pt;}
.y196{bottom:315.066667pt;}
.y21b{bottom:315.706667pt;}
.y105{bottom:316.680000pt;}
.y1fa{bottom:319.066667pt;}
.y165{bottom:319.226667pt;}
.y1d3{bottom:320.986667pt;}
.ybb{bottom:322.440000pt;}
.y1ad{bottom:322.746667pt;}
.y137{bottom:324.506667pt;}
.y2d{bottom:328.346667pt;}
.y26f{bottom:329.466667pt;}
.y235{bottom:329.626667pt;}
.y104{bottom:331.400000pt;}
.y195{bottom:332.346667pt;}
.y25c{bottom:332.506667pt;}
.y21a{bottom:333.306667pt;}
.y164{bottom:336.826667pt;}
.yb8{bottom:337.320000pt;}
.y1d2{bottom:338.586667pt;}
.y1ac{bottom:340.346667pt;}
.y136{bottom:343.226667pt;}
.y194{bottom:343.866667pt;}
.y26e{bottom:344.986667pt;}
.y2c{bottom:345.946667pt;}
.y102{bottom:346.120000pt;}
.y234{bottom:347.226667pt;}
.y25b{bottom:350.306667pt;}
.y219{bottom:351.106667pt;}
.yb7{bottom:352.066667pt;}
.y1f9{bottom:354.466667pt;}
.y163{bottom:354.626667pt;}
.y1d1{bottom:356.386667pt;}
.y1ab{bottom:358.146667pt;}
.y26d{bottom:360.386667pt;}
.yf9{bottom:361.026667pt;}
.y193{bottom:361.666667pt;}
.y2b{bottom:363.586667pt;}
.y135{bottom:364.546667pt;}
.y233{bottom:364.866667pt;}
.yb6{bottom:366.786667pt;}
.y25a{bottom:367.906667pt;}
.y218{bottom:368.706667pt;}
.y1f8{bottom:372.066667pt;}
.y162{bottom:372.226667pt;}
.y1d0{bottom:373.986667pt;}
.yfd{bottom:375.746667pt;}
.y192{bottom:379.266667pt;}
.y2a{bottom:381.186667pt;}
.yb5{bottom:381.666667pt;}
.y134{bottom:381.826667pt;}
.y232{bottom:382.466667pt;}
.y259{bottom:385.506667pt;}
.y217{bottom:386.306667pt;}
.y1f7{bottom:389.666667pt;}
.y161{bottom:389.826667pt;}
.yfc{bottom:390.466667pt;}
.y26c{bottom:391.106667pt;}
.y1cf{bottom:392.706667pt;}
.y133{bottom:393.346667pt;}
.yb4{bottom:396.386667pt;}
.y191{bottom:396.866667pt;}
.y29{bottom:399.746667pt;}
.y231{bottom:400.866667pt;}
.y258{bottom:403.106667pt;}
.y216{bottom:403.906667pt;}
.yfb{bottom:405.346667pt;}
.y26b{bottom:406.466667pt;}
.y1f6{bottom:407.266667pt;}
.y160{bottom:407.426667pt;}
.y132{bottom:410.946667pt;}
.yb2{bottom:411.106667pt;}
.y3e{bottom:413.493333pt;}
.y1ce{bottom:413.826667pt;}
.y190{bottom:414.466667pt;}
.y28{bottom:417.826667pt;}
.y257{bottom:420.706667pt;}
.yf6{bottom:421.346667pt;}
.y215{bottom:421.506667pt;}
.y26a{bottom:421.666667pt;}
.y1e2{bottom:425.026667pt;}
.yaf{bottom:425.986667pt;}
.y15f{bottom:426.146667pt;}
.y27{bottom:426.626667pt;}
.y131{bottom:428.546667pt;}
.y6b{bottom:429.013333pt;}
.y1cd{bottom:431.106667pt;}
.y18f{bottom:432.066667pt;}
.y26{bottom:433.346667pt;}
.y230{bottom:437.346667pt;}
.y214{bottom:439.266667pt;}
.yad{bottom:440.706667pt;}
.y1f5{bottom:442.626667pt;}
.y1cc{bottom:442.786667pt;}
.y25{bottom:445.506667pt;}
.y130{bottom:446.306667pt;}
.y15e{bottom:447.426667pt;}
.yf5{bottom:449.506667pt;}
.y18e{bottom:449.826667pt;}
.y24{bottom:453.346667pt;}
.y22f{bottom:454.946667pt;}
.y213{bottom:456.866667pt;}
.y1f4{bottom:460.226667pt;}
.y1cb{bottom:460.386667pt;}
.yac{bottom:462.786667pt;}
.y12f{bottom:463.906667pt;}
.y15d{bottom:464.706667pt;}
.yf4{bottom:465.826667pt;}
.y18d{bottom:467.426667pt;}
.y22e{bottom:472.546667pt;}
.y23{bottom:473.986667pt;}
.y212{bottom:474.466667pt;}
.y256{bottom:475.586667pt;}
.y15c{bottom:476.226667pt;}
.y1f3{bottom:477.826667pt;}
.y1ca{bottom:477.986667pt;}
.yab{bottom:479.266667pt;}
.y12e{bottom:481.506667pt;}
.yf3{bottom:483.426667pt;}
.y18c{bottom:485.026667pt;}
.ye9{bottom:485.346667pt;}
.y22d{bottom:490.146667pt;}
.y211{bottom:492.066667pt;}
.y255{bottom:493.186667pt;}
.y15b{bottom:493.826667pt;}
.y22{bottom:494.626667pt;}
.y1f2{bottom:495.426667pt;}
.y1c9{bottom:495.586667pt;}
.yaa{bottom:496.866667pt;}
.y97{bottom:497.666667pt;}
.y12d{bottom:499.106667pt;}
.yf2{bottom:501.186667pt;}
.y18b{bottom:502.626667pt;}
.ye8{bottom:502.946667pt;}
.y22c{bottom:507.746667pt;}
.y210{bottom:509.666667pt;}
.y254{bottom:510.786667pt;}
.y15a{bottom:511.426667pt;}
.y1c8{bottom:513.186667pt;}
.ya9{bottom:514.466667pt;}
.y21{bottom:515.426667pt;}
.y12c{bottom:516.706667pt;}
.yf1{bottom:518.786667pt;}
.y18a{bottom:520.226667pt;}
.ye7{bottom:520.706667pt;}
.y22b{bottom:525.506667pt;}
.y20f{bottom:527.426667pt;}
.y253{bottom:528.386667pt;}
.y159{bottom:529.186667pt;}
.y1f1{bottom:530.786667pt;}
.y1c7{bottom:530.946667pt;}
.ya8{bottom:532.066667pt;}
.y96{bottom:533.026667pt;}
.y12b{bottom:534.466667pt;}
.y54{bottom:534.933333pt;}
.yf0{bottom:536.386667pt;}
.y189{bottom:537.986667pt;}
.ye6{bottom:538.306667pt;}
.y22a{bottom:543.106667pt;}
.y20e{bottom:545.026667pt;}
.y158{bottom:546.786667pt;}
.y252{bottom:546.946667pt;}
.y1f0{bottom:548.386667pt;}
.y1c6{bottom:548.546667pt;}
.ya7{bottom:549.666667pt;}
.y95{bottom:550.626667pt;}
.y12a{bottom:552.066667pt;}
.yef{bottom:554.013333pt;}
.y188{bottom:555.613333pt;}
.ye5{bottom:555.933333pt;}
.y229{bottom:560.733333pt;}
.y20d{bottom:562.653333pt;}
.y20{bottom:564.093333pt;}
.y157{bottom:564.413333pt;}
.y1ef{bottom:566.013333pt;}
.y1c5{bottom:566.173333pt;}
.ya6{bottom:567.453333pt;}
.y94{bottom:568.253333pt;}
.y1aa{bottom:569.693333pt;}
.y129{bottom:570.813333pt;}
.yee{bottom:571.613333pt;}
.y187{bottom:573.213333pt;}
.ye4{bottom:573.533333pt;}
.y1f{bottom:578.013333pt;}
.y228{bottom:578.333333pt;}
.y20c{bottom:580.253333pt;}
.y156{bottom:582.013333pt;}
.y251{bottom:583.293333pt;}
.y1ee{bottom:583.613333pt;}
.y1c4{bottom:583.773333pt;}
.y1e1{bottom:584.893333pt;}
.ya5{bottom:585.053333pt;}
.y93{bottom:585.853333pt;}
.y1a9{bottom:587.293333pt;}
.y128{bottom:588.093333pt;}
.yed{bottom:589.373333pt;}
.y186{bottom:590.813333pt;}
.ye3{bottom:591.133333pt;}
.y1e{bottom:591.773333pt;}
.y227{bottom:596.893333pt;}
.y20b{bottom:597.853333pt;}
.y127{bottom:599.613333pt;}
.y1c3{bottom:601.373333pt;}
.y250{bottom:601.693333pt;}
.ya4{bottom:602.653333pt;}
.y92{bottom:603.613333pt;}
.y1a8{bottom:604.893333pt;}
.y1d{bottom:605.533333pt;}
.y1e0{bottom:606.013333pt;}
.yec{bottom:606.973333pt;}
.y185{bottom:608.413333pt;}
.ye2{bottom:608.893333pt;}
.y20a{bottom:615.613333pt;}
.y126{bottom:617.373333pt;}
.y1ed{bottom:618.973333pt;}
.y1c2{bottom:619.133333pt;}
.y1c{bottom:619.293333pt;}
.ya3{bottom:620.253333pt;}
.y91{bottom:621.213333pt;}
.y1df{bottom:623.453333pt;}
.y1a7{bottom:623.773333pt;}
.yeb{bottom:625.373333pt;}
.ye1{bottom:626.493333pt;}
.y184{bottom:627.293333pt;}
.y1b{bottom:629.213333pt;}
.y209{bottom:633.213333pt;}
.y125{bottom:634.973333pt;}
.y1ec{bottom:636.573333pt;}
.y1c1{bottom:636.733333pt;}
.ya2{bottom:637.853333pt;}
.y24f{bottom:638.013333pt;}
.y90{bottom:638.813333pt;}
.y5e{bottom:639.773333pt;}
.y1a{bottom:641.373333pt;}
.ye0{bottom:644.093333pt;}
.y183{bottom:644.573333pt;}
.y1a6{bottom:644.893333pt;}
.y208{bottom:650.813333pt;}
.y19{bottom:652.573333pt;}
.y155{bottom:653.373333pt;}
.y1c0{bottom:654.333333pt;}
.y1eb{bottom:654.973333pt;}
.ya1{bottom:655.613333pt;}
.y24e{bottom:655.773333pt;}
.y182{bottom:656.093333pt;}
.y8f{bottom:656.413333pt;}
.ydf{bottom:661.693333pt;}
.y1a5{bottom:662.173333pt;}
.y18{bottom:663.613333pt;}
.y207{bottom:668.413333pt;}
.y124{bottom:670.173333pt;}
.y1bf{bottom:673.053333pt;}
.ya0{bottom:673.213333pt;}
.y24d{bottom:673.373333pt;}
.y181{bottom:673.693333pt;}
.y8e{bottom:674.013333pt;}
.y154{bottom:674.493333pt;}
.y17{bottom:675.133333pt;}
.yde{bottom:679.293333pt;}
.y206{bottom:686.013333pt;}
.y16{bottom:687.293333pt;}
.y123{bottom:687.773333pt;}
.y9f{bottom:690.813333pt;}
.y24c{bottom:690.973333pt;}
.y180{bottom:691.293333pt;}
.y8d{bottom:691.773333pt;}
.y153{bottom:692.093333pt;}
.y1be{bottom:694.173333pt;}
.ydd{bottom:697.053333pt;}
.y15{bottom:698.813333pt;}
.y152{bottom:703.773333pt;}
.y122{bottom:705.533333pt;}
.y9e{bottom:708.413333pt;}
.y24b{bottom:708.573333pt;}
.y17f{bottom:709.053333pt;}
.y8c{bottom:709.373333pt;}
.y1bd{bottom:711.613333pt;}
.ydc{bottom:714.653333pt;}
.y151{bottom:721.373333pt;}
.y14{bottom:722.653333pt;}
.y121{bottom:723.133333pt;}
.y24a{bottom:726.173333pt;}
.y17e{bottom:726.653333pt;}
.y9d{bottom:726.813333pt;}
.y8b{bottom:726.973333pt;}
.ydb{bottom:732.253333pt;}
.y150{bottom:738.973333pt;}
.y120{bottom:740.733333pt;}
.y249{bottom:743.933333pt;}
.y17d{bottom:744.253333pt;}
.y9c{bottom:744.413333pt;}
.y8a{bottom:744.573333pt;}
.y13{bottom:749.853333pt;}
.y14f{bottom:756.573333pt;}
.y9b{bottom:757.213333pt;}
.y11f{bottom:758.373333pt;}
.y17c{bottom:761.893333pt;}
.y89{bottom:762.213333pt;}
.y248{bottom:762.373333pt;}
.y12{bottom:766.213333pt;}
.yda{bottom:767.493333pt;}
.y14e{bottom:774.213333pt;}
.y11e{bottom:775.973333pt;}
.y9a{bottom:777.253333pt;}
.y11{bottom:778.533333pt;}
.y17b{bottom:779.493333pt;}
.y88{bottom:779.973333pt;}
.yd9{bottom:785.253333pt;}
.y10{bottom:790.693333pt;}
.y14d{bottom:791.973333pt;}
.y11d{bottom:793.733333pt;}
.y99{bottom:795.653333pt;}
.y17a{bottom:797.253333pt;}
.y87{bottom:797.573333pt;}
.y247{bottom:798.693333pt;}
.yd8{bottom:802.853333pt;}
.yf{bottom:803.013333pt;}
.y14c{bottom:809.573333pt;}
.y11c{bottom:811.333333pt;}
.y98{bottom:814.213333pt;}
.ye{bottom:814.693333pt;}
.y179{bottom:814.853333pt;}
.y86{bottom:815.173333pt;}
.y246{bottom:817.093333pt;}
.yd7{bottom:820.453333pt;}
.y14b{bottom:827.173333pt;}
.y11b{bottom:828.933333pt;}
.y178{bottom:832.453333pt;}
.y85{bottom:832.773333pt;}
.yd{bottom:834.213333pt;}
.yd6{bottom:838.053333pt;}
.yea{bottom:838.853333pt;}
.y14a{bottom:844.773333pt;}
.y1bc{bottom:846.533333pt;}
.y11a{bottom:847.653333pt;}
.y177{bottom:850.053333pt;}
.y84{bottom:850.373333pt;}
.y1a4{bottom:851.173333pt;}
.y245{bottom:853.413333pt;}
.yc{bottom:854.853333pt;}
.yd5{bottom:856.453333pt;}
.y149{bottom:862.373333pt;}
.y1bb{bottom:864.133333pt;}
.y119{bottom:864.933333pt;}
.y176{bottom:867.653333pt;}
.y83{bottom:868.133333pt;}
.y1a3{bottom:868.453333pt;}
.y1ea{bottom:868.773333pt;}
.y244{bottom:871.173333pt;}
.yb{bottom:871.973333pt;}
.yd4{bottom:874.213333pt;}
.y118{bottom:876.453333pt;}
.y148{bottom:880.133333pt;}
.y1ba{bottom:883.013333pt;}
.y175{bottom:885.413333pt;}
.y82{bottom:885.733333pt;}
.y1e9{bottom:886.213333pt;}
.y243{bottom:889.573333pt;}
.y117{bottom:894.213333pt;}
.ya{bottom:896.613333pt;}
.y147{bottom:897.733333pt;}
.y174{bottom:903.013333pt;}
.y81{bottom:903.333333pt;}
.y1b9{bottom:904.133333pt;}
.y116{bottom:911.813333pt;}
.y146{bottom:915.333333pt;}
.y80{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y1b8{bottom:921.413333pt;}
.y173{bottom:921.733333pt;}
.y242{bottom:925.893333pt;}
.y115{bottom:929.413333pt;}
.y145{bottom:932.933333pt;}
.y7f{bottom:938.533333pt;}
.y172{bottom:939.013333pt;}
.y241{bottom:944.293333pt;}
.y8{bottom:945.093333pt;}
.y114{bottom:947.013333pt;}
.y144{bottom:950.533333pt;}
.y7e{bottom:956.133333pt;}
.y113{bottom:965.440000pt;}
.y143{bottom:968.160000pt;}
.y5b{bottom:974.400000pt;}
.y7c{bottom:998.400000pt;}
.y3b{bottom:1004.160000pt;}
.h6{height:5.025000pt;}
.h33{height:5.562500pt;}
.h2{height:12.000000pt;}
.h27{height:14.066667pt;}
.h29{height:14.098667pt;}
.h28{height:14.226667pt;}
.h15{height:16.125000pt;}
.h26{height:17.266667pt;}
.h1e{height:19.680000pt;}
.h14{height:20.728125pt;}
.h18{height:21.760000pt;}
.h2c{height:23.186667pt;}
.h2a{height:26.368125pt;}
.hb{height:26.381250pt;}
.he{height:27.523125pt;}
.h16{height:32.250000pt;}
.h12{height:35.114107pt;}
.h5{height:36.431250pt;}
.h2b{height:36.920625pt;}
.h1d{height:37.410000pt;}
.h32{height:38.050313pt;}
.h10{height:39.571875pt;}
.h11{height:41.442606pt;}
.hd{height:42.084375pt;}
.h4{height:42.399867pt;}
.hc{height:42.563750pt;}
.h19{height:43.215000pt;}
.h20{height:46.240000pt;}
.h13{height:47.109375pt;}
.h1a{height:48.375000pt;}
.hf{height:49.148438pt;}
.h30{height:52.108438pt;}
.h3{height:52.134375pt;}
.h9{height:53.535000pt;}
.h31{height:54.598989pt;}
.ha{height:57.787500pt;}
.h2d{height:58.386667pt;}
.h21{height:58.563750pt;}
.h24{height:62.781250pt;}
.h25{height:62.812500pt;}
.h17{height:64.500000pt;}
.h1f{height:66.625000pt;}
.h23{height:66.750000pt;}
.h7{height:76.964840pt;}
.h8{height:85.785000pt;}
.h2e{height:87.858667pt;}
.h1c{height:90.440000pt;}
.h22{height:93.280000pt;}
.h2f{height:102.706667pt;}
.h1b{height:303.560000pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.wb{width:47.666667pt;}
.we{width:59.986667pt;}
.w10{width:71.672000pt;}
.w3{width:72.952000pt;}
.wc{width:96.018667pt;}
.wd{width:120.032000pt;}
.wf{width:126.106667pt;}
.w9{width:137.306667pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.w11{width:185.933333pt;}
.w12{width:382.973333pt;}
.w6{width:473.706667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:721.400000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:3.780000pt;}
.x2{left:7.192000pt;}
.x13{left:9.592000pt;}
.x1f{left:14.386667pt;}
.x39{left:16.306667pt;}
.x19{left:18.893333pt;}
.x23{left:21.106667pt;}
.x2d{left:22.240000pt;}
.x28{left:24.626667pt;}
.x30{left:26.400000pt;}
.x21{left:28.000000pt;}
.x2b{left:29.120000pt;}
.x37{left:34.546667pt;}
.x2e{left:37.760000pt;}
.x38{left:41.746667pt;}
.x27{left:42.720000pt;}
.x26{left:44.186667pt;}
.x29{left:45.306667pt;}
.x2f{left:46.266667pt;}
.x2c{left:47.840000pt;}
.x2a{left:53.760000pt;}
.x34{left:63.546667pt;}
.x3{left:65.746667pt;}
.x12{left:72.360000pt;}
.x18{left:82.760000pt;}
.x15{left:84.040000pt;}
.xa{left:88.672000pt;}
.x6{left:90.112000pt;}
.x1{left:96.040000pt;}
.xf{left:117.952000pt;}
.x1c{left:120.032000pt;}
.x1d{left:144.026667pt;}
.x1b{left:151.226667pt;}
.x7{left:152.826667pt;}
.x36{left:164.866667pt;}
.x33{left:167.720000pt;}
.x4{left:169.000000pt;}
.xc{left:171.706667pt;}
.xd{left:174.266667pt;}
.xe{left:177.626667pt;}
.x1e{left:191.400000pt;}
.xb{left:266.946667pt;}
.x14{left:269.186667pt;}
.x16{left:275.866667pt;}
.x20{left:287.426667pt;}
.x8{left:292.066667pt;}
.x17{left:330.293333pt;}
.x35{left:353.666667pt;}
.x5{left:396.893333pt;}
.x9{left:402.013333pt;}
.x22{left:407.466667pt;}
.x10{left:434.813333pt;}
.x11{left:436.253333pt;}
.x24{left:467.466667pt;}
.x1a{left:551.336000pt;}
.x25{left:563.493333pt;}
.x32{left:573.733333pt;}
.x31{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; }
  