
    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_f29451c64405b7ef7a470b96.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_7bf66ea9f0a90c539440fa51.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_6451779c30247d549b0d4f4a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b4ba11d16d100eb2b904d052.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b0b15e2014e9299aee880581.woff')format("woff");}.ff5{font-family:ff5;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_27da9f2e67a2759efb17f5d9.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_ae669b770aba46ce96a8d200.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_a07afe1b1823860ac453566f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.737793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_12e0b294b667f918bd5a7908.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e466aa5966697a73a03e45cd.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ffc{font-family:ffc;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e0fee60f84aa67e8b2ac2455.woff')format("woff");}.ffd{font-family:ffd;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_63c005c3b04fee9b640d3fa4.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.fff{font-family:fff;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_7263215070b94c60ed29153d.woff')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9aa4482ad8eae87200c673c1.woff')format("woff");}.ff11{font-family:ff11;line-height:0.976562;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:ff12;src:url('chunks/assets/font_1210af3598b45952fc73dd55.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.223800px;}
.ls16{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.181200px;}
.ls9{letter-spacing:-0.150600px;}
.lsb{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.004320px;}
.ls14{letter-spacing:0.097800px;}
.ls13{letter-spacing:0.106560px;}
.ls15{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.108000px;}
.lse{letter-spacing:0.129600px;}
.ls2{letter-spacing:0.144720px;}
.ls4{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.270720px;}
.ls18{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls1c{letter-spacing:0.540000px;}
.ls10{letter-spacing:1.080000px;}
.ls1d{letter-spacing:2.340000px;}
.ls1a{letter-spacing:11.700000px;}
.ls19{letter-spacing:28.980000px;}
.ls1b{letter-spacing:36.180000px;}
.ls1e{letter-spacing:44.100000px;}
.ls1{letter-spacing:47.700000px;}
.lsd{letter-spacing:58.589280px;}
.ls0{letter-spacing:72.000000px;}
.lsf{letter-spacing:72.269280px;}
.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;}
}
.ws7{word-spacing:-41.760000px;}
.wsd{word-spacing:-18.000000px;}
.wsa{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.020000px;}
.ws12{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.238800px;}
.ws16{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.046800px;}
.wse{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.733600px;}
.ws17{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.500000px;}
.wsb{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.060000px;}
.ws10{word-spacing:-11.878800px;}
.ws2{word-spacing:-11.700000px;}
.ws6{word-spacing:-10.440000px;}
.wsf{word-spacing:-9.724320px;}
.ws5{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
.ws0{word-spacing:60.960000px;}
._5{margin-left:-59.580000px;}
._2b{margin-left:-4.185600px;}
._d{margin-left:-2.988000px;}
._2{margin-left:-1.258560px;}
._0{width:1.044000px;}
._1{width:2.184960px;}
._e{width:3.195120px;}
._a{width:4.362480px;}
._13{width:5.390640px;}
._7{width:6.394320px;}
._8{width:7.410240px;}
._14{width:8.556480px;}
._9{width:9.561600px;}
._1f{width:10.757520px;}
._17{width:12.004560px;}
._c{width:13.565520px;}
._18{width:14.580000px;}
._15{width:15.876000px;}
._16{width:16.881120px;}
._21{width:17.922960px;}
._12{width:19.162080px;}
._10{width:20.676960px;}
._11{width:21.752640px;}
._b{width:23.186880px;}
._23{width:24.593040px;}
._22{width:25.935840px;}
._2d{width:27.342000px;}
._f{width:28.804320px;}
._20{width:30.225840px;}
._1e{width:31.987920px;}
._1c{width:33.107040px;}
._2c{width:34.274160px;}
._2e{width:35.796240px;}
._37{width:37.440000px;}
._29{width:38.815920px;}
._2a{width:40.447920px;}
._26{width:41.951520px;}
._25{width:43.102080px;}
._1d{width:44.341920px;}
._2f{width:45.656640px;}
._24{width:47.568960px;}
._1b{width:49.003200px;}
._1a{width:50.437440px;}
._30{width:52.110720px;}
._33{width:53.843760px;}
._34{width:56.174400px;}
._39{width:60.687840px;}
._27{width:61.911360px;}
._31{width:64.242000px;}
._3{width:65.496000px;}
._32{width:67.170240px;}
._28{width:68.371920px;}
._3a{width:70.070400px;}
._38{width:89.879040px;}
._35{width:99.560160px;}
._36{width:100.575840px;}
._4{width:199.620000px;}
._3b{width:205.745760px;}
._19{width:285.870000px;}
._6{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;}
.fs11{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;}
.fs10{font-size:38.880000px;}
.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;}
.fsf{font-size:144.000000px;}
.y71{bottom:-251.490000px;}
.y70{bottom:-217.830000px;}
.y6f{bottom:-183.990000px;}
.y80{bottom:-168.150000px;}
.y6e{bottom:-150.330000px;}
.y7f{bottom:-134.310000px;}
.y6d{bottom:-116.490000px;}
.y7e{bottom:-100.650000px;}
.y6c{bottom:-82.800000px;}
.y7d{bottom:-66.810000px;}
.y6b{bottom:-48.960000px;}
.y7c{bottom:-33.105000px;}
.y64{bottom:-28.650000px;}
.y3a{bottom:-27.180000px;}
.y82{bottom:-17.922750px;}
.y6a{bottom:-15.300000px;}
.y0{bottom:0.000000px;}
.y7b{bottom:0.735000px;}
.y249{bottom:1.837500px;}
.y69{bottom:2.700000px;}
.y5a{bottom:3.045000px;}
.y2{bottom:3.960000px;}
.y16b{bottom:4.845000px;}
.yf2{bottom:4.860000px;}
.y187{bottom:4.875000px;}
.y169{bottom:4.890000px;}
.y14f{bottom:5.025000px;}
.y39{bottom:5.040000px;}
.y63{bottom:5.580000px;}
.y180{bottom:7.020000px;}
.y14a{bottom:8.100000px;}
.y61{bottom:8.295000px;}
.y17f{bottom:9.540000px;}
.y179{bottom:12.225000px;}
.y7{bottom:12.420000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.y68{bottom:15.660000px;}
.y148{bottom:16.020000px;}
.y59{bottom:18.525000px;}
.y17c{bottom:19.080000px;}
.y176{bottom:20.145000px;}
.yf1{bottom:20.880000px;}
.y186{bottom:20.895000px;}
.y60{bottom:20.925000px;}
.y191{bottom:21.960000px;}
.y170{bottom:22.845000px;}
.y149{bottom:23.940000px;}
.y195{bottom:24.840000px;}
.y6{bottom:25.200000px;}
.y197{bottom:25.740000px;}
.y18e{bottom:26.655000px;}
.y189{bottom:26.820000px;}
.y17a{bottom:27.000000px;}
.y178{bottom:28.065000px;}
.y67{bottom:28.800000px;}
.y7a{bottom:31.695000px;}
.y58{bottom:31.845000px;}
.y5f{bottom:32.985000px;}
.y182{bottom:34.560000px;}
.y17b{bottom:34.920000px;}
.y193{bottom:35.820000px;}
.y175{bottom:35.985000px;}
.yf0{bottom:37.440000px;}
.y18b{bottom:37.620000px;}
.y190{bottom:37.800000px;}
.y5{bottom:38.160000px;}
.y57{bottom:40.665000px;}
.y66{bottom:41.220000px;}
.y185{bottom:42.495000px;}
.y188{bottom:42.660000px;}
.y177{bottom:43.905000px;}
.y79{bottom:44.655000px;}
.y5e{bottom:45.045000px;}
.yd7{bottom:46.260000px;}
.y194{bottom:46.485000px;}
.y173{bottom:47.730000px;}
.y18c{bottom:48.240000px;}
.yef{bottom:53.460000px;}
.y18f{bottom:53.640000px;}
.y5d{bottom:57.285000px;}
.y78{bottom:57.615000px;}
.y56{bottom:58.485000px;}
.y84{bottom:60.480000px;}
.y1{bottom:61.380000px;}
.yd6{bottom:62.640000px;}
.y81{bottom:63.780000px;}
.y183{bottom:63.900000px;}
.y196{bottom:67.185000px;}
.y172{bottom:68.610000px;}
.yee{bottom:70.200000px;}
.y77{bottom:70.755000px;}
.y5c{bottom:74.205000px;}
.y55{bottom:76.305000px;}
.yd5{bottom:80.460000px;}
.y76{bottom:83.715000px;}
.yed{bottom:86.940000px;}
.y54{bottom:94.170000px;}
.y75{bottom:96.855000px;}
.y127{bottom:100.980000px;}
.y1d0{bottom:101.160000px;}
.y1eb{bottom:101.700000px;}
.y10d{bottom:102.960000px;}
.yec{bottom:103.680000px;}
.y53{bottom:107.490000px;}
.y74{bottom:109.815000px;}
.y248{bottom:111.060000px;}
.y1ba{bottom:113.940000px;}
.y52{bottom:116.490000px;}
.y37{bottom:118.080000px;}
.y171{bottom:119.700000px;}
.yeb{bottom:120.420000px;}
.y126{bottom:120.780000px;}
.y1cf{bottom:121.140000px;}
.y209{bottom:121.320000px;}
.y1ea{bottom:121.500000px;}
.y73{bottom:122.235000px;}
.y10c{bottom:122.760000px;}
.yb5{bottom:123.480000px;}
.yd3{bottom:126.360000px;}
.y1b9{bottom:127.080000px;}
.y221{bottom:130.860000px;}
.y51{bottom:134.310000px;}
.yea{bottom:136.980000px;}
.y36{bottom:137.880000px;}
.y125{bottom:140.580000px;}
.y1ce{bottom:140.940000px;}
.y208{bottom:141.120000px;}
.y1e9{bottom:141.300000px;}
.y10b{bottom:142.560000px;}
.yb4{bottom:143.280000px;}
.y1b8{bottom:146.880000px;}
.y220{bottom:150.660000px;}
.y50{bottom:152.130000px;}
.ye9{bottom:153.000000px;}
.y35{bottom:157.680000px;}
.y124{bottom:160.380000px;}
.y1cd{bottom:160.740000px;}
.y207{bottom:161.100000px;}
.y1e8{bottom:162.390000px;}
.y10a{bottom:162.570000px;}
.yb3{bottom:163.110000px;}
.yd2{bottom:166.170000px;}
.y1b7{bottom:166.710000px;}
.ye8{bottom:169.740000px;}
.y4f{bottom:169.950000px;}
.y21f{bottom:170.490000px;}
.y34{bottom:177.510000px;}
.y123{bottom:180.390000px;}
.y174{bottom:180.405000px;}
.y1cc{bottom:180.570000px;}
.y206{bottom:180.930000px;}
.y1e7{bottom:181.830000px;}
.y109{bottom:182.370000px;}
.yb2{bottom:183.090000px;}
.yd1{bottom:185.970000px;}
.ye7{bottom:186.480000px;}
.y1b6{bottom:186.510000px;}
.y4e{bottom:187.770000px;}
.y247{bottom:190.290000px;}
.y21e{bottom:191.190000px;}
.y1e6{bottom:194.970000px;}
.y33{bottom:197.310000px;}
.y122{bottom:200.190000px;}
.y1cb{bottom:200.370000px;}
.y205{bottom:200.730000px;}
.y108{bottom:202.170000px;}
.yb1{bottom:202.890000px;}
.ye6{bottom:203.220000px;}
.y4d{bottom:205.590000px;}
.yd0{bottom:205.770000px;}
.y1b5{bottom:206.310000px;}
.y246{bottom:210.270000px;}
.y1e5{bottom:214.770000px;}
.y32{bottom:217.110000px;}
.ye5{bottom:219.825000px;}
.y121{bottom:219.990000px;}
.y1ca{bottom:220.350000px;}
.y204{bottom:220.530000px;}
.y107{bottom:221.970000px;}
.yb0{bottom:222.690000px;}
.y4c{bottom:223.590000px;}
.ycf{bottom:225.570000px;}
.y1b4{bottom:226.290000px;}
.y245{bottom:230.070000px;}
.y21d{bottom:232.230000px;}
.y1e4{bottom:234.570000px;}
.ye4{bottom:236.565000px;}
.y31{bottom:237.090000px;}
.y120{bottom:239.790000px;}
.y1c9{bottom:240.150000px;}
.y203{bottom:240.330000px;}
.y4b{bottom:241.410000px;}
.y106{bottom:241.770000px;}
.yaf{bottom:242.490000px;}
.y16f{bottom:244.665000px;}
.yce{bottom:245.550000px;}
.y1b3{bottom:246.090000px;}
.y244{bottom:249.870000px;}
.y21c{bottom:252.030000px;}
.ye3{bottom:252.585000px;}
.y1e3{bottom:254.370000px;}
.y4a{bottom:254.730000px;}
.y30{bottom:256.890000px;}
.y11f{bottom:259.590000px;}
.y1c8{bottom:259.950000px;}
.y202{bottom:260.310000px;}
.y105{bottom:261.750000px;}
.yae{bottom:262.290000px;}
.y49{bottom:263.550000px;}
.ycd{bottom:265.350000px;}
.y1b2{bottom:266.790000px;}
.ye2{bottom:269.325000px;}
.y243{bottom:269.670000px;}
.y21b{bottom:272.730000px;}
.y1e2{bottom:274.170000px;}
.y2f{bottom:277.590000px;}
.y11e{bottom:279.570000px;}
.y1c7{bottom:279.750000px;}
.y201{bottom:280.110000px;}
.y48{bottom:281.370000px;}
.yad{bottom:282.270000px;}
.y104{bottom:282.450000px;}
.ycc{bottom:285.150000px;}
.ye1{bottom:285.885000px;}
.y1b1{bottom:286.590000px;}
.y242{bottom:289.470000px;}
.y1e1{bottom:294.150000px;}
.y21a{bottom:296.490000px;}
.y47{bottom:299.190000px;}
.y11d{bottom:299.370000px;}
.y1b0{bottom:299.550000px;}
.y200{bottom:299.910000px;}
.y1c6{bottom:300.810000px;}
.y3b{bottom:301.545000px;}
.yac{bottom:302.070000px;}
.y103{bottom:302.250000px;}
.ydf{bottom:302.610000px;}
.y16e{bottom:304.410000px;}
.ycb{bottom:304.950000px;}
.y2e{bottom:307.830000px;}
.y241{bottom:309.450000px;}
.y1e0{bottom:313.950000px;}
.y102{bottom:315.210000px;}
.y46{bottom:317.190000px;}
.y11c{bottom:319.170000px;}
.y2d{bottom:319.350000px;}
.y1af{bottom:319.530000px;}
.y1ff{bottom:319.710000px;}
.y1c5{bottom:320.430000px;}
.yab{bottom:321.870000px;}
.y16d{bottom:322.950000px;}
.yca{bottom:324.750000px;}
.y240{bottom:329.250000px;}
.y1c4{bottom:333.390000px;}
.y1df{bottom:333.750000px;}
.y101{bottom:335.010000px;}
.y45{bottom:335.040000px;}
.y219{bottom:337.350000px;}
.y11b{bottom:338.970000px;}
.y1ae{bottom:339.330000px;}
.y1fe{bottom:339.510000px;}
.yaa{bottom:341.670000px;}
.y2c{bottom:343.110000px;}
.yc9{bottom:344.730000px;}
.y23f{bottom:349.050000px;}
.y44{bottom:352.860000px;}
.y1c3{bottom:353.190000px;}
.y1de{bottom:353.550000px;}
.y100{bottom:354.810000px;}
.y145{bottom:355.350000px;}
.y218{bottom:357.330000px;}
.y16c{bottom:358.605000px;}
.y11a{bottom:358.770000px;}
.y1ad{bottom:359.130000px;}
.y1fd{bottom:359.310000px;}
.ya9{bottom:361.470000px;}
.yc8{bottom:364.530000px;}
.y2b{bottom:366.870000px;}
.y23e{bottom:368.850000px;}
.y43{bottom:370.680000px;}
.y1c2{bottom:372.990000px;}
.y1dd{bottom:373.350000px;}
.yff{bottom:374.790000px;}
.y144{bottom:375.330000px;}
.y16a{bottom:375.345000px;}
.y217{bottom:377.130000px;}
.y119{bottom:378.750000px;}
.y1ac{bottom:378.930000px;}
.y1fc{bottom:379.290000px;}
.ya8{bottom:381.450000px;}
.yc7{bottom:384.330000px;}
.y2a{bottom:387.750000px;}
.y42{bottom:388.500000px;}
.y23d{bottom:388.650000px;}
.y168{bottom:391.905000px;}
.y1c1{bottom:392.835000px;}
.y1dc{bottom:393.375000px;}
.yfe{bottom:394.635000px;}
.y143{bottom:395.175000px;}
.y216{bottom:396.975000px;}
.y118{bottom:398.595000px;}
.y1ab{bottom:398.775000px;}
.y1fb{bottom:399.135000px;}
.ya7{bottom:401.295000px;}
.yc6{bottom:404.175000px;}
.y41{bottom:406.320000px;}
.y29{bottom:407.595000px;}
.y167{bottom:408.495000px;}
.y23c{bottom:408.675000px;}
.y1c0{bottom:412.815000px;}
.y1db{bottom:413.175000px;}
.yfd{bottom:414.435000px;}
.y142{bottom:414.975000px;}
.y215{bottom:416.775000px;}
.y117{bottom:418.395000px;}
.y1aa{bottom:418.755000px;}
.y1fa{bottom:418.935000px;}
.ya6{bottom:421.095000px;}
.y28{bottom:421.455000px;}
.yc5{bottom:423.975000px;}
.y40{bottom:424.320000px;}
.y166{bottom:425.235000px;}
.y23b{bottom:428.475000px;}
.y27{bottom:430.095000px;}
.y1bf{bottom:432.615000px;}
.y1da{bottom:432.975000px;}
.yfc{bottom:434.235000px;}
.y141{bottom:434.775000px;}
.y214{bottom:436.575000px;}
.y3f{bottom:437.640000px;}
.y116{bottom:438.195000px;}
.y1a9{bottom:438.555000px;}
.y1f9{bottom:438.735000px;}
.ya5{bottom:440.895000px;}
.y165{bottom:441.795000px;}
.yc4{bottom:443.955000px;}
.y72{bottom:444.480000px;}
.y3e{bottom:446.460000px;}
.y23a{bottom:448.275000px;}
.y1be{bottom:452.415000px;}
.y1d9{bottom:452.775000px;}
.y26{bottom:453.315000px;}
.yfb{bottom:454.035000px;}
.y140{bottom:454.575000px;}
.y213{bottom:456.555000px;}
.y115{bottom:457.995000px;}
.y164{bottom:458.355000px;}
.y1f8{bottom:458.535000px;}
.ya4{bottom:460.695000px;}
.yc3{bottom:463.755000px;}
.y3d{bottom:464.280000px;}
.y239{bottom:468.075000px;}
.y1bd{bottom:472.215000px;}
.y1d8{bottom:472.575000px;}
.yfa{bottom:474.015000px;}
.y13f{bottom:474.555000px;}
.y163{bottom:475.095000px;}
.y212{bottom:476.355000px;}
.y25{bottom:476.715000px;}
.y114{bottom:477.975000px;}
.y1a8{bottom:478.155000px;}
.y1f7{bottom:478.515000px;}
.ya3{bottom:480.675000px;}
.y3c{bottom:482.100000px;}
.yc2{bottom:483.555000px;}
.y238{bottom:487.875000px;}
.y162{bottom:491.655000px;}
.y1bc{bottom:492.015000px;}
.y1d7{bottom:492.555000px;}
.yf9{bottom:493.815000px;}
.y13e{bottom:494.355000px;}
.y211{bottom:496.155000px;}
.y113{bottom:497.775000px;}
.y1f6{bottom:498.315000px;}
.y1a7{bottom:499.215000px;}
.y24{bottom:499.935000px;}
.ya2{bottom:500.475000px;}
.yc1{bottom:503.355000px;}
.y237{bottom:507.855000px;}
.y161{bottom:508.215000px;}
.y1bb{bottom:511.995000px;}
.yf8{bottom:513.615000px;}
.y13d{bottom:514.155000px;}
.y210{bottom:515.955000px;}
.y112{bottom:517.575000px;}
.y1f5{bottom:518.115000px;}
.y1a6{bottom:518.835000px;}
.ya1{bottom:520.275000px;}
.y23{bottom:523.155000px;}
.yc0{bottom:524.055000px;}
.y160{bottom:524.955000px;}
.y236{bottom:527.655000px;}
.y1a5{bottom:531.795000px;}
.y1d6{bottom:533.055000px;}
.yf7{bottom:533.415000px;}
.y13c{bottom:533.955000px;}
.y20f{bottom:535.755000px;}
.y111{bottom:537.375000px;}
.y1f4{bottom:537.915000px;}
.ya0{bottom:540.075000px;}
.y15f{bottom:541.515000px;}
.ybf{bottom:543.675000px;}
.y1d5{bottom:546.015000px;}
.y22{bottom:546.555000px;}
.y235{bottom:547.455000px;}
.y1a4{bottom:551.595000px;}
.yf6{bottom:553.215000px;}
.y13b{bottom:553.755000px;}
.y20e{bottom:556.635000px;}
.ybe{bottom:556.995000px;}
.y110{bottom:557.175000px;}
.y1f3{bottom:557.715000px;}
.y15e{bottom:558.075000px;}
.y9f{bottom:559.875000px;}
.y1d4{bottom:565.815000px;}
.y234{bottom:567.255000px;}
.y21{bottom:569.775000px;}
.y13a{bottom:570.675000px;}
.y1a3{bottom:571.395000px;}
.yf5{bottom:573.195000px;}
.y15d{bottom:574.815000px;}
.ybd{bottom:576.795000px;}
.y10f{bottom:577.155000px;}
.y1f2{bottom:577.695000px;}
.y9e{bottom:579.855000px;}
.y139{bottom:583.635000px;}
.y1d3{bottom:585.795000px;}
.y233{bottom:587.055000px;}
.y1a2{bottom:591.195000px;}
.y15c{bottom:591.375000px;}
.yf4{bottom:593.895000px;}
.ybc{bottom:596.595000px;}
.y10e{bottom:596.955000px;}
.y1f1{bottom:597.495000px;}
.y9d{bottom:599.655000px;}
.y138{bottom:603.435000px;}
.y1d2{bottom:606.495000px;}
.y232{bottom:607.035000px;}
.y15b{bottom:607.935000px;}
.y1a1{bottom:611.175000px;}
.y5b{bottom:611.340000px;}
.ybb{bottom:616.395000px;}
.y1f0{bottom:617.295000px;}
.yf3{bottom:617.655000px;}
.y9c{bottom:619.455000px;}
.y137{bottom:623.265000px;}
.y20{bottom:624.705000px;}
.y1d1{bottom:626.325000px;}
.y231{bottom:626.865000px;}
.y1a0{bottom:631.005000px;}
.yba{bottom:636.225000px;}
.ye0{bottom:636.765000px;}
.yde{bottom:636.780000px;}
.y1ef{bottom:637.125000px;}
.y9b{bottom:639.285000px;}
.y1f{bottom:640.185000px;}
.y15a{bottom:641.265000px;}
.y136{bottom:643.065000px;}
.y230{bottom:646.665000px;}
.y19f{bottom:650.805000px;}
.y1e{bottom:655.665000px;}
.yb9{bottom:656.205000px;}
.y1ee{bottom:656.925000px;}
.y159{bottom:657.825000px;}
.y9a{bottom:659.085000px;}
.y135{bottom:663.945000px;}
.y22f{bottom:666.465000px;}
.y19e{bottom:670.605000px;}
.y1d{bottom:671.145000px;}
.y158{bottom:674.565000px;}
.yb8{bottom:676.005000px;}
.y1ed{bottom:676.905000px;}
.y99{bottom:679.065000px;}
.y134{bottom:683.565000px;}
.y1c{bottom:686.805000px;}
.y22e{bottom:687.165000px;}
.y19d{bottom:690.405000px;}
.y157{bottom:691.125000px;}
.yb7{bottom:696.705000px;}
.y1b{bottom:697.785000px;}
.y98{bottom:698.865000px;}
.y156{bottom:707.685000px;}
.y65{bottom:709.665000px;}
.y19c{bottom:710.385000px;}
.y1a{bottom:711.465000px;}
.y133{bottom:716.505000px;}
.yb6{bottom:717.585000px;}
.y97{bottom:718.665000px;}
.y19{bottom:724.065000px;}
.y155{bottom:724.425000px;}
.y22d{bottom:728.205000px;}
.y19b{bottom:730.185000px;}
.y132{bottom:736.305000px;}
.y18{bottom:736.485000px;}
.y96{bottom:738.465000px;}
.y154{bottom:740.985000px;}
.y22c{bottom:748.005000px;}
.y17{bottom:749.445000px;}
.y19a{bottom:749.985000px;}
.y131{bottom:756.105000px;}
.y153{bottom:757.545000px;}
.y95{bottom:758.265000px;}
.y16{bottom:763.305000px;}
.y22b{bottom:768.705000px;}
.y199{bottom:771.045000px;}
.y152{bottom:774.120000px;}
.y15{bottom:776.085000px;}
.y94{bottom:778.245000px;}
.y151{bottom:790.845000px;}
.y198{bottom:793.545000px;}
.y130{bottom:795.885000px;}
.y93{bottom:798.045000px;}
.y14{bottom:802.905000px;}
.y150{bottom:807.405000px;}
.y192{bottom:809.565000px;}
.y13{bottom:814.065000px;}
.y12f{bottom:815.685000px;}
.y92{bottom:817.845000px;}
.y14e{bottom:823.980000px;}
.y22a{bottom:829.365000px;}
.y12{bottom:833.685000px;}
.y12e{bottom:835.485000px;}
.y91{bottom:837.645000px;}
.y14d{bottom:840.705000px;}
.y229{bottom:850.245000px;}
.y12d{bottom:855.330000px;}
.y14c{bottom:857.310000px;}
.y90{bottom:857.490000px;}
.y11{bottom:861.450000px;}
.y14b{bottom:873.870000px;}
.y12c{bottom:875.310000px;}
.y8f{bottom:877.470000px;}
.y10{bottom:881.790000px;}
.y18d{bottom:888.255000px;}
.y18a{bottom:888.270000px;}
.y228{bottom:891.150000px;}
.y147{bottom:892.050000px;}
.y12b{bottom:895.110000px;}
.y8e{bottom:897.270000px;}
.yf{bottom:897.630000px;}
.y227{bottom:910.950000px;}
.ye{bottom:913.470000px;}
.y12a{bottom:914.910000px;}
.y1ec{bottom:915.810000px;}
.y8d{bottom:917.070000px;}
.yd{bottom:923.910000px;}
.y226{bottom:930.750000px;}
.y129{bottom:934.710000px;}
.y8c{bottom:936.870000px;}
.y146{bottom:938.310000px;}
.yc{bottom:945.870000px;}
.y225{bottom:950.550000px;}
.y20d{bottom:954.510000px;}
.y128{bottom:955.590000px;}
.y8b{bottom:956.670000px;}
.ydd{bottom:958.110000px;}
.y224{bottom:970.530000px;}
.y184{bottom:970.695000px;}
.y181{bottom:970.710000px;}
.yb{bottom:972.690000px;}
.y20c{bottom:974.490000px;}
.y8a{bottom:976.650000px;}
.y223{bottom:990.330000px;}
.ydc{bottom:992.490000px;}
.y20b{bottom:994.290000px;}
.y89{bottom:996.450000px;}
.ya{bottom:1004.550000px;}
.y222{bottom:1011.030000px;}
.ydb{bottom:1012.290000px;}
.y20a{bottom:1014.990000px;}
.y88{bottom:1016.250000px;}
.yda{bottom:1032.090000px;}
.y87{bottom:1036.050000px;}
.y9{bottom:1036.230000px;}
.y17e{bottom:1048.650000px;}
.yd9{bottom:1051.890000px;}
.y86{bottom:1055.850000px;}
.y8{bottom:1063.230000px;}
.yd8{bottom:1072.590000px;}
.y85{bottom:1075.650000px;}
.y17d{bottom:1077.090000px;}
.y62{bottom:1096.200000px;}
.yd4{bottom:1103.940000px;}
.y83{bottom:1123.200000px;}
.y38{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h46{height:6.257812px;}
.h2{height:13.500000px;}
.h32{height:15.825000px;}
.h34{height:15.840000px;}
.h36{height:15.861000px;}
.h33{height:15.862500px;}
.h35{height:15.870000px;}
.h31{height:16.005000px;}
.h16{height:16.920000px;}
.h15{height:18.140625px;}
.h3d{height:20.685000px;}
.h1e{height:22.140000px;}
.h14{height:23.319141px;}
.h23{height:29.158594px;}
.h28{height:29.664141px;}
.hb{height:29.678906px;}
.he{height:30.963516px;}
.h3b{height:33.683203px;}
.h1c{height:36.281250px;}
.h1a{height:37.705078px;}
.h30{height:38.325000px;}
.h12{height:39.503370px;}
.h5{height:40.985156px;}
.h2b{height:41.535703px;}
.h26{height:41.726953px;}
.h1d{height:42.086250px;}
.h10{height:44.518359px;}
.h45{height:45.461953px;}
.h11{height:46.622932px;}
.hc{height:47.344922px;}
.h4{height:47.699850px;}
.h17{height:48.616875px;}
.h2d{height:49.583118px;}
.h37{height:52.005000px;}
.h20{height:52.200000px;}
.h13{height:52.998047px;}
.h18{height:54.421875px;}
.hf{height:55.291992px;}
.h2a{height:58.621992px;}
.h3{height:58.651172px;}
.h2f{height:59.019609px;}
.h3c{height:59.976000px;}
.h25{height:60.226875px;}
.h3a{height:62.085000px;}
.ha{height:65.010937px;}
.h21{height:65.884219px;}
.h8{height:67.565039px;}
.h27{height:70.628906px;}
.hd{height:72.562500px;}
.h1f{height:74.953125px;}
.h24{height:75.093750px;}
.h3e{height:75.585000px;}
.h3f{height:75.591000px;}
.h40{height:75.600000px;}
.h44{height:77.962500px;}
.h41{height:81.525000px;}
.h42{height:81.531000px;}
.h43{height:81.540000px;}
.h1b{height:82.305000px;}
.h7{height:86.585445px;}
.h9{height:96.508125px;}
.h38{height:122.796000px;}
.h39{height:122.805000px;}
.h22{height:133.200000px;}
.h29{height:141.257812px;}
.h2e{height:313.575000px;}
.h2c{height:313.590000px;}
.h19{height:494.355000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.we{width:71.670000px;}
.wf{width:78.660000px;}
.w3{width:82.071000px;}
.wd{width:83.865000px;}
.w10{width:100.791000px;}
.w14{width:100.800000px;}
.wc{width:104.421000px;}
.w11{width:108.021000px;}
.w12{width:128.376000px;}
.w15{width:134.631000px;}
.w9{width:154.470000px;}
.w16{width:175.560000px;}
.w18{width:175.575000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.w13{width:384.720000px;}
.w17{width:405.060000px;}
.w19{width:405.075000px;}
.w6{width:532.920000px;}
.w4{width:639.855000px;}
.wb{width:720.675000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:747.135000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x39{left:4.252500px;}
.x2{left:8.091000px;}
.x11{left:10.791000px;}
.x2f{left:12.780000px;}
.x25{left:16.920000px;}
.x23{left:18.180000px;}
.x26{left:19.260000px;}
.x17{left:21.255000px;}
.x20{left:22.500000px;}
.x29{left:24.300000px;}
.x22{left:25.740000px;}
.x27{left:29.520000px;}
.x28{left:33.300000px;}
.x1d{left:35.091000px;}
.x2a{left:36.360000px;}
.x31{left:39.600000px;}
.x34{left:57.810000px;}
.x3{left:73.965000px;}
.x10{left:81.765000px;}
.x1e{left:89.085000px;}
.x16{left:93.105000px;}
.x13{left:94.185000px;}
.x1{left:108.045000px;}
.x19{left:111.456000px;}
.x6{left:115.596000px;}
.xe{left:132.696000px;}
.x1a{left:135.036000px;}
.x2e{left:136.830000px;}
.xc{left:140.796000px;}
.x7{left:142.236000px;}
.x30{left:145.290000px;}
.x32{left:147.630000px;}
.x36{left:172.830000px;}
.x37{left:175.365000px;}
.x4{left:190.125000px;}
.x38{left:202.530000px;}
.x2b{left:208.845000px;}
.xb{left:211.530000px;}
.x33{left:242.685000px;}
.x9{left:272.055000px;}
.x12{left:302.475000px;}
.x14{left:310.350000px;}
.x2c{left:316.875000px;}
.x15{left:371.580000px;}
.x8{left:414.285000px;}
.x35{left:418.260000px;}
.xd{left:427.785000px;}
.x2d{left:445.260000px;}
.x5{left:446.505000px;}
.xa{left:455.685000px;}
.xf{left:490.785000px;}
.x1f{left:595.230000px;}
.x18{left:620.253000px;}
.x1c{left:645.450000px;}
.x21{left:679.110000px;}
.x24{left:750.780000px;}
.x1b{left:799.200000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.198933pt;}
.ls16{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.161067pt;}
.ls9{letter-spacing:-0.133867pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.003840pt;}
.ls14{letter-spacing:0.086933pt;}
.ls13{letter-spacing:0.094720pt;}
.ls15{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.096000pt;}
.lse{letter-spacing:0.115200pt;}
.ls2{letter-spacing:0.128640pt;}
.ls4{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.240640pt;}
.ls18{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.960000pt;}
.ls1d{letter-spacing:2.080000pt;}
.ls1a{letter-spacing:10.400000pt;}
.ls19{letter-spacing:25.760000pt;}
.ls1b{letter-spacing:32.160000pt;}
.ls1e{letter-spacing:39.200000pt;}
.ls1{letter-spacing:42.400000pt;}
.lsd{letter-spacing:52.079360pt;}
.ls0{letter-spacing:64.000000pt;}
.lsf{letter-spacing:64.239360pt;}
.ws7{word-spacing:-37.120000pt;}
.wsd{word-spacing:-16.000000pt;}
.wsa{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.240000pt;}
.ws12{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.545600pt;}
.ws16{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.096533pt;}
.ws17{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.720000pt;}
.ws10{word-spacing:-10.558933pt;}
.ws2{word-spacing:-10.400000pt;}
.ws6{word-spacing:-9.280000pt;}
.wsf{word-spacing:-8.643840pt;}
.ws5{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
.ws0{word-spacing:54.186667pt;}
._5{margin-left:-52.960000pt;}
._2b{margin-left:-3.720533pt;}
._d{margin-left:-2.656000pt;}
._2{margin-left:-1.118720pt;}
._0{width:0.928000pt;}
._1{width:1.942187pt;}
._e{width:2.840107pt;}
._a{width:3.877760pt;}
._13{width:4.791680pt;}
._7{width:5.683840pt;}
._8{width:6.586880pt;}
._14{width:7.605760pt;}
._9{width:8.499200pt;}
._1f{width:9.562240pt;}
._17{width:10.670720pt;}
._c{width:12.058240pt;}
._18{width:12.960000pt;}
._15{width:14.112000pt;}
._16{width:15.005440pt;}
._21{width:15.931520pt;}
._12{width:17.032960pt;}
._10{width:18.379520pt;}
._11{width:19.335680pt;}
._b{width:20.610560pt;}
._23{width:21.860480pt;}
._22{width:23.054080pt;}
._2d{width:24.304000pt;}
._f{width:25.603840pt;}
._20{width:26.867413pt;}
._1e{width:28.433707pt;}
._1c{width:29.428480pt;}
._2c{width:30.465920pt;}
._2e{width:31.818880pt;}
._37{width:33.280000pt;}
._29{width:34.503040pt;}
._2a{width:35.953707pt;}
._26{width:37.290240pt;}
._25{width:38.312960pt;}
._1d{width:39.415040pt;}
._2f{width:40.583680pt;}
._24{width:42.283520pt;}
._1b{width:43.558400pt;}
._1a{width:44.833280pt;}
._30{width:46.320640pt;}
._33{width:47.861120pt;}
._34{width:49.932800pt;}
._39{width:53.944747pt;}
._27{width:55.032320pt;}
._31{width:57.104000pt;}
._3{width:58.218667pt;}
._32{width:59.706880pt;}
._28{width:60.775040pt;}
._3a{width:62.284800pt;}
._38{width:79.892480pt;}
._35{width:88.497920pt;}
._36{width:89.400747pt;}
._4{width:177.440000pt;}
._3b{width:182.885120pt;}
._19{width:254.106667pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs11{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;}
.fs10{font-size:34.560000pt;}
.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;}
.fsf{font-size:128.000000pt;}
.y71{bottom:-223.546667pt;}
.y70{bottom:-193.626667pt;}
.y6f{bottom:-163.546667pt;}
.y80{bottom:-149.466667pt;}
.y6e{bottom:-133.626667pt;}
.y7f{bottom:-119.386667pt;}
.y6d{bottom:-103.546667pt;}
.y7e{bottom:-89.466667pt;}
.y6c{bottom:-73.600000pt;}
.y7d{bottom:-59.386667pt;}
.y6b{bottom:-43.520000pt;}
.y7c{bottom:-29.426667pt;}
.y64{bottom:-25.466667pt;}
.y3a{bottom:-24.160000pt;}
.y82{bottom:-15.931333pt;}
.y6a{bottom:-13.600000pt;}
.y0{bottom:0.000000pt;}
.y7b{bottom:0.653333pt;}
.y249{bottom:1.633333pt;}
.y69{bottom:2.400000pt;}
.y5a{bottom:2.706667pt;}
.y2{bottom:3.520000pt;}
.y16b{bottom:4.306667pt;}
.yf2{bottom:4.320000pt;}
.y187{bottom:4.333333pt;}
.y169{bottom:4.346667pt;}
.y14f{bottom:4.466667pt;}
.y39{bottom:4.480000pt;}
.y63{bottom:4.960000pt;}
.y180{bottom:6.240000pt;}
.y14a{bottom:7.200000pt;}
.y61{bottom:7.373333pt;}
.y17f{bottom:8.480000pt;}
.y179{bottom:10.866667pt;}
.y7{bottom:11.040000pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.y68{bottom:13.920000pt;}
.y148{bottom:14.240000pt;}
.y59{bottom:16.466667pt;}
.y17c{bottom:16.960000pt;}
.y176{bottom:17.906667pt;}
.yf1{bottom:18.560000pt;}
.y186{bottom:18.573333pt;}
.y60{bottom:18.600000pt;}
.y191{bottom:19.520000pt;}
.y170{bottom:20.306667pt;}
.y149{bottom:21.280000pt;}
.y195{bottom:22.080000pt;}
.y6{bottom:22.400000pt;}
.y197{bottom:22.880000pt;}
.y18e{bottom:23.693333pt;}
.y189{bottom:23.840000pt;}
.y17a{bottom:24.000000pt;}
.y178{bottom:24.946667pt;}
.y67{bottom:25.600000pt;}
.y7a{bottom:28.173333pt;}
.y58{bottom:28.306667pt;}
.y5f{bottom:29.320000pt;}
.y182{bottom:30.720000pt;}
.y17b{bottom:31.040000pt;}
.y193{bottom:31.840000pt;}
.y175{bottom:31.986667pt;}
.yf0{bottom:33.280000pt;}
.y18b{bottom:33.440000pt;}
.y190{bottom:33.600000pt;}
.y5{bottom:33.920000pt;}
.y57{bottom:36.146667pt;}
.y66{bottom:36.640000pt;}
.y185{bottom:37.773333pt;}
.y188{bottom:37.920000pt;}
.y177{bottom:39.026667pt;}
.y79{bottom:39.693333pt;}
.y5e{bottom:40.040000pt;}
.yd7{bottom:41.120000pt;}
.y194{bottom:41.320000pt;}
.y173{bottom:42.426667pt;}
.y18c{bottom:42.880000pt;}
.yef{bottom:47.520000pt;}
.y18f{bottom:47.680000pt;}
.y5d{bottom:50.920000pt;}
.y78{bottom:51.213333pt;}
.y56{bottom:51.986667pt;}
.y84{bottom:53.760000pt;}
.y1{bottom:54.560000pt;}
.yd6{bottom:55.680000pt;}
.y81{bottom:56.693333pt;}
.y183{bottom:56.800000pt;}
.y196{bottom:59.720000pt;}
.y172{bottom:60.986667pt;}
.yee{bottom:62.400000pt;}
.y77{bottom:62.893333pt;}
.y5c{bottom:65.960000pt;}
.y55{bottom:67.826667pt;}
.yd5{bottom:71.520000pt;}
.y76{bottom:74.413333pt;}
.yed{bottom:77.280000pt;}
.y54{bottom:83.706667pt;}
.y75{bottom:86.093333pt;}
.y127{bottom:89.760000pt;}
.y1d0{bottom:89.920000pt;}
.y1eb{bottom:90.400000pt;}
.y10d{bottom:91.520000pt;}
.yec{bottom:92.160000pt;}
.y53{bottom:95.546667pt;}
.y74{bottom:97.613333pt;}
.y248{bottom:98.720000pt;}
.y1ba{bottom:101.280000pt;}
.y52{bottom:103.546667pt;}
.y37{bottom:104.960000pt;}
.y171{bottom:106.400000pt;}
.yeb{bottom:107.040000pt;}
.y126{bottom:107.360000pt;}
.y1cf{bottom:107.680000pt;}
.y209{bottom:107.840000pt;}
.y1ea{bottom:108.000000pt;}
.y73{bottom:108.653333pt;}
.y10c{bottom:109.120000pt;}
.yb5{bottom:109.760000pt;}
.yd3{bottom:112.320000pt;}
.y1b9{bottom:112.960000pt;}
.y221{bottom:116.320000pt;}
.y51{bottom:119.386667pt;}
.yea{bottom:121.760000pt;}
.y36{bottom:122.560000pt;}
.y125{bottom:124.960000pt;}
.y1ce{bottom:125.280000pt;}
.y208{bottom:125.440000pt;}
.y1e9{bottom:125.600000pt;}
.y10b{bottom:126.720000pt;}
.yb4{bottom:127.360000pt;}
.y1b8{bottom:130.560000pt;}
.y220{bottom:133.920000pt;}
.y50{bottom:135.226667pt;}
.ye9{bottom:136.000000pt;}
.y35{bottom:140.160000pt;}
.y124{bottom:142.560000pt;}
.y1cd{bottom:142.880000pt;}
.y207{bottom:143.200000pt;}
.y1e8{bottom:144.346667pt;}
.y10a{bottom:144.506667pt;}
.yb3{bottom:144.986667pt;}
.yd2{bottom:147.706667pt;}
.y1b7{bottom:148.186667pt;}
.ye8{bottom:150.880000pt;}
.y4f{bottom:151.066667pt;}
.y21f{bottom:151.546667pt;}
.y34{bottom:157.786667pt;}
.y123{bottom:160.346667pt;}
.y174{bottom:160.360000pt;}
.y1cc{bottom:160.506667pt;}
.y206{bottom:160.826667pt;}
.y1e7{bottom:161.626667pt;}
.y109{bottom:162.106667pt;}
.yb2{bottom:162.746667pt;}
.yd1{bottom:165.306667pt;}
.ye7{bottom:165.760000pt;}
.y1b6{bottom:165.786667pt;}
.y4e{bottom:166.906667pt;}
.y247{bottom:169.146667pt;}
.y21e{bottom:169.946667pt;}
.y1e6{bottom:173.306667pt;}
.y33{bottom:175.386667pt;}
.y122{bottom:177.946667pt;}
.y1cb{bottom:178.106667pt;}
.y205{bottom:178.426667pt;}
.y108{bottom:179.706667pt;}
.yb1{bottom:180.346667pt;}
.ye6{bottom:180.640000pt;}
.y4d{bottom:182.746667pt;}
.yd0{bottom:182.906667pt;}
.y1b5{bottom:183.386667pt;}
.y246{bottom:186.906667pt;}
.y1e5{bottom:190.906667pt;}
.y32{bottom:192.986667pt;}
.ye5{bottom:195.400000pt;}
.y121{bottom:195.546667pt;}
.y1ca{bottom:195.866667pt;}
.y204{bottom:196.026667pt;}
.y107{bottom:197.306667pt;}
.yb0{bottom:197.946667pt;}
.y4c{bottom:198.746667pt;}
.ycf{bottom:200.506667pt;}
.y1b4{bottom:201.146667pt;}
.y245{bottom:204.506667pt;}
.y21d{bottom:206.426667pt;}
.y1e4{bottom:208.506667pt;}
.ye4{bottom:210.280000pt;}
.y31{bottom:210.746667pt;}
.y120{bottom:213.146667pt;}
.y1c9{bottom:213.466667pt;}
.y203{bottom:213.626667pt;}
.y4b{bottom:214.586667pt;}
.y106{bottom:214.906667pt;}
.yaf{bottom:215.546667pt;}
.y16f{bottom:217.480000pt;}
.yce{bottom:218.266667pt;}
.y1b3{bottom:218.746667pt;}
.y244{bottom:222.106667pt;}
.y21c{bottom:224.026667pt;}
.ye3{bottom:224.520000pt;}
.y1e3{bottom:226.106667pt;}
.y4a{bottom:226.426667pt;}
.y30{bottom:228.346667pt;}
.y11f{bottom:230.746667pt;}
.y1c8{bottom:231.066667pt;}
.y202{bottom:231.386667pt;}
.y105{bottom:232.666667pt;}
.yae{bottom:233.146667pt;}
.y49{bottom:234.266667pt;}
.ycd{bottom:235.866667pt;}
.y1b2{bottom:237.146667pt;}
.ye2{bottom:239.400000pt;}
.y243{bottom:239.706667pt;}
.y21b{bottom:242.426667pt;}
.y1e2{bottom:243.706667pt;}
.y2f{bottom:246.746667pt;}
.y11e{bottom:248.506667pt;}
.y1c7{bottom:248.666667pt;}
.y201{bottom:248.986667pt;}
.y48{bottom:250.106667pt;}
.yad{bottom:250.906667pt;}
.y104{bottom:251.066667pt;}
.ycc{bottom:253.466667pt;}
.ye1{bottom:254.120000pt;}
.y1b1{bottom:254.746667pt;}
.y242{bottom:257.306667pt;}
.y1e1{bottom:261.466667pt;}
.y21a{bottom:263.546667pt;}
.y47{bottom:265.946667pt;}
.y11d{bottom:266.106667pt;}
.y1b0{bottom:266.266667pt;}
.y200{bottom:266.586667pt;}
.y1c6{bottom:267.386667pt;}
.y3b{bottom:268.040000pt;}
.yac{bottom:268.506667pt;}
.y103{bottom:268.666667pt;}
.ydf{bottom:268.986667pt;}
.y16e{bottom:270.586667pt;}
.ycb{bottom:271.066667pt;}
.y2e{bottom:273.626667pt;}
.y241{bottom:275.066667pt;}
.y1e0{bottom:279.066667pt;}
.y102{bottom:280.186667pt;}
.y46{bottom:281.946667pt;}
.y11c{bottom:283.706667pt;}
.y2d{bottom:283.866667pt;}
.y1af{bottom:284.026667pt;}
.y1ff{bottom:284.186667pt;}
.y1c5{bottom:284.826667pt;}
.yab{bottom:286.106667pt;}
.y16d{bottom:287.066667pt;}
.yca{bottom:288.666667pt;}
.y240{bottom:292.666667pt;}
.y1c4{bottom:296.346667pt;}
.y1df{bottom:296.666667pt;}
.y101{bottom:297.786667pt;}
.y45{bottom:297.813333pt;}
.y219{bottom:299.866667pt;}
.y11b{bottom:301.306667pt;}
.y1ae{bottom:301.626667pt;}
.y1fe{bottom:301.786667pt;}
.yaa{bottom:303.706667pt;}
.y2c{bottom:304.986667pt;}
.yc9{bottom:306.426667pt;}
.y23f{bottom:310.266667pt;}
.y44{bottom:313.653333pt;}
.y1c3{bottom:313.946667pt;}
.y1de{bottom:314.266667pt;}
.y100{bottom:315.386667pt;}
.y145{bottom:315.866667pt;}
.y218{bottom:317.626667pt;}
.y16c{bottom:318.760000pt;}
.y11a{bottom:318.906667pt;}
.y1ad{bottom:319.226667pt;}
.y1fd{bottom:319.386667pt;}
.ya9{bottom:321.306667pt;}
.yc8{bottom:324.026667pt;}
.y2b{bottom:326.106667pt;}
.y23e{bottom:327.866667pt;}
.y43{bottom:329.493333pt;}
.y1c2{bottom:331.546667pt;}
.y1dd{bottom:331.866667pt;}
.yff{bottom:333.146667pt;}
.y144{bottom:333.626667pt;}
.y16a{bottom:333.640000pt;}
.y217{bottom:335.226667pt;}
.y119{bottom:336.666667pt;}
.y1ac{bottom:336.826667pt;}
.y1fc{bottom:337.146667pt;}
.ya8{bottom:339.066667pt;}
.yc7{bottom:341.626667pt;}
.y2a{bottom:344.666667pt;}
.y42{bottom:345.333333pt;}
.y23d{bottom:345.466667pt;}
.y168{bottom:348.360000pt;}
.y1c1{bottom:349.186667pt;}
.y1dc{bottom:349.666667pt;}
.yfe{bottom:350.786667pt;}
.y143{bottom:351.266667pt;}
.y216{bottom:352.866667pt;}
.y118{bottom:354.306667pt;}
.y1ab{bottom:354.466667pt;}
.y1fb{bottom:354.786667pt;}
.ya7{bottom:356.706667pt;}
.yc6{bottom:359.266667pt;}
.y41{bottom:361.173333pt;}
.y29{bottom:362.306667pt;}
.y167{bottom:363.106667pt;}
.y23c{bottom:363.266667pt;}
.y1c0{bottom:366.946667pt;}
.y1db{bottom:367.266667pt;}
.yfd{bottom:368.386667pt;}
.y142{bottom:368.866667pt;}
.y215{bottom:370.466667pt;}
.y117{bottom:371.906667pt;}
.y1aa{bottom:372.226667pt;}
.y1fa{bottom:372.386667pt;}
.ya6{bottom:374.306667pt;}
.y28{bottom:374.626667pt;}
.yc5{bottom:376.866667pt;}
.y40{bottom:377.173333pt;}
.y166{bottom:377.986667pt;}
.y23b{bottom:380.866667pt;}
.y27{bottom:382.306667pt;}
.y1bf{bottom:384.546667pt;}
.y1da{bottom:384.866667pt;}
.yfc{bottom:385.986667pt;}
.y141{bottom:386.466667pt;}
.y214{bottom:388.066667pt;}
.y3f{bottom:389.013333pt;}
.y116{bottom:389.506667pt;}
.y1a9{bottom:389.826667pt;}
.y1f9{bottom:389.986667pt;}
.ya5{bottom:391.906667pt;}
.y165{bottom:392.706667pt;}
.yc4{bottom:394.626667pt;}
.y72{bottom:395.093333pt;}
.y3e{bottom:396.853333pt;}
.y23a{bottom:398.466667pt;}
.y1be{bottom:402.146667pt;}
.y1d9{bottom:402.466667pt;}
.y26{bottom:402.946667pt;}
.yfb{bottom:403.586667pt;}
.y140{bottom:404.066667pt;}
.y213{bottom:405.826667pt;}
.y115{bottom:407.106667pt;}
.y164{bottom:407.426667pt;}
.y1f8{bottom:407.586667pt;}
.ya4{bottom:409.506667pt;}
.yc3{bottom:412.226667pt;}
.y3d{bottom:412.693333pt;}
.y239{bottom:416.066667pt;}
.y1bd{bottom:419.746667pt;}
.y1d8{bottom:420.066667pt;}
.yfa{bottom:421.346667pt;}
.y13f{bottom:421.826667pt;}
.y163{bottom:422.306667pt;}
.y212{bottom:423.426667pt;}
.y25{bottom:423.746667pt;}
.y114{bottom:424.866667pt;}
.y1a8{bottom:425.026667pt;}
.y1f7{bottom:425.346667pt;}
.ya3{bottom:427.266667pt;}
.y3c{bottom:428.533333pt;}
.yc2{bottom:429.826667pt;}
.y238{bottom:433.666667pt;}
.y162{bottom:437.026667pt;}
.y1bc{bottom:437.346667pt;}
.y1d7{bottom:437.826667pt;}
.yf9{bottom:438.946667pt;}
.y13e{bottom:439.426667pt;}
.y211{bottom:441.026667pt;}
.y113{bottom:442.466667pt;}
.y1f6{bottom:442.946667pt;}
.y1a7{bottom:443.746667pt;}
.y24{bottom:444.386667pt;}
.ya2{bottom:444.866667pt;}
.yc1{bottom:447.426667pt;}
.y237{bottom:451.426667pt;}
.y161{bottom:451.746667pt;}
.y1bb{bottom:455.106667pt;}
.yf8{bottom:456.546667pt;}
.y13d{bottom:457.026667pt;}
.y210{bottom:458.626667pt;}
.y112{bottom:460.066667pt;}
.y1f5{bottom:460.546667pt;}
.y1a6{bottom:461.186667pt;}
.ya1{bottom:462.466667pt;}
.y23{bottom:465.026667pt;}
.yc0{bottom:465.826667pt;}
.y160{bottom:466.626667pt;}
.y236{bottom:469.026667pt;}
.y1a5{bottom:472.706667pt;}
.y1d6{bottom:473.826667pt;}
.yf7{bottom:474.146667pt;}
.y13c{bottom:474.626667pt;}
.y20f{bottom:476.226667pt;}
.y111{bottom:477.666667pt;}
.y1f4{bottom:478.146667pt;}
.ya0{bottom:480.066667pt;}
.y15f{bottom:481.346667pt;}
.ybf{bottom:483.266667pt;}
.y1d5{bottom:485.346667pt;}
.y22{bottom:485.826667pt;}
.y235{bottom:486.626667pt;}
.y1a4{bottom:490.306667pt;}
.yf6{bottom:491.746667pt;}
.y13b{bottom:492.226667pt;}
.y20e{bottom:494.786667pt;}
.ybe{bottom:495.106667pt;}
.y110{bottom:495.266667pt;}
.y1f3{bottom:495.746667pt;}
.y15e{bottom:496.066667pt;}
.y9f{bottom:497.666667pt;}
.y1d4{bottom:502.946667pt;}
.y234{bottom:504.226667pt;}
.y21{bottom:506.466667pt;}
.y13a{bottom:507.266667pt;}
.y1a3{bottom:507.906667pt;}
.yf5{bottom:509.506667pt;}
.y15d{bottom:510.946667pt;}
.ybd{bottom:512.706667pt;}
.y10f{bottom:513.026667pt;}
.y1f2{bottom:513.506667pt;}
.y9e{bottom:515.426667pt;}
.y139{bottom:518.786667pt;}
.y1d3{bottom:520.706667pt;}
.y233{bottom:521.826667pt;}
.y1a2{bottom:525.506667pt;}
.y15c{bottom:525.666667pt;}
.yf4{bottom:527.906667pt;}
.ybc{bottom:530.306667pt;}
.y10e{bottom:530.626667pt;}
.y1f1{bottom:531.106667pt;}
.y9d{bottom:533.026667pt;}
.y138{bottom:536.386667pt;}
.y1d2{bottom:539.106667pt;}
.y232{bottom:539.586667pt;}
.y15b{bottom:540.386667pt;}
.y1a1{bottom:543.266667pt;}
.y5b{bottom:543.413333pt;}
.ybb{bottom:547.906667pt;}
.y1f0{bottom:548.706667pt;}
.yf3{bottom:549.026667pt;}
.y9c{bottom:550.626667pt;}
.y137{bottom:554.013333pt;}
.y20{bottom:555.293333pt;}
.y1d1{bottom:556.733333pt;}
.y231{bottom:557.213333pt;}
.y1a0{bottom:560.893333pt;}
.yba{bottom:565.533333pt;}
.ye0{bottom:566.013333pt;}
.yde{bottom:566.026667pt;}
.y1ef{bottom:566.333333pt;}
.y9b{bottom:568.253333pt;}
.y1f{bottom:569.053333pt;}
.y15a{bottom:570.013333pt;}
.y136{bottom:571.613333pt;}
.y230{bottom:574.813333pt;}
.y19f{bottom:578.493333pt;}
.y1e{bottom:582.813333pt;}
.yb9{bottom:583.293333pt;}
.y1ee{bottom:583.933333pt;}
.y159{bottom:584.733333pt;}
.y9a{bottom:585.853333pt;}
.y135{bottom:590.173333pt;}
.y22f{bottom:592.413333pt;}
.y19e{bottom:596.093333pt;}
.y1d{bottom:596.573333pt;}
.y158{bottom:599.613333pt;}
.yb8{bottom:600.893333pt;}
.y1ed{bottom:601.693333pt;}
.y99{bottom:603.613333pt;}
.y134{bottom:607.613333pt;}
.y1c{bottom:610.493333pt;}
.y22e{bottom:610.813333pt;}
.y19d{bottom:613.693333pt;}
.y157{bottom:614.333333pt;}
.yb7{bottom:619.293333pt;}
.y1b{bottom:620.253333pt;}
.y98{bottom:621.213333pt;}
.y156{bottom:629.053333pt;}
.y65{bottom:630.813333pt;}
.y19c{bottom:631.453333pt;}
.y1a{bottom:632.413333pt;}
.y133{bottom:636.893333pt;}
.yb6{bottom:637.853333pt;}
.y97{bottom:638.813333pt;}
.y19{bottom:643.613333pt;}
.y155{bottom:643.933333pt;}
.y22d{bottom:647.293333pt;}
.y19b{bottom:649.053333pt;}
.y132{bottom:654.493333pt;}
.y18{bottom:654.653333pt;}
.y96{bottom:656.413333pt;}
.y154{bottom:658.653333pt;}
.y22c{bottom:664.893333pt;}
.y17{bottom:666.173333pt;}
.y19a{bottom:666.653333pt;}
.y131{bottom:672.093333pt;}
.y153{bottom:673.373333pt;}
.y95{bottom:674.013333pt;}
.y16{bottom:678.493333pt;}
.y22b{bottom:683.293333pt;}
.y199{bottom:685.373333pt;}
.y152{bottom:688.106667pt;}
.y15{bottom:689.853333pt;}
.y94{bottom:691.773333pt;}
.y151{bottom:702.973333pt;}
.y198{bottom:705.373333pt;}
.y130{bottom:707.453333pt;}
.y93{bottom:709.373333pt;}
.y14{bottom:713.693333pt;}
.y150{bottom:717.693333pt;}
.y192{bottom:719.613333pt;}
.y13{bottom:723.613333pt;}
.y12f{bottom:725.053333pt;}
.y92{bottom:726.973333pt;}
.y14e{bottom:732.426667pt;}
.y22a{bottom:737.213333pt;}
.y12{bottom:741.053333pt;}
.y12e{bottom:742.653333pt;}
.y91{bottom:744.573333pt;}
.y14d{bottom:747.293333pt;}
.y229{bottom:755.773333pt;}
.y12d{bottom:760.293333pt;}
.y14c{bottom:762.053333pt;}
.y90{bottom:762.213333pt;}
.y11{bottom:765.733333pt;}
.y14b{bottom:776.773333pt;}
.y12c{bottom:778.053333pt;}
.y8f{bottom:779.973333pt;}
.y10{bottom:783.813333pt;}
.y18d{bottom:789.560000pt;}
.y18a{bottom:789.573333pt;}
.y228{bottom:792.133333pt;}
.y147{bottom:792.933333pt;}
.y12b{bottom:795.653333pt;}
.y8e{bottom:797.573333pt;}
.yf{bottom:797.893333pt;}
.y227{bottom:809.733333pt;}
.ye{bottom:811.973333pt;}
.y12a{bottom:813.253333pt;}
.y1ec{bottom:814.053333pt;}
.y8d{bottom:815.173333pt;}
.yd{bottom:821.253333pt;}
.y226{bottom:827.333333pt;}
.y129{bottom:830.853333pt;}
.y8c{bottom:832.773333pt;}
.y146{bottom:834.053333pt;}
.yc{bottom:840.773333pt;}
.y225{bottom:844.933333pt;}
.y20d{bottom:848.453333pt;}
.y128{bottom:849.413333pt;}
.y8b{bottom:850.373333pt;}
.ydd{bottom:851.653333pt;}
.y224{bottom:862.693333pt;}
.y184{bottom:862.840000pt;}
.y181{bottom:862.853333pt;}
.yb{bottom:864.613333pt;}
.y20c{bottom:866.213333pt;}
.y8a{bottom:868.133333pt;}
.y223{bottom:880.293333pt;}
.ydc{bottom:882.213333pt;}
.y20b{bottom:883.813333pt;}
.y89{bottom:885.733333pt;}
.ya{bottom:892.933333pt;}
.y222{bottom:898.693333pt;}
.ydb{bottom:899.813333pt;}
.y20a{bottom:902.213333pt;}
.y88{bottom:903.333333pt;}
.yda{bottom:917.413333pt;}
.y87{bottom:920.933333pt;}
.y9{bottom:921.093333pt;}
.y17e{bottom:932.133333pt;}
.yd9{bottom:935.013333pt;}
.y86{bottom:938.533333pt;}
.y8{bottom:945.093333pt;}
.yd8{bottom:953.413333pt;}
.y85{bottom:956.133333pt;}
.y17d{bottom:957.413333pt;}
.y62{bottom:974.400000pt;}
.yd4{bottom:981.280000pt;}
.y83{bottom:998.400000pt;}
.y38{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h46{height:5.562500pt;}
.h2{height:12.000000pt;}
.h32{height:14.066667pt;}
.h34{height:14.080000pt;}
.h36{height:14.098667pt;}
.h33{height:14.100000pt;}
.h35{height:14.106667pt;}
.h31{height:14.226667pt;}
.h16{height:15.040000pt;}
.h15{height:16.125000pt;}
.h3d{height:18.386667pt;}
.h1e{height:19.680000pt;}
.h14{height:20.728125pt;}
.h23{height:25.918750pt;}
.h28{height:26.368125pt;}
.hb{height:26.381250pt;}
.he{height:27.523125pt;}
.h3b{height:29.940625pt;}
.h1c{height:32.250000pt;}
.h1a{height:33.515625pt;}
.h30{height:34.066667pt;}
.h12{height:35.114107pt;}
.h5{height:36.431250pt;}
.h2b{height:36.920625pt;}
.h26{height:37.090625pt;}
.h1d{height:37.410000pt;}
.h10{height:39.571875pt;}
.h45{height:40.410625pt;}
.h11{height:41.442606pt;}
.hc{height:42.084375pt;}
.h4{height:42.399867pt;}
.h17{height:43.215000pt;}
.h2d{height:44.073883pt;}
.h37{height:46.226667pt;}
.h20{height:46.400000pt;}
.h13{height:47.109375pt;}
.h18{height:48.375000pt;}
.hf{height:49.148438pt;}
.h2a{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2f{height:52.461875pt;}
.h3c{height:53.312000pt;}
.h25{height:53.535000pt;}
.h3a{height:55.186667pt;}
.ha{height:57.787500pt;}
.h21{height:58.563750pt;}
.h8{height:60.057813pt;}
.h27{height:62.781250pt;}
.hd{height:64.500000pt;}
.h1f{height:66.625000pt;}
.h24{height:66.750000pt;}
.h3e{height:67.186667pt;}
.h3f{height:67.192000pt;}
.h40{height:67.200000pt;}
.h44{height:69.300000pt;}
.h41{height:72.466667pt;}
.h42{height:72.472000pt;}
.h43{height:72.480000pt;}
.h1b{height:73.160000pt;}
.h7{height:76.964840pt;}
.h9{height:85.785000pt;}
.h38{height:109.152000pt;}
.h39{height:109.160000pt;}
.h22{height:118.400000pt;}
.h29{height:125.562500pt;}
.h2e{height:278.733333pt;}
.h2c{height:278.746667pt;}
.h19{height:439.426667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.we{width:63.706667pt;}
.wf{width:69.920000pt;}
.w3{width:72.952000pt;}
.wd{width:74.546667pt;}
.w10{width:89.592000pt;}
.w14{width:89.600000pt;}
.wc{width:92.818667pt;}
.w11{width:96.018667pt;}
.w12{width:114.112000pt;}
.w15{width:119.672000pt;}
.w9{width:137.306667pt;}
.w16{width:156.053333pt;}
.w18{width:156.066667pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.w13{width:341.973333pt;}
.w17{width:360.053333pt;}
.w19{width:360.066667pt;}
.w6{width:473.706667pt;}
.w4{width:568.760000pt;}
.wb{width:640.600000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:664.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x39{left:3.780000pt;}
.x2{left:7.192000pt;}
.x11{left:9.592000pt;}
.x2f{left:11.360000pt;}
.x25{left:15.040000pt;}
.x23{left:16.160000pt;}
.x26{left:17.120000pt;}
.x17{left:18.893333pt;}
.x20{left:20.000000pt;}
.x29{left:21.600000pt;}
.x22{left:22.880000pt;}
.x27{left:26.240000pt;}
.x28{left:29.600000pt;}
.x1d{left:31.192000pt;}
.x2a{left:32.320000pt;}
.x31{left:35.200000pt;}
.x34{left:51.386667pt;}
.x3{left:65.746667pt;}
.x10{left:72.680000pt;}
.x1e{left:79.186667pt;}
.x16{left:82.760000pt;}
.x13{left:83.720000pt;}
.x1{left:96.040000pt;}
.x19{left:99.072000pt;}
.x6{left:102.752000pt;}
.xe{left:117.952000pt;}
.x1a{left:120.032000pt;}
.x2e{left:121.626667pt;}
.xc{left:125.152000pt;}
.x7{left:126.432000pt;}
.x30{left:129.146667pt;}
.x32{left:131.226667pt;}
.x36{left:153.626667pt;}
.x37{left:155.880000pt;}
.x4{left:169.000000pt;}
.x38{left:180.026667pt;}
.x2b{left:185.640000pt;}
.xb{left:188.026667pt;}
.x33{left:215.720000pt;}
.x9{left:241.826667pt;}
.x12{left:268.866667pt;}
.x14{left:275.866667pt;}
.x2c{left:281.666667pt;}
.x15{left:330.293333pt;}
.x8{left:368.253333pt;}
.x35{left:371.786667pt;}
.xd{left:380.253333pt;}
.x2d{left:395.786667pt;}
.x5{left:396.893333pt;}
.xa{left:405.053333pt;}
.xf{left:436.253333pt;}
.x1f{left:529.093333pt;}
.x18{left:551.336000pt;}
.x1c{left:573.733333pt;}
.x21{left:603.653333pt;}
.x24{left:667.360000pt;}
.x1b{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; }
  