
    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_9266861beed2d06abc2d2c10.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_24c82ecdaa47e93a8c89197e.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_57c306dc98673f77b8d3d42d.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_914927012eaa061fbcce73c0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.859863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ff5{font-family:ff5;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5d0817adf57276cac0b86b84.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a93d9cf01223af016f723e20.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d3041193e4da67cdf8a63c72.woff')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_93bb6395577d2e98f7c44d08.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_6b2b87c07747f29cd25f5d63.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b010e47a581509ad388b8702.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ffc{font-family:ffc;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6ea2e5a493fbc07db2e316ce.woff')format("woff");}.ffd{font-family:ffd;line-height:0.892578;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0f31720e86d7001c818442b7.woff')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_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_3ec86ad8535e56497f3cb523.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_914be66280f5d6a44887a7dd.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_f7f82b581b76537eca74cdf7.woff')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v8{vertical-align:-68.400000px;}
.v9{vertical-align:-65.520000px;}
.v3{vertical-align:-50.400000px;}
.v2{vertical-align:-32.400000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.120000px;}
.v6{vertical-align:18.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.413400px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.106800px;}
.ls9{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.033120px;}
.ls18{letter-spacing:0.106800px;}
.lsc{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.135600px;}
.ls3{letter-spacing:0.144720px;}
.ls12{letter-spacing:0.156240px;}
.ls15{letter-spacing:0.178560px;}
.ls5{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.259800px;}
.ls1d{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.269400px;}
.ls4{letter-spacing:0.270720px;}
.ls20{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.315600px;}
.ls10{letter-spacing:0.345600px;}
.ls6{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.493920px;}
.ls1c{letter-spacing:0.666000px;}
.ls1f{letter-spacing:0.900000px;}
.ls14{letter-spacing:1.800000px;}
.lsd{letter-spacing:8.820000px;}
.ls1e{letter-spacing:23.940000px;}
.ls2{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.ls19{letter-spacing:499.836000px;}
.ls1{letter-spacing:505.956000px;}
.ls16{letter-spacing:1428.936000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws13{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.840000px;}
.wsd{word-spacing:-15.300000px;}
.ws15{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.833200px;}
.ws16{word-spacing:-14.580000px;}
.ws14{word-spacing:-14.526600px;}
.wsa{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.608000px;}
.ws6{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.700000px;}
.ws8{word-spacing:-10.440000px;}
.wse{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws11{word-spacing:-6.840000px;}
.ws9{word-spacing:0.000000px;}
.ws0{word-spacing:60.840000px;}
._5{margin-left:-59.580000px;}
._2a{margin-left:-8.153280px;}
._17{margin-left:-3.227040px;}
._2{margin-left:-1.391040px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._12{width:3.482160px;}
._c{width:5.199120px;}
._11{width:6.454080px;}
._13{width:7.546320px;}
._d{width:8.844480px;}
._24{width:9.911280px;}
._e{width:10.936080px;}
._22{width:12.299040px;}
._8{width:13.804560px;}
._1a{width:16.613280px;}
._a{width:17.748720px;}
._b{width:18.884160px;}
._19{width:20.019600px;}
._7{width:21.513600px;}
._9{width:22.919760px;}
._14{width:24.740640px;}
._10{width:26.055360px;}
._f{width:27.190800px;}
._1f{width:28.230480px;}
._20{width:29.342160px;}
._18{width:30.852720px;}
._15{width:32.031360px;}
._16{width:33.437520px;}
._21{width:35.437680px;}
._27{width:36.871920px;}
._2e{width:38.369520px;}
._26{width:40.098960px;}
._32{width:42.071040px;}
._2d{width:43.146720px;}
._3f{width:44.277600px;}
._3a{width:45.537120px;}
._34{width:47.150640px;}
._31{width:48.644640px;}
._29{width:49.660560px;}
._35{width:51.035040px;}
._28{width:52.588800px;}
._1d{width:54.082800px;}
._1e{width:55.576800px;}
._30{width:57.134160px;}
._3c{width:59.433120px;}
._3b{width:60.477120px;}
._25{width:61.851600px;}
._33{width:64.231440px;}
._3{width:65.496000px;}
._2b{width:66.512880px;}
._2c{width:67.947120px;}
._2f{width:69.444720px;}
._36{width:70.931520px;}
._1c{width:73.601280px;}
._1b{width:74.759760px;}
._39{width:86.593440px;}
._3d{width:104.551920px;}
._38{width:142.766640px;}
._37{width:196.300080px;}
._4{width:199.620000px;}
._23{width:285.870000px;}
._3e{width:534.493440px;}
._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;}
.fs13{font-size:6.000000px;}
.fsf{font-size:12.240000px;}
.fs6{font-size:18.000000px;}
.fsd{font-size:23.760000px;}
.fs12{font-size:27.360000px;}
.fs7{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsc{font-size:37.946952px;}
.fs11{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fsb{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs10{font-size:75.893905px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y6d{bottom:-251.490000px;}
.y6c{bottom:-217.650000px;}
.y6b{bottom:-183.990000px;}
.y7b{bottom:-155.190000px;}
.y6a{bottom:-150.300000px;}
.y7a{bottom:-121.485000px;}
.y69{bottom:-116.460000px;}
.y79{bottom:-87.645000px;}
.y68{bottom:-82.800000px;}
.y78{bottom:-53.985000px;}
.y67{bottom:-48.960000px;}
.y60{bottom:-28.650000px;}
.y3c{bottom:-27.360000px;}
.y77{bottom:-20.145000px;}
.y7d{bottom:-17.922750px;}
.y66{bottom:-15.300000px;}
.y0{bottom:0.000000px;}
.y25d{bottom:1.837500px;}
.y65{bottom:2.700000px;}
.y5d{bottom:3.780000px;}
.y2{bottom:3.960000px;}
.y3b{bottom:4.860000px;}
.y5f{bottom:5.580000px;}
.y175{bottom:5.760000px;}
.y173{bottom:5.940000px;}
.y171{bottom:6.300000px;}
.y17f{bottom:8.145000px;}
.y57{bottom:8.475000px;}
.y19b{bottom:9.165000px;}
.y17e{bottom:9.225000px;}
.y19d{bottom:9.345000px;}
.y19f{bottom:12.405000px;}
.y7{bottom:12.420000px;}
.y1a0{bottom:12.585000px;}
.y17a{bottom:12.600000px;}
.y4{bottom:13.500000px;}
.y76{bottom:13.515000px;}
.y3{bottom:13.680000px;}
.y64{bottom:15.840000px;}
.y5c{bottom:16.200000px;}
.y56{bottom:24.135000px;}
.y6{bottom:25.200000px;}
.y5b{bottom:28.440000px;}
.y63{bottom:28.800000px;}
.y55{bottom:37.455000px;}
.y5{bottom:38.160000px;}
.y5a{bottom:40.500000px;}
.y62{bottom:41.220000px;}
.y1e3{bottom:41.400000px;}
.y22d{bottom:42.120000px;}
.y75{bottom:44.475000px;}
.y54{bottom:46.275000px;}
.y84{bottom:47.700000px;}
.y59{bottom:57.420000px;}
.y74{bottom:57.435000px;}
.y178{bottom:59.940000px;}
.yb7{bottom:60.480000px;}
.y22c{bottom:60.840000px;}
.y1a8{bottom:61.200000px;}
.y1{bottom:61.380000px;}
.y7c{bottom:63.780000px;}
.y53{bottom:64.095000px;}
.y83{bottom:66.420000px;}
.y73{bottom:70.575000px;}
.y22b{bottom:77.220000px;}
.y1a7{bottom:80.100000px;}
.y52{bottom:81.915000px;}
.y82{bottom:82.800000px;}
.y72{bottom:83.565000px;}
.y22a{bottom:95.040000px;}
.y1a6{bottom:96.300000px;}
.y71{bottom:96.705000px;}
.y113{bottom:99.540000px;}
.y51{bottom:99.915000px;}
.y81{bottom:102.240000px;}
.ye9{bottom:103.860000px;}
.y70{bottom:109.665000px;}
.y256{bottom:110.880000px;}
.y1a5{bottom:114.120000px;}
.y50{bottom:117.735000px;}
.y112{bottom:118.080000px;}
.y255{bottom:119.880000px;}
.y80{bottom:120.780000px;}
.y6f{bottom:122.085000px;}
.ye8{bottom:123.660000px;}
.y39{bottom:126.540000px;}
.y229{bottom:128.520000px;}
.y212{bottom:130.680000px;}
.y4f{bottom:131.055000px;}
.y1c6{bottom:133.560000px;}
.y254{bottom:134.820000px;}
.y111{bottom:136.800000px;}
.yb5{bottom:139.680000px;}
.y4e{bottom:139.875000px;}
.ye7{bottom:143.640000px;}
.y38{bottom:146.340000px;}
.y228{bottom:148.320000px;}
.y211{bottom:150.480000px;}
.y1c5{bottom:153.360000px;}
.y253{bottom:154.620000px;}
.y110{bottom:155.340000px;}
.y1e2{bottom:155.520000px;}
.y4d{bottom:157.725000px;}
.yb4{bottom:159.480000px;}
.ye6{bottom:163.470000px;}
.y145{bottom:165.450000px;}
.y37{bottom:166.170000px;}
.y227{bottom:168.150000px;}
.y16f{bottom:169.770000px;}
.y210{bottom:170.310000px;}
.y1c4{bottom:173.190000px;}
.y10f{bottom:174.090000px;}
.y252{bottom:174.450000px;}
.y1e1{bottom:175.350000px;}
.y4c{bottom:175.545000px;}
.yb3{bottom:179.310000px;}
.y1a4{bottom:181.830000px;}
.y144{bottom:183.990000px;}
.ye5{bottom:184.170000px;}
.y36{bottom:185.970000px;}
.y226{bottom:188.130000px;}
.y16e{bottom:189.570000px;}
.y20f{bottom:190.110000px;}
.y10e{bottom:192.630000px;}
.y1c3{bottom:192.990000px;}
.y4b{bottom:193.365000px;}
.y251{bottom:194.430000px;}
.y1e0{bottom:195.150000px;}
.y1a3{bottom:196.590000px;}
.yb2{bottom:199.290000px;}
.y143{bottom:202.710000px;}
.ye4{bottom:203.790000px;}
.y35{bottom:205.770000px;}
.y4a{bottom:206.685000px;}
.y225{bottom:207.930000px;}
.y1a2{bottom:208.650000px;}
.y16d{bottom:209.550000px;}
.y20e{bottom:210.090000px;}
.y10d{bottom:211.170000px;}
.y1c2{bottom:212.970000px;}
.y250{bottom:214.230000px;}
.y1df{bottom:214.950000px;}
.y49{bottom:215.505000px;}
.ye3{bottom:216.930000px;}
.yb1{bottom:219.090000px;}
.y1a1{bottom:220.710000px;}
.y142{bottom:223.230000px;}
.y34{bottom:225.750000px;}
.y224{bottom:227.730000px;}
.y16c{bottom:229.350000px;}
.y10c{bottom:229.890000px;}
.y19e{bottom:232.605000px;}
.y1c1{bottom:232.770000px;}
.y48{bottom:233.505000px;}
.y24f{bottom:234.030000px;}
.y1de{bottom:234.930000px;}
.ye2{bottom:236.910000px;}
.yb0{bottom:238.890000px;}
.y141{bottom:242.670000px;}
.y33{bottom:245.550000px;}
.y223{bottom:247.530000px;}
.y10b{bottom:248.430000px;}
.y16b{bottom:249.150000px;}
.y20d{bottom:249.690000px;}
.y47{bottom:251.325000px;}
.y1c0{bottom:252.570000px;}
.y24e{bottom:253.830000px;}
.y140{bottom:254.370000px;}
.y1dd{bottom:254.730000px;}
.ye1{bottom:256.710000px;}
.yaf{bottom:258.690000px;}
.y25c{bottom:264.450000px;}
.y32{bottom:265.350000px;}
.y19c{bottom:266.265000px;}
.y10a{bottom:267.150000px;}
.y222{bottom:267.330000px;}
.y16a{bottom:268.950000px;}
.y46{bottom:269.145000px;}
.y20c{bottom:269.490000px;}
.y1bf{bottom:272.370000px;}
.y13f{bottom:272.910000px;}
.y24d{bottom:273.630000px;}
.y1dc{bottom:274.530000px;}
.ye0{bottom:277.410000px;}
.yae{bottom:278.490000px;}
.y31{bottom:285.150000px;}
.y109{bottom:285.690000px;}
.y45{bottom:286.965000px;}
.y221{bottom:287.310000px;}
.y169{bottom:288.750000px;}
.y20b{bottom:289.290000px;}
.y13e{bottom:291.630000px;}
.y1be{bottom:292.170000px;}
.y1db{bottom:294.330000px;}
.y24c{bottom:294.510000px;}
.y19a{bottom:294.885000px;}
.y25b{bottom:295.050000px;}
.yad{bottom:298.470000px;}
.ydf{bottom:301.170000px;}
.y108{bottom:304.410000px;}
.y44{bottom:304.785000px;}
.y30{bottom:304.950000px;}
.y220{bottom:307.110000px;}
.y168{bottom:308.550000px;}
.y20a{bottom:309.270000px;}
.y13d{bottom:310.170000px;}
.y1bd{bottom:312.150000px;}
.y1da{bottom:314.130000px;}
.y24b{bottom:317.370000px;}
.yac{bottom:318.270000px;}
.y43{bottom:322.785000px;}
.y107{bottom:322.950000px;}
.y2f{bottom:324.930000px;}
.y25a{bottom:325.830000px;}
.y21f{bottom:326.910000px;}
.y199{bottom:328.350000px;}
.y167{bottom:328.530000px;}
.y13c{bottom:328.890000px;}
.y209{bottom:329.070000px;}
.y1bc{bottom:331.950000px;}
.y1d9{bottom:334.110000px;}
.y42{bottom:336.105000px;}
.y24a{bottom:337.170000px;}
.yab{bottom:338.070000px;}
.y106{bottom:341.490000px;}
.yde{bottom:342.030000px;}
.y2e{bottom:344.730000px;}
.y41{bottom:344.925000px;}
.y21e{bottom:346.710000px;}
.y13b{bottom:347.430000px;}
.y166{bottom:348.330000px;}
.y208{bottom:348.870000px;}
.y1bb{bottom:351.750000px;}
.y1d8{bottom:353.910000px;}
.y259{bottom:356.430000px;}
.y249{bottom:356.970000px;}
.yaa{bottom:357.870000px;}
.y105{bottom:360.210000px;}
.ydd{bottom:362.010000px;}
.y40{bottom:362.745000px;}
.y2d{bottom:364.530000px;}
.y198{bottom:364.710000px;}
.y13a{bottom:365.970000px;}
.y21d{bottom:366.510000px;}
.y165{bottom:368.130000px;}
.y207{bottom:368.670000px;}
.y1ba{bottom:371.550000px;}
.y1d7{bottom:373.710000px;}
.ya9{bottom:377.670000px;}
.y104{bottom:378.750000px;}
.y3f{bottom:380.610000px;}
.ydc{bottom:381.810000px;}
.y2c{bottom:384.330000px;}
.y197{bottom:384.510000px;}
.y139{bottom:384.690000px;}
.y21c{bottom:386.310000px;}
.y258{bottom:387.030000px;}
.y164{bottom:387.930000px;}
.y206{bottom:388.470000px;}
.y1b9{bottom:391.350000px;}
.y1d6{bottom:393.555000px;}
.y103{bottom:397.515000px;}
.ya8{bottom:397.695000px;}
.y3e{bottom:398.430000px;}
.ydb{bottom:401.655000px;}
.y138{bottom:403.275000px;}
.y2b{bottom:404.175000px;}
.y196{bottom:404.535000px;}
.y21b{bottom:406.335000px;}
.y163{bottom:407.775000px;}
.y205{bottom:408.495000px;}
.y1b8{bottom:411.375000px;}
.y1d5{bottom:413.355000px;}
.y102{bottom:416.055000px;}
.ya7{bottom:417.495000px;}
.y257{bottom:417.675000px;}
.y248{bottom:418.755000px;}
.yda{bottom:421.455000px;}
.y137{bottom:421.995000px;}
.y2a{bottom:424.155000px;}
.y195{bottom:424.335000px;}
.y21a{bottom:426.135000px;}
.y162{bottom:427.755000px;}
.y204{bottom:428.295000px;}
.y1b7{bottom:431.175000px;}
.y1d4{bottom:433.335000px;}
.y101{bottom:434.595000px;}
.ya6{bottom:437.295000px;}
.y247{bottom:438.555000px;}
.y136{bottom:440.535000px;}
.yd9{bottom:441.255000px;}
.y29{bottom:443.955000px;}
.y194{bottom:444.135000px;}
.y219{bottom:445.935000px;}
.y161{bottom:447.555000px;}
.y203{bottom:448.095000px;}
.y1b6{bottom:450.975000px;}
.y1d3{bottom:453.135000px;}
.y100{bottom:453.315000px;}
.ya5{bottom:457.095000px;}
.y135{bottom:459.255000px;}
.yd8{bottom:461.235000px;}
.y193{bottom:463.935000px;}
.y28{bottom:464.655000px;}
.y218{bottom:465.735000px;}
.y160{bottom:467.355000px;}
.y202{bottom:467.895000px;}
.y1b5{bottom:470.775000px;}
.yff{bottom:471.855000px;}
.y1d2{bottom:472.935000px;}
.ya4{bottom:476.895000px;}
.y134{bottom:477.795000px;}
.y3d{bottom:480.480000px;}
.yd7{bottom:481.035000px;}
.y192{bottom:483.735000px;}
.y27{bottom:484.995000px;}
.y217{bottom:485.535000px;}
.y15f{bottom:487.155000px;}
.y201{bottom:487.695000px;}
.yfe{bottom:490.575000px;}
.y1d1{bottom:492.735000px;}
.y26{bottom:494.895000px;}
.y133{bottom:496.335000px;}
.ya3{bottom:496.875000px;}
.y246{bottom:500.115000px;}
.yd6{bottom:500.835000px;}
.y25{bottom:502.455000px;}
.y191{bottom:503.715000px;}
.y216{bottom:505.515000px;}
.y15e{bottom:506.955000px;}
.y200{bottom:507.675000px;}
.yfd{bottom:509.115000px;}
.y1b4{bottom:510.555000px;}
.y1d0{bottom:512.535000px;}
.y132{bottom:515.055000px;}
.y24{bottom:516.315000px;}
.ya2{bottom:516.675000px;}
.y245{bottom:520.095000px;}
.yd5{bottom:520.635000px;}
.y190{bottom:523.515000px;}
.y23{bottom:524.955000px;}
.y215{bottom:525.315000px;}
.y15d{bottom:526.935000px;}
.y1ff{bottom:527.475000px;}
.yfc{bottom:527.655000px;}
.y1b3{bottom:530.355000px;}
.y1cf{bottom:532.515000px;}
.y131{bottom:533.595000px;}
.ya1{bottom:536.475000px;}
.y6e{bottom:539.520000px;}
.y244{bottom:539.895000px;}
.yd4{bottom:540.435000px;}
.y18f{bottom:543.315000px;}
.y214{bottom:545.115000px;}
.yfb{bottom:546.375000px;}
.y15c{bottom:546.735000px;}
.y1fe{bottom:547.275000px;}
.y22{bottom:548.175000px;}
.y1b2{bottom:550.155000px;}
.y130{bottom:552.315000px;}
.ya0{bottom:556.275000px;}
.y243{bottom:559.695000px;}
.yd3{bottom:560.415000px;}
.y18e{bottom:563.115000px;}
.yfa{bottom:564.915000px;}
.y15b{bottom:566.535000px;}
.y1fd{bottom:567.075000px;}
.y1b1{bottom:569.955000px;}
.y12f{bottom:570.855000px;}
.y21{bottom:571.575000px;}
.y1ce{bottom:572.115000px;}
.y9f{bottom:576.075000px;}
.yd2{bottom:580.215000px;}
.y242{bottom:580.395000px;}
.y18d{bottom:582.915000px;}
.yf9{bottom:583.635000px;}
.y213{bottom:585.795000px;}
.y15a{bottom:586.335000px;}
.y1fc{bottom:586.875000px;}
.y12e{bottom:589.395000px;}
.y1b0{bottom:589.755000px;}
.y1cd{bottom:591.915000px;}
.y20{bottom:594.795000px;}
.y9e{bottom:596.055000px;}
.yd1{bottom:600.015000px;}
.yf8{bottom:602.175000px;}
.y18c{bottom:602.895000px;}
.y159{bottom:606.135000px;}
.y1fb{bottom:606.855000px;}
.y12d{bottom:608.115000px;}
.y1af{bottom:609.735000px;}
.y1cc{bottom:611.715000px;}
.y9d{bottom:615.855000px;}
.y1f{bottom:618.015000px;}
.yd0{bottom:619.815000px;}
.yf7{bottom:620.895000px;}
.y241{bottom:621.255000px;}
.y18b{bottom:622.725000px;}
.y158{bottom:626.145000px;}
.y12c{bottom:626.685000px;}
.y1ae{bottom:629.565000px;}
.y1cb{bottom:631.725000px;}
.y9c{bottom:635.685000px;}
.yf6{bottom:639.465000px;}
.ycf{bottom:639.645000px;}
.y1e{bottom:641.445000px;}
.y240{bottom:642.165000px;}
.y18a{bottom:642.525000px;}
.y12b{bottom:645.405000px;}
.y1fa{bottom:646.485000px;}
.y157{bottom:646.845000px;}
.y1ad{bottom:649.365000px;}
.y1ca{bottom:651.525000px;}
.y9b{bottom:655.485000px;}
.yf5{bottom:658.005000px;}
.yce{bottom:659.625000px;}
.y189{bottom:662.325000px;}
.y12a{bottom:663.945000px;}
.y1d{bottom:664.665000px;}
.y1f9{bottom:666.285000px;}
.y1ac{bottom:669.165000px;}
.y1c9{bottom:671.325000px;}
.y9a{bottom:675.285000px;}
.yf4{bottom:676.725000px;}
.ycd{bottom:679.425000px;}
.y188{bottom:682.125000px;}
.y129{bottom:682.485000px;}
.y23f{bottom:683.025000px;}
.y1f8{bottom:686.085000px;}
.y156{bottom:686.625000px;}
.y1ab{bottom:689.865000px;}
.y1c8{bottom:691.125000px;}
.y99{bottom:695.265000px;}
.ycc{bottom:699.225000px;}
.y187{bottom:699.405000px;}
.y128{bottom:701.205000px;}
.y23e{bottom:702.825000px;}
.y155{bottom:705.345000px;}
.y1f7{bottom:706.065000px;}
.y1c7{bottom:710.925000px;}
.y186{bottom:712.365000px;}
.yf3{bottom:713.985000px;}
.y98{bottom:715.065000px;}
.ycb{bottom:719.025000px;}
.y1c{bottom:719.565000px;}
.y127{bottom:719.745000px;}
.y23d{bottom:722.625000px;}
.y58{bottom:722.985000px;}
.y154{bottom:723.885000px;}
.y185{bottom:724.245000px;}
.y1f6{bottom:725.865000px;}
.yf2{bottom:732.525000px;}
.y97{bottom:734.865000px;}
.y1b{bottom:735.045000px;}
.y126{bottom:738.465000px;}
.yca{bottom:738.825000px;}
.y23c{bottom:742.425000px;}
.y153{bottom:742.605000px;}
.y184{bottom:744.405000px;}
.y1aa{bottom:745.485000px;}
.y1f5{bottom:745.665000px;}
.y1a{bottom:750.525000px;}
.yf1{bottom:751.065000px;}
.y96{bottom:754.665000px;}
.y125{bottom:757.005000px;}
.yc9{bottom:758.805000px;}
.y152{bottom:761.145000px;}
.y23b{bottom:763.305000px;}
.y183{bottom:764.745000px;}
.y1f4{bottom:765.465000px;}
.y19{bottom:766.005000px;}
.yf0{bottom:769.785000px;}
.y95{bottom:774.465000px;}
.y124{bottom:775.725000px;}
.yc8{bottom:778.605000px;}
.y151{bottom:779.685000px;}
.y18{bottom:781.665000px;}
.y182{bottom:784.905000px;}
.y1f3{bottom:785.265000px;}
.yef{bottom:788.325000px;}
.y17{bottom:792.645000px;}
.y123{bottom:794.265000px;}
.y94{bottom:794.445000px;}
.yc7{bottom:798.405000px;}
.y23a{bottom:804.165000px;}
.y61{bottom:804.525000px;}
.y181{bottom:805.245000px;}
.y16{bottom:806.325000px;}
.yee{bottom:807.045000px;}
.y122{bottom:812.805000px;}
.y93{bottom:814.245000px;}
.y150{bottom:816.945000px;}
.yc6{bottom:818.205000px;}
.y15{bottom:818.925000px;}
.y239{bottom:823.965000px;}
.y1f2{bottom:825.045000px;}
.y180{bottom:825.405000px;}
.yed{bottom:825.585000px;}
.y14{bottom:831.345000px;}
.y121{bottom:831.525000px;}
.y92{bottom:834.045000px;}
.y14f{bottom:835.665000px;}
.yc5{bottom:838.005000px;}
.y238{bottom:843.765000px;}
.yec{bottom:844.125000px;}
.y13{bottom:844.305000px;}
.y1f1{bottom:844.845000px;}
.y17d{bottom:845.745000px;}
.y120{bottom:850.065000px;}
.y91{bottom:853.890000px;}
.y14e{bottom:854.250000px;}
.yc4{bottom:858.030000px;}
.y12{bottom:858.210000px;}
.y237{bottom:864.510000px;}
.y1f0{bottom:864.690000px;}
.yeb{bottom:864.870000px;}
.y11f{bottom:868.830000px;}
.y11{bottom:870.990000px;}
.y14d{bottom:872.790000px;}
.y90{bottom:873.690000px;}
.yc3{bottom:877.830000px;}
.y1ef{bottom:884.490000px;}
.yea{bottom:884.670000px;}
.y11e{bottom:887.370000px;}
.y236{bottom:888.450000px;}
.y14c{bottom:891.510000px;}
.y177{bottom:892.950000px;}
.y8f{bottom:893.670000px;}
.yc2{bottom:897.630000px;}
.y10{bottom:897.810000px;}
.y1ee{bottom:904.470000px;}
.y11d{bottom:905.910000px;}
.yf{bottom:908.970000px;}
.y14b{bottom:910.050000px;}
.y17c{bottom:913.290000px;}
.y8e{bottom:913.470000px;}
.yc1{bottom:917.430000px;}
.y1ed{bottom:924.270000px;}
.y11c{bottom:924.630000px;}
.ye{bottom:928.590000px;}
.y14a{bottom:928.770000px;}
.y235{bottom:929.310000px;}
.y8d{bottom:933.270000px;}
.yc0{bottom:937.230000px;}
.y11b{bottom:943.170000px;}
.y1ec{bottom:944.070000px;}
.y17b{bottom:946.950000px;}
.y149{bottom:947.310000px;}
.y234{bottom:949.110000px;}
.y8c{bottom:953.070000px;}
.yd{bottom:954.870000px;}
.ybf{bottom:957.210000px;}
.y11a{bottom:961.890000px;}
.y1eb{bottom:963.870000px;}
.yc{bottom:966.030000px;}
.y179{bottom:967.290000px;}
.y233{bottom:968.910000px;}
.y8b{bottom:972.870000px;}
.ybe{bottom:977.010000px;}
.y119{bottom:980.430000px;}
.y1ea{bottom:983.670000px;}
.y148{bottom:984.570000px;}
.y232{bottom:988.710000px;}
.yb{bottom:989.250000px;}
.y8a{bottom:992.850000px;}
.ybd{bottom:996.810000px;}
.y118{bottom:998.970000px;}
.y176{bottom:1000.950000px;}
.y1e9{bottom:1003.650000px;}
.y147{bottom:1005.090000px;}
.ya{bottom:1008.690000px;}
.y89{bottom:1012.650000px;}
.ybc{bottom:1016.610000px;}
.y117{bottom:1017.690000px;}
.y174{bottom:1021.290000px;}
.y1e8{bottom:1023.450000px;}
.y146{bottom:1024.530000px;}
.y231{bottom:1028.490000px;}
.y88{bottom:1032.450000px;}
.y9{bottom:1036.230000px;}
.ybb{bottom:1036.410000px;}
.y172{bottom:1041.450000px;}
.y1e7{bottom:1043.250000px;}
.y230{bottom:1048.290000px;}
.y87{bottom:1052.250000px;}
.y116{bottom:1054.950000px;}
.yba{bottom:1056.390000px;}
.y1e6{bottom:1063.050000px;}
.y8{bottom:1063.230000px;}
.y22f{bottom:1068.090000px;}
.y86{bottom:1072.050000px;}
.y115{bottom:1073.490000px;}
.yb9{bottom:1076.190000px;}
.y1e5{bottom:1082.880000px;}
.y22e{bottom:1089.000000px;}
.y1a9{bottom:1090.260000px;}
.y170{bottom:1090.620000px;}
.y85{bottom:1092.060000px;}
.y114{bottom:1092.240000px;}
.yb8{bottom:1096.020000px;}
.y5e{bottom:1096.200000px;}
.y1e4{bottom:1102.680000px;}
.y7f{bottom:1109.340000px;}
.yb6{bottom:1120.140000px;}
.y7e{bottom:1125.900000px;}
.y3a{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h37{height:6.257812px;}
.h2{height:13.500000px;}
.h19{height:16.740000px;}
.hb{height:17.666016px;}
.h15{height:18.140625px;}
.h2d{height:19.425000px;}
.h32{height:19.440000px;}
.h2c{height:20.730000px;}
.h21{height:22.140000px;}
.h14{height:23.319141px;}
.h31{height:26.122500px;}
.h35{height:26.265000px;}
.h34{height:26.625000px;}
.h29{height:29.664141px;}
.h1e{height:29.678906px;}
.he{height:30.963516px;}
.h30{height:32.925000px;}
.h16{height:36.281250px;}
.h12{height:39.503370px;}
.h2e{height:39.585000px;}
.h5{height:40.985156px;}
.h27{height:41.535703px;}
.h20{height:42.086250px;}
.h33{height:42.922699px;}
.h10{height:44.518359px;}
.h11{height:46.622932px;}
.hc{height:47.344922px;}
.h4{height:47.699850px;}
.h1d{height:48.410156px;}
.h1a{height:48.616875px;}
.h23{height:52.222500px;}
.h13{height:52.998047px;}
.h17{height:53.573906px;}
.h1b{height:54.421875px;}
.hf{height:55.291992px;}
.h3{height:58.651172px;}
.h2b{height:59.038594px;}
.h9{height:60.226875px;}
.h18{height:61.423863px;}
.h36{height:62.211094px;}
.ha{height:65.010937px;}
.h1f{height:65.520000px;}
.h24{height:65.884219px;}
.h28{height:70.628906px;}
.hd{height:72.562500px;}
.h22{height:74.953125px;}
.h26{height:75.093750px;}
.h2a{height:79.006741px;}
.h7{height:86.585445px;}
.h8{height:96.508125px;}
.h2f{height:127.425000px;}
.h25{height:133.065000px;}
.h1c{height:410.655000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w11{width:43.200000px;}
.w13{width:46.965000px;}
.w15{width:47.001000px;}
.w12{width:47.016000px;}
.w14{width:47.145000px;}
.w17{width:51.645000px;}
.w16{width:59.565000px;}
.w3{width:82.071000px;}
.wf{width:91.830000px;}
.wd{width:112.665000px;}
.wc{width:113.256000px;}
.w10{width:119.361000px;}
.we{width:131.241000px;}
.w9{width:154.470000px;}
.wb{width:166.875000px;}
.wa{width:180.390000px;}
.w7{width:180.930000px;}
.w6{width:532.920000px;}
.w4{width:639.855000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:745.875000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x41{left:4.252500px;}
.x2{left:8.091000px;}
.xd{left:10.791000px;}
.x37{left:12.780000px;}
.x22{left:15.105000px;}
.x3e{left:16.200000px;}
.x20{left:17.820000px;}
.x13{left:21.255000px;}
.x1e{left:22.485000px;}
.x27{left:26.640000px;}
.x2b{left:29.520000px;}
.x30{left:30.780000px;}
.x29{left:32.400000px;}
.x32{left:40.665000px;}
.x26{left:42.120000px;}
.x31{left:44.100000px;}
.x2a{left:45.390000px;}
.x28{left:47.010000px;}
.x24{left:51.870000px;}
.x2c{left:53.640000px;}
.x2d{left:56.145000px;}
.x2f{left:62.670000px;}
.x2e{left:65.550000px;}
.x3{left:73.965000px;}
.xc{left:81.765000px;}
.x12{left:93.105000px;}
.xf{left:94.365000px;}
.x1{left:108.045000px;}
.x3f{left:111.996000px;}
.x15{left:118.296000px;}
.x7{left:119.556000px;}
.x1a{left:121.536000px;}
.x6{left:128.016000px;}
.xa{left:132.696000px;}
.x19{left:135.036000px;}
.x1d{left:160.785000px;}
.x1c{left:162.030000px;}
.x4{left:190.125000px;}
.x34{left:214.245000px;}
.x33{left:216.030000px;}
.xe{left:302.835000px;}
.x10{left:310.350000px;}
.x9{left:311.475000px;}
.x1f{left:327.675000px;}
.x35{left:333.615000px;}
.x11{left:371.580000px;}
.x36{left:376.815000px;}
.x38{left:423.840000px;}
.x21{left:440.940000px;}
.x5{left:446.505000px;}
.x8{left:452.265000px;}
.x16{left:468.645000px;}
.x39{left:470.820000px;}
.xb{left:490.785000px;}
.x3a{left:517.980000px;}
.x23{left:553.620000px;}
.x3b{left:564.960000px;}
.x3c{left:611.970000px;}
.x14{left:620.253000px;}
.x1b{left:626.910000px;}
.x18{left:645.450000px;}
.x3d{left:671.550000px;}
.x25{left:684.870000px;}
.x17{left:799.200000px;}
.x40{left:829.440000px;}
@media print{
.v8{vertical-align:-60.800000pt;}
.v9{vertical-align:-58.240000pt;}
.v3{vertical-align:-44.800000pt;}
.v2{vertical-align:-28.800000pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:13.440000pt;}
.v6{vertical-align:16.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.367467pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.029440pt;}
.ls18{letter-spacing:0.094933pt;}
.lsc{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.120533pt;}
.ls3{letter-spacing:0.128640pt;}
.ls12{letter-spacing:0.138880pt;}
.ls15{letter-spacing:0.158720pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.230933pt;}
.ls1d{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.239467pt;}
.ls4{letter-spacing:0.240640pt;}
.ls20{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.280533pt;}
.ls10{letter-spacing:0.307200pt;}
.ls6{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.439040pt;}
.ls1c{letter-spacing:0.592000pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls14{letter-spacing:1.600000pt;}
.lsd{letter-spacing:7.840000pt;}
.ls1e{letter-spacing:21.280000pt;}
.ls2{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls19{letter-spacing:444.298667pt;}
.ls1{letter-spacing:449.738667pt;}
.ls16{letter-spacing:1270.165333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws13{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.080000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws15{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.185067pt;}
.ws16{word-spacing:-12.960000pt;}
.ws14{word-spacing:-12.912533pt;}
.wsa{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.096000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.400000pt;}
.ws8{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws11{word-spacing:-6.080000pt;}
.ws9{word-spacing:0.000000pt;}
.ws0{word-spacing:54.080000pt;}
._5{margin-left:-52.960000pt;}
._2a{margin-left:-7.247360pt;}
._17{margin-left:-2.868480pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._12{width:3.095253pt;}
._c{width:4.621440pt;}
._11{width:5.736960pt;}
._13{width:6.707840pt;}
._d{width:7.861760pt;}
._24{width:8.810027pt;}
._e{width:9.720960pt;}
._22{width:10.932480pt;}
._8{width:12.270720pt;}
._1a{width:14.767360pt;}
._a{width:15.776640pt;}
._b{width:16.785920pt;}
._19{width:17.795200pt;}
._7{width:19.123200pt;}
._9{width:20.373120pt;}
._14{width:21.991680pt;}
._10{width:23.160320pt;}
._f{width:24.169600pt;}
._1f{width:25.093760pt;}
._20{width:26.081920pt;}
._18{width:27.424640pt;}
._15{width:28.472320pt;}
._16{width:29.722240pt;}
._21{width:31.500160pt;}
._27{width:32.775040pt;}
._2e{width:34.106240pt;}
._26{width:35.643520pt;}
._32{width:37.396480pt;}
._2d{width:38.352640pt;}
._3f{width:39.357867pt;}
._3a{width:40.477440pt;}
._34{width:41.911680pt;}
._31{width:43.239680pt;}
._29{width:44.142720pt;}
._35{width:45.364480pt;}
._28{width:46.745600pt;}
._1d{width:48.073600pt;}
._1e{width:49.401600pt;}
._30{width:50.785920pt;}
._3c{width:52.829440pt;}
._3b{width:53.757440pt;}
._25{width:54.979200pt;}
._33{width:57.094613pt;}
._3{width:58.218667pt;}
._2b{width:59.122560pt;}
._2c{width:60.397440pt;}
._2f{width:61.728640pt;}
._36{width:63.050240pt;}
._1c{width:65.423360pt;}
._1b{width:66.453120pt;}
._39{width:76.971947pt;}
._3d{width:92.935040pt;}
._38{width:126.903680pt;}
._37{width:174.488960pt;}
._4{width:177.440000pt;}
._23{width:254.106667pt;}
._3e{width:475.105280pt;}
._6{width:671.978667pt;}
.fs2{font-size:5.120000pt;}
.fs13{font-size:5.333333pt;}
.fsf{font-size:10.880000pt;}
.fs6{font-size:16.000000pt;}
.fsd{font-size:21.120000pt;}
.fs12{font-size:24.320000pt;}
.fs7{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsc{font-size:33.730624pt;}
.fs11{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fsb{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs10{font-size:67.461249pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y6d{bottom:-223.546667pt;}
.y6c{bottom:-193.466667pt;}
.y6b{bottom:-163.546667pt;}
.y7b{bottom:-137.946667pt;}
.y6a{bottom:-133.600000pt;}
.y7a{bottom:-107.986667pt;}
.y69{bottom:-103.520000pt;}
.y79{bottom:-77.906667pt;}
.y68{bottom:-73.600000pt;}
.y78{bottom:-47.986667pt;}
.y67{bottom:-43.520000pt;}
.y60{bottom:-25.466667pt;}
.y3c{bottom:-24.320000pt;}
.y77{bottom:-17.906667pt;}
.y7d{bottom:-15.931333pt;}
.y66{bottom:-13.600000pt;}
.y0{bottom:0.000000pt;}
.y25d{bottom:1.633333pt;}
.y65{bottom:2.400000pt;}
.y5d{bottom:3.360000pt;}
.y2{bottom:3.520000pt;}
.y3b{bottom:4.320000pt;}
.y5f{bottom:4.960000pt;}
.y175{bottom:5.120000pt;}
.y173{bottom:5.280000pt;}
.y171{bottom:5.600000pt;}
.y17f{bottom:7.240000pt;}
.y57{bottom:7.533333pt;}
.y19b{bottom:8.146667pt;}
.y17e{bottom:8.200000pt;}
.y19d{bottom:8.306667pt;}
.y19f{bottom:11.026667pt;}
.y7{bottom:11.040000pt;}
.y1a0{bottom:11.186667pt;}
.y17a{bottom:11.200000pt;}
.y4{bottom:12.000000pt;}
.y76{bottom:12.013333pt;}
.y3{bottom:12.160000pt;}
.y64{bottom:14.080000pt;}
.y5c{bottom:14.400000pt;}
.y56{bottom:21.453333pt;}
.y6{bottom:22.400000pt;}
.y5b{bottom:25.280000pt;}
.y63{bottom:25.600000pt;}
.y55{bottom:33.293333pt;}
.y5{bottom:33.920000pt;}
.y5a{bottom:36.000000pt;}
.y62{bottom:36.640000pt;}
.y1e3{bottom:36.800000pt;}
.y22d{bottom:37.440000pt;}
.y75{bottom:39.533333pt;}
.y54{bottom:41.133333pt;}
.y84{bottom:42.400000pt;}
.y59{bottom:51.040000pt;}
.y74{bottom:51.053333pt;}
.y178{bottom:53.280000pt;}
.yb7{bottom:53.760000pt;}
.y22c{bottom:54.080000pt;}
.y1a8{bottom:54.400000pt;}
.y1{bottom:54.560000pt;}
.y7c{bottom:56.693333pt;}
.y53{bottom:56.973333pt;}
.y83{bottom:59.040000pt;}
.y73{bottom:62.733333pt;}
.y22b{bottom:68.640000pt;}
.y1a7{bottom:71.200000pt;}
.y52{bottom:72.813333pt;}
.y82{bottom:73.600000pt;}
.y72{bottom:74.280000pt;}
.y22a{bottom:84.480000pt;}
.y1a6{bottom:85.600000pt;}
.y71{bottom:85.960000pt;}
.y113{bottom:88.480000pt;}
.y51{bottom:88.813333pt;}
.y81{bottom:90.880000pt;}
.ye9{bottom:92.320000pt;}
.y70{bottom:97.480000pt;}
.y256{bottom:98.560000pt;}
.y1a5{bottom:101.440000pt;}
.y50{bottom:104.653333pt;}
.y112{bottom:104.960000pt;}
.y255{bottom:106.560000pt;}
.y80{bottom:107.360000pt;}
.y6f{bottom:108.520000pt;}
.ye8{bottom:109.920000pt;}
.y39{bottom:112.480000pt;}
.y229{bottom:114.240000pt;}
.y212{bottom:116.160000pt;}
.y4f{bottom:116.493333pt;}
.y1c6{bottom:118.720000pt;}
.y254{bottom:119.840000pt;}
.y111{bottom:121.600000pt;}
.yb5{bottom:124.160000pt;}
.y4e{bottom:124.333333pt;}
.ye7{bottom:127.680000pt;}
.y38{bottom:130.080000pt;}
.y228{bottom:131.840000pt;}
.y211{bottom:133.760000pt;}
.y1c5{bottom:136.320000pt;}
.y253{bottom:137.440000pt;}
.y110{bottom:138.080000pt;}
.y1e2{bottom:138.240000pt;}
.y4d{bottom:140.200000pt;}
.yb4{bottom:141.760000pt;}
.ye6{bottom:145.306667pt;}
.y145{bottom:147.066667pt;}
.y37{bottom:147.706667pt;}
.y227{bottom:149.466667pt;}
.y16f{bottom:150.906667pt;}
.y210{bottom:151.386667pt;}
.y1c4{bottom:153.946667pt;}
.y10f{bottom:154.746667pt;}
.y252{bottom:155.066667pt;}
.y1e1{bottom:155.866667pt;}
.y4c{bottom:156.040000pt;}
.yb3{bottom:159.386667pt;}
.y1a4{bottom:161.626667pt;}
.y144{bottom:163.546667pt;}
.ye5{bottom:163.706667pt;}
.y36{bottom:165.306667pt;}
.y226{bottom:167.226667pt;}
.y16e{bottom:168.506667pt;}
.y20f{bottom:168.986667pt;}
.y10e{bottom:171.226667pt;}
.y1c3{bottom:171.546667pt;}
.y4b{bottom:171.880000pt;}
.y251{bottom:172.826667pt;}
.y1e0{bottom:173.466667pt;}
.y1a3{bottom:174.746667pt;}
.yb2{bottom:177.146667pt;}
.y143{bottom:180.186667pt;}
.ye4{bottom:181.146667pt;}
.y35{bottom:182.906667pt;}
.y4a{bottom:183.720000pt;}
.y225{bottom:184.826667pt;}
.y1a2{bottom:185.466667pt;}
.y16d{bottom:186.266667pt;}
.y20e{bottom:186.746667pt;}
.y10d{bottom:187.706667pt;}
.y1c2{bottom:189.306667pt;}
.y250{bottom:190.426667pt;}
.y1df{bottom:191.066667pt;}
.y49{bottom:191.560000pt;}
.ye3{bottom:192.826667pt;}
.yb1{bottom:194.746667pt;}
.y1a1{bottom:196.186667pt;}
.y142{bottom:198.426667pt;}
.y34{bottom:200.666667pt;}
.y224{bottom:202.426667pt;}
.y16c{bottom:203.866667pt;}
.y10c{bottom:204.346667pt;}
.y19e{bottom:206.760000pt;}
.y1c1{bottom:206.906667pt;}
.y48{bottom:207.560000pt;}
.y24f{bottom:208.026667pt;}
.y1de{bottom:208.826667pt;}
.ye2{bottom:210.586667pt;}
.yb0{bottom:212.346667pt;}
.y141{bottom:215.706667pt;}
.y33{bottom:218.266667pt;}
.y223{bottom:220.026667pt;}
.y10b{bottom:220.826667pt;}
.y16b{bottom:221.466667pt;}
.y20d{bottom:221.946667pt;}
.y47{bottom:223.400000pt;}
.y1c0{bottom:224.506667pt;}
.y24e{bottom:225.626667pt;}
.y140{bottom:226.106667pt;}
.y1dd{bottom:226.426667pt;}
.ye1{bottom:228.186667pt;}
.yaf{bottom:229.946667pt;}
.y25c{bottom:235.066667pt;}
.y32{bottom:235.866667pt;}
.y19c{bottom:236.680000pt;}
.y10a{bottom:237.466667pt;}
.y222{bottom:237.626667pt;}
.y16a{bottom:239.066667pt;}
.y46{bottom:239.240000pt;}
.y20c{bottom:239.546667pt;}
.y1bf{bottom:242.106667pt;}
.y13f{bottom:242.586667pt;}
.y24d{bottom:243.226667pt;}
.y1dc{bottom:244.026667pt;}
.ye0{bottom:246.586667pt;}
.yae{bottom:247.546667pt;}
.y31{bottom:253.466667pt;}
.y109{bottom:253.946667pt;}
.y45{bottom:255.080000pt;}
.y221{bottom:255.386667pt;}
.y169{bottom:256.666667pt;}
.y20b{bottom:257.146667pt;}
.y13e{bottom:259.226667pt;}
.y1be{bottom:259.706667pt;}
.y1db{bottom:261.626667pt;}
.y24c{bottom:261.786667pt;}
.y19a{bottom:262.120000pt;}
.y25b{bottom:262.266667pt;}
.yad{bottom:265.306667pt;}
.ydf{bottom:267.706667pt;}
.y108{bottom:270.586667pt;}
.y44{bottom:270.920000pt;}
.y30{bottom:271.066667pt;}
.y220{bottom:272.986667pt;}
.y168{bottom:274.266667pt;}
.y20a{bottom:274.906667pt;}
.y13d{bottom:275.706667pt;}
.y1bd{bottom:277.466667pt;}
.y1da{bottom:279.226667pt;}
.y24b{bottom:282.106667pt;}
.yac{bottom:282.906667pt;}
.y43{bottom:286.920000pt;}
.y107{bottom:287.066667pt;}
.y2f{bottom:288.826667pt;}
.y25a{bottom:289.626667pt;}
.y21f{bottom:290.586667pt;}
.y199{bottom:291.866667pt;}
.y167{bottom:292.026667pt;}
.y13c{bottom:292.346667pt;}
.y209{bottom:292.506667pt;}
.y1bc{bottom:295.066667pt;}
.y1d9{bottom:296.986667pt;}
.y42{bottom:298.760000pt;}
.y24a{bottom:299.706667pt;}
.yab{bottom:300.506667pt;}
.y106{bottom:303.546667pt;}
.yde{bottom:304.026667pt;}
.y2e{bottom:306.426667pt;}
.y41{bottom:306.600000pt;}
.y21e{bottom:308.186667pt;}
.y13b{bottom:308.826667pt;}
.y166{bottom:309.626667pt;}
.y208{bottom:310.106667pt;}
.y1bb{bottom:312.666667pt;}
.y1d8{bottom:314.586667pt;}
.y259{bottom:316.826667pt;}
.y249{bottom:317.306667pt;}
.yaa{bottom:318.106667pt;}
.y105{bottom:320.186667pt;}
.ydd{bottom:321.786667pt;}
.y40{bottom:322.440000pt;}
.y2d{bottom:324.026667pt;}
.y198{bottom:324.186667pt;}
.y13a{bottom:325.306667pt;}
.y21d{bottom:325.786667pt;}
.y165{bottom:327.226667pt;}
.y207{bottom:327.706667pt;}
.y1ba{bottom:330.266667pt;}
.y1d7{bottom:332.186667pt;}
.ya9{bottom:335.706667pt;}
.y104{bottom:336.666667pt;}
.y3f{bottom:338.320000pt;}
.ydc{bottom:339.386667pt;}
.y2c{bottom:341.626667pt;}
.y197{bottom:341.786667pt;}
.y139{bottom:341.946667pt;}
.y21c{bottom:343.386667pt;}
.y258{bottom:344.026667pt;}
.y164{bottom:344.826667pt;}
.y206{bottom:345.306667pt;}
.y1b9{bottom:347.866667pt;}
.y1d6{bottom:349.826667pt;}
.y103{bottom:353.346667pt;}
.ya8{bottom:353.506667pt;}
.y3e{bottom:354.160000pt;}
.ydb{bottom:357.026667pt;}
.y138{bottom:358.466667pt;}
.y2b{bottom:359.266667pt;}
.y196{bottom:359.586667pt;}
.y21b{bottom:361.186667pt;}
.y163{bottom:362.466667pt;}
.y205{bottom:363.106667pt;}
.y1b8{bottom:365.666667pt;}
.y1d5{bottom:367.426667pt;}
.y102{bottom:369.826667pt;}
.ya7{bottom:371.106667pt;}
.y257{bottom:371.266667pt;}
.y248{bottom:372.226667pt;}
.yda{bottom:374.626667pt;}
.y137{bottom:375.106667pt;}
.y2a{bottom:377.026667pt;}
.y195{bottom:377.186667pt;}
.y21a{bottom:378.786667pt;}
.y162{bottom:380.226667pt;}
.y204{bottom:380.706667pt;}
.y1b7{bottom:383.266667pt;}
.y1d4{bottom:385.186667pt;}
.y101{bottom:386.306667pt;}
.ya6{bottom:388.706667pt;}
.y247{bottom:389.826667pt;}
.y136{bottom:391.586667pt;}
.yd9{bottom:392.226667pt;}
.y29{bottom:394.626667pt;}
.y194{bottom:394.786667pt;}
.y219{bottom:396.386667pt;}
.y161{bottom:397.826667pt;}
.y203{bottom:398.306667pt;}
.y1b6{bottom:400.866667pt;}
.y1d3{bottom:402.786667pt;}
.y100{bottom:402.946667pt;}
.ya5{bottom:406.306667pt;}
.y135{bottom:408.226667pt;}
.yd8{bottom:409.986667pt;}
.y193{bottom:412.386667pt;}
.y28{bottom:413.026667pt;}
.y218{bottom:413.986667pt;}
.y160{bottom:415.426667pt;}
.y202{bottom:415.906667pt;}
.y1b5{bottom:418.466667pt;}
.yff{bottom:419.426667pt;}
.y1d2{bottom:420.386667pt;}
.ya4{bottom:423.906667pt;}
.y134{bottom:424.706667pt;}
.y3d{bottom:427.093333pt;}
.yd7{bottom:427.586667pt;}
.y192{bottom:429.986667pt;}
.y27{bottom:431.106667pt;}
.y217{bottom:431.586667pt;}
.y15f{bottom:433.026667pt;}
.y201{bottom:433.506667pt;}
.yfe{bottom:436.066667pt;}
.y1d1{bottom:437.986667pt;}
.y26{bottom:439.906667pt;}
.y133{bottom:441.186667pt;}
.ya3{bottom:441.666667pt;}
.y246{bottom:444.546667pt;}
.yd6{bottom:445.186667pt;}
.y25{bottom:446.626667pt;}
.y191{bottom:447.746667pt;}
.y216{bottom:449.346667pt;}
.y15e{bottom:450.626667pt;}
.y200{bottom:451.266667pt;}
.yfd{bottom:452.546667pt;}
.y1b4{bottom:453.826667pt;}
.y1d0{bottom:455.586667pt;}
.y132{bottom:457.826667pt;}
.y24{bottom:458.946667pt;}
.ya2{bottom:459.266667pt;}
.y245{bottom:462.306667pt;}
.yd5{bottom:462.786667pt;}
.y190{bottom:465.346667pt;}
.y23{bottom:466.626667pt;}
.y215{bottom:466.946667pt;}
.y15d{bottom:468.386667pt;}
.y1ff{bottom:468.866667pt;}
.yfc{bottom:469.026667pt;}
.y1b3{bottom:471.426667pt;}
.y1cf{bottom:473.346667pt;}
.y131{bottom:474.306667pt;}
.ya1{bottom:476.866667pt;}
.y6e{bottom:479.573333pt;}
.y244{bottom:479.906667pt;}
.yd4{bottom:480.386667pt;}
.y18f{bottom:482.946667pt;}
.y214{bottom:484.546667pt;}
.yfb{bottom:485.666667pt;}
.y15c{bottom:485.986667pt;}
.y1fe{bottom:486.466667pt;}
.y22{bottom:487.266667pt;}
.y1b2{bottom:489.026667pt;}
.y130{bottom:490.946667pt;}
.ya0{bottom:494.466667pt;}
.y243{bottom:497.506667pt;}
.yd3{bottom:498.146667pt;}
.y18e{bottom:500.546667pt;}
.yfa{bottom:502.146667pt;}
.y15b{bottom:503.586667pt;}
.y1fd{bottom:504.066667pt;}
.y1b1{bottom:506.626667pt;}
.y12f{bottom:507.426667pt;}
.y21{bottom:508.066667pt;}
.y1ce{bottom:508.546667pt;}
.y9f{bottom:512.066667pt;}
.yd2{bottom:515.746667pt;}
.y242{bottom:515.906667pt;}
.y18d{bottom:518.146667pt;}
.yf9{bottom:518.786667pt;}
.y213{bottom:520.706667pt;}
.y15a{bottom:521.186667pt;}
.y1fc{bottom:521.666667pt;}
.y12e{bottom:523.906667pt;}
.y1b0{bottom:524.226667pt;}
.y1cd{bottom:526.146667pt;}
.y20{bottom:528.706667pt;}
.y9e{bottom:529.826667pt;}
.yd1{bottom:533.346667pt;}
.yf8{bottom:535.266667pt;}
.y18c{bottom:535.906667pt;}
.y159{bottom:538.786667pt;}
.y1fb{bottom:539.426667pt;}
.y12d{bottom:540.546667pt;}
.y1af{bottom:541.986667pt;}
.y1cc{bottom:543.746667pt;}
.y9d{bottom:547.426667pt;}
.y1f{bottom:549.346667pt;}
.yd0{bottom:550.946667pt;}
.yf7{bottom:551.906667pt;}
.y241{bottom:552.226667pt;}
.y18b{bottom:553.533333pt;}
.y158{bottom:556.573333pt;}
.y12c{bottom:557.053333pt;}
.y1ae{bottom:559.613333pt;}
.y1cb{bottom:561.533333pt;}
.y9c{bottom:565.053333pt;}
.yf6{bottom:568.413333pt;}
.ycf{bottom:568.573333pt;}
.y1e{bottom:570.173333pt;}
.y240{bottom:570.813333pt;}
.y18a{bottom:571.133333pt;}
.y12b{bottom:573.693333pt;}
.y1fa{bottom:574.653333pt;}
.y157{bottom:574.973333pt;}
.y1ad{bottom:577.213333pt;}
.y1ca{bottom:579.133333pt;}
.y9b{bottom:582.653333pt;}
.yf5{bottom:584.893333pt;}
.yce{bottom:586.333333pt;}
.y189{bottom:588.733333pt;}
.y12a{bottom:590.173333pt;}
.y1d{bottom:590.813333pt;}
.y1f9{bottom:592.253333pt;}
.y1ac{bottom:594.813333pt;}
.y1c9{bottom:596.733333pt;}
.y9a{bottom:600.253333pt;}
.yf4{bottom:601.533333pt;}
.ycd{bottom:603.933333pt;}
.y188{bottom:606.333333pt;}
.y129{bottom:606.653333pt;}
.y23f{bottom:607.133333pt;}
.y1f8{bottom:609.853333pt;}
.y156{bottom:610.333333pt;}
.y1ab{bottom:613.213333pt;}
.y1c8{bottom:614.333333pt;}
.y99{bottom:618.013333pt;}
.ycc{bottom:621.533333pt;}
.y187{bottom:621.693333pt;}
.y128{bottom:623.293333pt;}
.y23e{bottom:624.733333pt;}
.y155{bottom:626.973333pt;}
.y1f7{bottom:627.613333pt;}
.y1c7{bottom:631.933333pt;}
.y186{bottom:633.213333pt;}
.yf3{bottom:634.653333pt;}
.y98{bottom:635.613333pt;}
.ycb{bottom:639.133333pt;}
.y1c{bottom:639.613333pt;}
.y127{bottom:639.773333pt;}
.y23d{bottom:642.333333pt;}
.y58{bottom:642.653333pt;}
.y154{bottom:643.453333pt;}
.y185{bottom:643.773333pt;}
.y1f6{bottom:645.213333pt;}
.yf2{bottom:651.133333pt;}
.y97{bottom:653.213333pt;}
.y1b{bottom:653.373333pt;}
.y126{bottom:656.413333pt;}
.yca{bottom:656.733333pt;}
.y23c{bottom:659.933333pt;}
.y153{bottom:660.093333pt;}
.y184{bottom:661.693333pt;}
.y1aa{bottom:662.653333pt;}
.y1f5{bottom:662.813333pt;}
.y1a{bottom:667.133333pt;}
.yf1{bottom:667.613333pt;}
.y96{bottom:670.813333pt;}
.y125{bottom:672.893333pt;}
.yc9{bottom:674.493333pt;}
.y152{bottom:676.573333pt;}
.y23b{bottom:678.493333pt;}
.y183{bottom:679.773333pt;}
.y1f4{bottom:680.413333pt;}
.y19{bottom:680.893333pt;}
.yf0{bottom:684.253333pt;}
.y95{bottom:688.413333pt;}
.y124{bottom:689.533333pt;}
.yc8{bottom:692.093333pt;}
.y151{bottom:693.053333pt;}
.y18{bottom:694.813333pt;}
.y182{bottom:697.693333pt;}
.y1f3{bottom:698.013333pt;}
.yef{bottom:700.733333pt;}
.y17{bottom:704.573333pt;}
.y123{bottom:706.013333pt;}
.y94{bottom:706.173333pt;}
.yc7{bottom:709.693333pt;}
.y23a{bottom:714.813333pt;}
.y61{bottom:715.133333pt;}
.y181{bottom:715.773333pt;}
.y16{bottom:716.733333pt;}
.yee{bottom:717.373333pt;}
.y122{bottom:722.493333pt;}
.y93{bottom:723.773333pt;}
.y150{bottom:726.173333pt;}
.yc6{bottom:727.293333pt;}
.y15{bottom:727.933333pt;}
.y239{bottom:732.413333pt;}
.y1f2{bottom:733.373333pt;}
.y180{bottom:733.693333pt;}
.yed{bottom:733.853333pt;}
.y14{bottom:738.973333pt;}
.y121{bottom:739.133333pt;}
.y92{bottom:741.373333pt;}
.y14f{bottom:742.813333pt;}
.yc5{bottom:744.893333pt;}
.y238{bottom:750.013333pt;}
.yec{bottom:750.333333pt;}
.y13{bottom:750.493333pt;}
.y1f1{bottom:750.973333pt;}
.y17d{bottom:751.773333pt;}
.y120{bottom:755.613333pt;}
.y91{bottom:759.013333pt;}
.y14e{bottom:759.333333pt;}
.yc4{bottom:762.693333pt;}
.y12{bottom:762.853333pt;}
.y237{bottom:768.453333pt;}
.y1f0{bottom:768.613333pt;}
.yeb{bottom:768.773333pt;}
.y11f{bottom:772.293333pt;}
.y11{bottom:774.213333pt;}
.y14d{bottom:775.813333pt;}
.y90{bottom:776.613333pt;}
.yc3{bottom:780.293333pt;}
.y1ef{bottom:786.213333pt;}
.yea{bottom:786.373333pt;}
.y11e{bottom:788.773333pt;}
.y236{bottom:789.733333pt;}
.y14c{bottom:792.453333pt;}
.y177{bottom:793.733333pt;}
.y8f{bottom:794.373333pt;}
.yc2{bottom:797.893333pt;}
.y10{bottom:798.053333pt;}
.y1ee{bottom:803.973333pt;}
.y11d{bottom:805.253333pt;}
.yf{bottom:807.973333pt;}
.y14b{bottom:808.933333pt;}
.y17c{bottom:811.813333pt;}
.y8e{bottom:811.973333pt;}
.yc1{bottom:815.493333pt;}
.y1ed{bottom:821.573333pt;}
.y11c{bottom:821.893333pt;}
.ye{bottom:825.413333pt;}
.y14a{bottom:825.573333pt;}
.y235{bottom:826.053333pt;}
.y8d{bottom:829.573333pt;}
.yc0{bottom:833.093333pt;}
.y11b{bottom:838.373333pt;}
.y1ec{bottom:839.173333pt;}
.y17b{bottom:841.733333pt;}
.y149{bottom:842.053333pt;}
.y234{bottom:843.653333pt;}
.y8c{bottom:847.173333pt;}
.yd{bottom:848.773333pt;}
.ybf{bottom:850.853333pt;}
.y11a{bottom:855.013333pt;}
.y1eb{bottom:856.773333pt;}
.yc{bottom:858.693333pt;}
.y179{bottom:859.813333pt;}
.y233{bottom:861.253333pt;}
.y8b{bottom:864.773333pt;}
.ybe{bottom:868.453333pt;}
.y119{bottom:871.493333pt;}
.y1ea{bottom:874.373333pt;}
.y148{bottom:875.173333pt;}
.y232{bottom:878.853333pt;}
.yb{bottom:879.333333pt;}
.y8a{bottom:882.533333pt;}
.ybd{bottom:886.053333pt;}
.y118{bottom:887.973333pt;}
.y176{bottom:889.733333pt;}
.y1e9{bottom:892.133333pt;}
.y147{bottom:893.413333pt;}
.ya{bottom:896.613333pt;}
.y89{bottom:900.133333pt;}
.ybc{bottom:903.653333pt;}
.y117{bottom:904.613333pt;}
.y174{bottom:907.813333pt;}
.y1e8{bottom:909.733333pt;}
.y146{bottom:910.693333pt;}
.y231{bottom:914.213333pt;}
.y88{bottom:917.733333pt;}
.y9{bottom:921.093333pt;}
.ybb{bottom:921.253333pt;}
.y172{bottom:925.733333pt;}
.y1e7{bottom:927.333333pt;}
.y230{bottom:931.813333pt;}
.y87{bottom:935.333333pt;}
.y116{bottom:937.733333pt;}
.yba{bottom:939.013333pt;}
.y1e6{bottom:944.933333pt;}
.y8{bottom:945.093333pt;}
.y22f{bottom:949.413333pt;}
.y86{bottom:952.933333pt;}
.y115{bottom:954.213333pt;}
.yb9{bottom:956.613333pt;}
.y1e5{bottom:962.560000pt;}
.y22e{bottom:968.000000pt;}
.y1a9{bottom:969.120000pt;}
.y170{bottom:969.440000pt;}
.y85{bottom:970.720000pt;}
.y114{bottom:970.880000pt;}
.yb8{bottom:974.240000pt;}
.y5e{bottom:974.400000pt;}
.y1e4{bottom:980.160000pt;}
.y7f{bottom:986.080000pt;}
.yb6{bottom:995.680000pt;}
.y7e{bottom:1000.800000pt;}
.y3a{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h37{height:5.562500pt;}
.h2{height:12.000000pt;}
.h19{height:14.880000pt;}
.hb{height:15.703125pt;}
.h15{height:16.125000pt;}
.h2d{height:17.266667pt;}
.h32{height:17.280000pt;}
.h2c{height:18.426667pt;}
.h21{height:19.680000pt;}
.h14{height:20.728125pt;}
.h31{height:23.220000pt;}
.h35{height:23.346667pt;}
.h34{height:23.666667pt;}
.h29{height:26.368125pt;}
.h1e{height:26.381250pt;}
.he{height:27.523125pt;}
.h30{height:29.266667pt;}
.h16{height:32.250000pt;}
.h12{height:35.114107pt;}
.h2e{height:35.186667pt;}
.h5{height:36.431250pt;}
.h27{height:36.920625pt;}
.h20{height:37.410000pt;}
.h33{height:38.153511pt;}
.h10{height:39.571875pt;}
.h11{height:41.442606pt;}
.hc{height:42.084375pt;}
.h4{height:42.399867pt;}
.h1d{height:43.031250pt;}
.h1a{height:43.215000pt;}
.h23{height:46.420000pt;}
.h13{height:47.109375pt;}
.h17{height:47.621250pt;}
.h1b{height:48.375000pt;}
.hf{height:49.148438pt;}
.h3{height:52.134375pt;}
.h2b{height:52.478750pt;}
.h9{height:53.535000pt;}
.h18{height:54.598989pt;}
.h36{height:55.298750pt;}
.ha{height:57.787500pt;}
.h1f{height:58.240000pt;}
.h24{height:58.563750pt;}
.h28{height:62.781250pt;}
.hd{height:64.500000pt;}
.h22{height:66.625000pt;}
.h26{height:66.750000pt;}
.h2a{height:70.228214pt;}
.h7{height:76.964840pt;}
.h8{height:85.785000pt;}
.h2f{height:113.266667pt;}
.h25{height:118.280000pt;}
.h1c{height:365.026667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w11{width:38.400000pt;}
.w13{width:41.746667pt;}
.w15{width:41.778667pt;}
.w12{width:41.792000pt;}
.w14{width:41.906667pt;}
.w17{width:45.906667pt;}
.w16{width:52.946667pt;}
.w3{width:72.952000pt;}
.wf{width:81.626667pt;}
.wd{width:100.146667pt;}
.wc{width:100.672000pt;}
.w10{width:106.098667pt;}
.we{width:116.658667pt;}
.w9{width:137.306667pt;}
.wb{width:148.333333pt;}
.wa{width:160.346667pt;}
.w7{width:160.826667pt;}
.w6{width:473.706667pt;}
.w4{width:568.760000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:663.000000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x41{left:3.780000pt;}
.x2{left:7.192000pt;}
.xd{left:9.592000pt;}
.x37{left:11.360000pt;}
.x22{left:13.426667pt;}
.x3e{left:14.400000pt;}
.x20{left:15.840000pt;}
.x13{left:18.893333pt;}
.x1e{left:19.986667pt;}
.x27{left:23.680000pt;}
.x2b{left:26.240000pt;}
.x30{left:27.360000pt;}
.x29{left:28.800000pt;}
.x32{left:36.146667pt;}
.x26{left:37.440000pt;}
.x31{left:39.200000pt;}
.x2a{left:40.346667pt;}
.x28{left:41.786667pt;}
.x24{left:46.106667pt;}
.x2c{left:47.680000pt;}
.x2d{left:49.906667pt;}
.x2f{left:55.706667pt;}
.x2e{left:58.266667pt;}
.x3{left:65.746667pt;}
.xc{left:72.680000pt;}
.x12{left:82.760000pt;}
.xf{left:83.880000pt;}
.x1{left:96.040000pt;}
.x3f{left:99.552000pt;}
.x15{left:105.152000pt;}
.x7{left:106.272000pt;}
.x1a{left:108.032000pt;}
.x6{left:113.792000pt;}
.xa{left:117.952000pt;}
.x19{left:120.032000pt;}
.x1d{left:142.920000pt;}
.x1c{left:144.026667pt;}
.x4{left:169.000000pt;}
.x34{left:190.440000pt;}
.x33{left:192.026667pt;}
.xe{left:269.186667pt;}
.x10{left:275.866667pt;}
.x9{left:276.866667pt;}
.x1f{left:291.266667pt;}
.x35{left:296.546667pt;}
.x11{left:330.293333pt;}
.x36{left:334.946667pt;}
.x38{left:376.746667pt;}
.x21{left:391.946667pt;}
.x5{left:396.893333pt;}
.x8{left:402.013333pt;}
.x16{left:416.573333pt;}
.x39{left:418.506667pt;}
.xb{left:436.253333pt;}
.x3a{left:460.426667pt;}
.x23{left:492.106667pt;}
.x3b{left:502.186667pt;}
.x3c{left:543.973333pt;}
.x14{left:551.336000pt;}
.x1b{left:557.253333pt;}
.x18{left:573.733333pt;}
.x3d{left:596.933333pt;}
.x25{left:608.773333pt;}
.x17{left:710.400000pt;}
.x40{left:737.280000pt;}
}




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