
    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_e9c0cba6ae2062b182165c96.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_4e4d246504ca8dccb52b2ce0.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_8f2851ed6fd09635882f2274.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_b0b15e2014e9299aee880581.woff')format("woff");}.ff4{font-family:ff4;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: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_a7d0f44a89b09c4e14590f11.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_e1685977ce6655de0bce3a79.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_1d194ada85fdf55da4cc60dc.woff')format("woff");}.ff8{font-family:ff8;line-height:1.050293;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_b010e47a581509ad388b8702.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_cb831bfc45030f6d94299355.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_17bbfb3f72a322b1797cf915.woff')format("woff");}.ffc{font-family:ffc;line-height:0.708008;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0f31720e86d7001c818442b7.woff')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9b03f4b4327374dcb79e06db.woff')format("woff");}.ffe{font-family:ffe;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_602c36a21f50984ae6e4eb56.woff')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_9722e68ac3bf7f484b6f1e34.woff')format("woff");}.ff10{font-family:ff10;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);}
.v3{vertical-align:-78.480000px;}
.v2{vertical-align:-18.000000px;}
.v6{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.000000px;}
.v4{vertical-align:21.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.269400px;}
.ls14{letter-spacing:-0.259800px;}
.lsb{letter-spacing:-0.223800px;}
.ls18{letter-spacing:-0.181200px;}
.lsd{letter-spacing:-0.150600px;}
.ls10{letter-spacing:-0.053280px;}
.lsa{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls17{letter-spacing:0.045360px;}
.ls1a{letter-spacing:0.106800px;}
.lse{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.144720px;}
.ls1b{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.259920px;}
.ls6{letter-spacing:0.270720px;}
.ls1c{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.493920px;}
.ls13{letter-spacing:0.513600px;}
.ls19{letter-spacing:0.666000px;}
.ls15{letter-spacing:0.720000px;}
.ls1d{letter-spacing:1.620000px;}
.ls2{letter-spacing:15.300000px;}
.ls3{letter-spacing:47.700000px;}
.ls0{letter-spacing:71.280000px;}
.ls1{letter-spacing:71.400000px;}
.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;}
}
.ws16{word-spacing:-59.760000px;}
.ws14{word-spacing:-48.240000px;}
.wsa{word-spacing:-18.000000px;}
.ws8{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.ws18{word-spacing:-15.093600px;}
.ws15{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.680200px;}
.ws7{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.500000px;}
.ws10{word-spacing:-12.420000px;}
.wse{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.878800px;}
.ws12{word-spacing:-11.836200px;}
.wsf{word-spacing:-11.790600px;}
.ws3{word-spacing:-11.700000px;}
.ws0{word-spacing:-10.440000px;}
.wsd{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.560000px;}
.ws11{word-spacing:-6.840000px;}
.ws6{word-spacing:0.000000px;}
._6{margin-left:-59.580000px;}
._8{margin-left:-3.323520px;}
._2{margin-left:-1.457280px;}
._0{width:1.044000px;}
._1{width:2.424480px;}
._c{width:3.455280px;}
._e{width:5.210640px;}
._12{width:6.507360px;}
._14{width:7.884000px;}
._13{width:9.613200px;}
._11{width:10.880400px;}
._b{width:11.892240px;}
._a{width:13.685040px;}
._15{width:15.029280px;}
._21{width:16.115760px;}
._1a{width:17.151120px;}
._9{width:18.943920px;}
._22{width:20.230560px;}
._1d{width:21.628080px;}
._1b{width:22.947840px;}
._d{width:24.675840px;}
._18{width:26.223840px;}
._f{width:27.270000px;}
._10{width:29.190000px;}
._1e{width:30.270240px;}
._1c{width:31.644000px;}
._25{width:33.139440px;}
._2a{width:34.264800px;}
._17{width:35.496000px;}
._16{width:36.581760px;}
._23{width:37.708560px;}
._24{width:39.294000px;}
._29{width:40.682640px;}
._28{width:42.401520px;}
._27{width:43.744320px;}
._2b{width:44.791920px;}
._32{width:46.282320px;}
._20{width:47.979840px;}
._1f{width:49.062960px;}
._34{width:50.616720px;}
._2c{width:51.811920px;}
._26{width:53.664480px;}
._3a{width:54.799920px;}
._30{width:56.473200px;}
._2f{width:57.866400px;}
._35{width:59.645520px;}
._3d{width:61.134480px;}
._3e{width:62.292960px;}
._2e{width:63.704160px;}
._4{width:65.496000px;}
._3f{width:68.121360px;}
._33{width:69.441120px;}
._3{width:71.507040px;}
._2d{width:72.966960px;}
._31{width:75.656160px;}
._40{width:84.620160px;}
._39{width:85.875120px;}
._36{width:113.304960px;}
._38{width:125.256000px;}
._3c{width:133.578000px;}
._37{width:157.411440px;}
._41{width:173.961360px;}
._5{width:199.620000px;}
._19{width:285.870000px;}
._7{width:755.976000px;}
._3b{width:828.245520px;}
.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;}
.fs10{font-size:27.360000px;}
.fs7{font-size:30.240000px;}
.fse{font-size:36.000000px;}
.fsb{font-size:37.946952px;}
.fsf{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs6{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;}
.y70{bottom:-251.490000px;}
.y6f{bottom:-217.830000px;}
.y6e{bottom:-183.990000px;}
.y7f{bottom:-168.135000px;}
.y6d{bottom:-150.330000px;}
.y7e{bottom:-134.295000px;}
.y6c{bottom:-116.670000px;}
.y7d{bottom:-100.635000px;}
.y6b{bottom:-82.830000px;}
.y7c{bottom:-66.795000px;}
.y6a{bottom:-49.170000px;}
.y7b{bottom:-33.135000px;}
.y63{bottom:-28.650000px;}
.y3c{bottom:-27.360000px;}
.y81{bottom:-17.922750px;}
.y69{bottom:-15.300000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:0.705000px;}
.y59{bottom:1.425000px;}
.y271{bottom:1.837500px;}
.y68{bottom:2.700000px;}
.y126{bottom:2.880000px;}
.y138{bottom:3.045000px;}
.y123{bottom:3.060000px;}
.y2{bottom:3.960000px;}
.y14a{bottom:4.680000px;}
.y157{bottom:4.845000px;}
.y3b{bottom:4.860000px;}
.y153{bottom:4.890000px;}
.y155{bottom:5.025000px;}
.y150{bottom:5.040000px;}
.y62{bottom:5.580000px;}
.y148{bottom:7.560000px;}
.y11f{bottom:8.460000px;}
.y121{bottom:10.080000px;}
.y7{bottom:12.420000px;}
.y17a{bottom:12.960000px;}
.y4{bottom:13.500000px;}
.y3{bottom:13.680000px;}
.y58{bottom:14.565000px;}
.y67{bottom:15.660000px;}
.y132{bottom:17.280000px;}
.y12e{bottom:17.460000px;}
.y57{bottom:23.565000px;}
.y13e{bottom:24.660000px;}
.y6{bottom:25.200000px;}
.y60{bottom:28.095000px;}
.y66{bottom:28.800000px;}
.y79{bottom:31.710000px;}
.y5{bottom:38.160000px;}
.y5f{bottom:40.515000px;}
.y65{bottom:41.040000px;}
.y56{bottom:41.385000px;}
.y78{bottom:44.670000px;}
.y85{bottom:46.260000px;}
.y5e{bottom:52.575000px;}
.y77{bottom:57.630000px;}
.y55{bottom:59.205000px;}
.ye8{bottom:60.480000px;}
.y1{bottom:61.380000px;}
.y84{bottom:62.640000px;}
.y80{bottom:63.780000px;}
.y5d{bottom:64.635000px;}
.y76{bottom:70.770000px;}
.y54{bottom:72.525000px;}
.y5c{bottom:76.695000px;}
.y83{bottom:80.460000px;}
.y53{bottom:81.345000px;}
.y75{bottom:83.730000px;}
.y5b{bottom:93.825000px;}
.y74{bottom:96.870000px;}
.y52{bottom:99.165000px;}
.y1d5{bottom:100.080000px;}
.y1a3{bottom:103.680000px;}
.y1e8{bottom:104.040000px;}
.y165{bottom:108.180000px;}
.y73{bottom:109.830000px;}
.y270{bottom:112.860000px;}
.ye7{bottom:115.920000px;}
.y51{bottom:117.210000px;}
.y1d4{bottom:119.880000px;}
.yb6{bottom:120.960000px;}
.y39{bottom:121.680000px;}
.y72{bottom:122.250000px;}
.y237{bottom:123.120000px;}
.y1a2{bottom:123.480000px;}
.y1e7{bottom:123.840000px;}
.y164{bottom:127.980000px;}
.y26f{bottom:130.140000px;}
.y50{bottom:135.030000px;}
.ye6{bottom:135.720000px;}
.y1d3{bottom:139.680000px;}
.y236{bottom:140.400000px;}
.yb5{bottom:140.760000px;}
.y38{bottom:141.480000px;}
.y11c{bottom:141.660000px;}
.y1a1{bottom:143.280000px;}
.y1e6{bottom:143.640000px;}
.y208{bottom:144.900000px;}
.y26e{bottom:147.420000px;}
.y163{bottom:147.960000px;}
.y4f{bottom:152.850000px;}
.ye5{bottom:155.700000px;}
.y235{bottom:157.680000px;}
.y1d2{bottom:159.660000px;}
.yb4{bottom:160.560000px;}
.y37{bottom:161.280000px;}
.y11b{bottom:161.460000px;}
.y1a0{bottom:163.110000px;}
.y1e5{bottom:163.650000px;}
.y26d{bottom:164.550000px;}
.y207{bottom:164.910000px;}
.y162{bottom:167.790000px;}
.y4e{bottom:170.670000px;}
.y234{bottom:174.990000px;}
.ye4{bottom:175.530000px;}
.y1d1{bottom:179.490000px;}
.yb3{bottom:180.390000px;}
.y36{bottom:181.110000px;}
.y11a{bottom:181.290000px;}
.y26c{bottom:181.830000px;}
.y19f{bottom:182.910000px;}
.y1e4{bottom:183.450000px;}
.y206{bottom:185.610000px;}
.y161{bottom:187.590000px;}
.y4d{bottom:188.490000px;}
.y233{bottom:192.090000px;}
.ye3{bottom:195.330000px;}
.y26b{bottom:199.110000px;}
.y1d0{bottom:199.290000px;}
.yb2{bottom:200.190000px;}
.y35{bottom:200.910000px;}
.y119{bottom:201.090000px;}
.y19e{bottom:202.890000px;}
.y1e3{bottom:203.250000px;}
.y4c{bottom:206.310000px;}
.y160{bottom:207.390000px;}
.y232{bottom:209.370000px;}
.ye2{bottom:215.130000px;}
.y26a{bottom:216.390000px;}
.y1cf{bottom:219.090000px;}
.yb1{bottom:220.170000px;}
.y34{bottom:220.890000px;}
.y19d{bottom:222.690000px;}
.y1e2{bottom:223.050000px;}
.y4b{bottom:224.310000px;}
.y205{bottom:226.470000px;}
.y231{bottom:226.650000px;}
.y15f{bottom:227.190000px;}
.y269{bottom:233.670000px;}
.ye1{bottom:234.930000px;}
.y1ce{bottom:238.890000px;}
.yb0{bottom:239.970000px;}
.y33{bottom:240.690000px;}
.y118{bottom:240.870000px;}
.y4a{bottom:242.130000px;}
.y19c{bottom:242.490000px;}
.y1e1{bottom:242.850000px;}
.y230{bottom:243.930000px;}
.y204{bottom:246.270000px;}
.y15e{bottom:247.170000px;}
.y268{bottom:250.950000px;}
.ye0{bottom:254.910000px;}
.y49{bottom:255.450000px;}
.yf4{bottom:255.810000px;}
.y1cd{bottom:258.870000px;}
.yaf{bottom:259.770000px;}
.y117{bottom:260.670000px;}
.y22f{bottom:261.210000px;}
.y32{bottom:261.390000px;}
.y19b{bottom:262.290000px;}
.y1e0{bottom:262.830000px;}
.y48{bottom:264.270000px;}
.y203{bottom:266.070000px;}
.y15d{bottom:266.970000px;}
.y267{bottom:268.050000px;}
.ydf{bottom:274.710000px;}
.yf3{bottom:275.610000px;}
.y19a{bottom:278.490000px;}
.y1cc{bottom:278.670000px;}
.yae{bottom:279.570000px;}
.y116{bottom:280.470000px;}
.y31{bottom:281.730000px;}
.y47{bottom:282.090000px;}
.y1df{bottom:282.630000px;}
.y266{bottom:285.330000px;}
.y202{bottom:286.050000px;}
.y15c{bottom:286.770000px;}
.yf2{bottom:288.570000px;}
.y199{bottom:290.550000px;}
.y30{bottom:291.630000px;}
.y3d{bottom:292.365000px;}
.yde{bottom:294.510000px;}
.y22e{bottom:295.590000px;}
.y1cb{bottom:298.470000px;}
.yad{bottom:299.370000px;}
.y46{bottom:299.910000px;}
.y115{bottom:300.270000px;}
.y1de{bottom:302.430000px;}
.y265{bottom:302.610000px;}
.y198{bottom:302.790000px;}
.y2f{bottom:302.970000px;}
.y15b{bottom:304.770000px;}
.y201{bottom:305.850000px;}
.yf1{bottom:308.370000px;}
.y22d{bottom:312.870000px;}
.ydd{bottom:314.310000px;}
.y197{bottom:314.505000px;}
.y45{bottom:317.730000px;}
.y1ca{bottom:318.270000px;}
.y15a{bottom:318.630000px;}
.yac{bottom:319.350000px;}
.y264{bottom:319.890000px;}
.y114{bottom:320.070000px;}
.y1dd{bottom:322.230000px;}
.y200{bottom:325.650000px;}
.y2e{bottom:326.910000px;}
.yf0{bottom:328.170000px;}
.y22c{bottom:330.150000px;}
.y196{bottom:331.065000px;}
.ydc{bottom:334.110000px;}
.y44{bottom:335.760000px;}
.y159{bottom:336.270000px;}
.y263{bottom:337.170000px;}
.y1c9{bottom:338.070000px;}
.yab{bottom:339.150000px;}
.y113{bottom:340.050000px;}
.y1dc{bottom:342.030000px;}
.y1ff{bottom:345.450000px;}
.y22b{bottom:347.430000px;}
.y195{bottom:347.805000px;}
.yef{bottom:347.970000px;}
.y43{bottom:349.080000px;}
.y158{bottom:350.310000px;}
.y2d{bottom:350.670000px;}
.ydb{bottom:354.090000px;}
.y262{bottom:354.450000px;}
.y42{bottom:357.900000px;}
.y1c8{bottom:358.050000px;}
.y156{bottom:358.245000px;}
.yaa{bottom:358.950000px;}
.y112{bottom:359.850000px;}
.y1db{bottom:362.010000px;}
.y194{bottom:364.365000px;}
.y22a{bottom:364.710000px;}
.y1fe{bottom:365.250000px;}
.yee{bottom:367.950000px;}
.y261{bottom:371.550000px;}
.yda{bottom:373.890000px;}
.y2c{bottom:374.430000px;}
.y154{bottom:374.805000px;}
.y41{bottom:375.720000px;}
.y1c7{bottom:377.850000px;}
.ya9{bottom:378.750000px;}
.y111{bottom:379.650000px;}
.y193{bottom:380.925000px;}
.y1da{bottom:381.810000px;}
.y71{bottom:382.365000px;}
.y1fd{bottom:385.230000px;}
.yed{bottom:387.750000px;}
.y260{bottom:388.830000px;}
.y152{bottom:391.545000px;}
.y40{bottom:393.540000px;}
.yd9{bottom:393.735000px;}
.y2b{bottom:395.355000px;}
.y192{bottom:397.695000px;}
.ya8{bottom:398.595000px;}
.y229{bottom:399.135000px;}
.y110{bottom:399.495000px;}
.y1d9{bottom:401.655000px;}
.y1fc{bottom:405.075000px;}
.y25f{bottom:406.155000px;}
.yec{bottom:407.595000px;}
.y151{bottom:408.135000px;}
.y3f{bottom:411.360000px;}
.yd8{bottom:413.535000px;}
.y191{bottom:414.255000px;}
.y2a{bottom:415.155000px;}
.y228{bottom:416.415000px;}
.y1c6{bottom:417.495000px;}
.y10f{bottom:419.295000px;}
.ya7{bottom:419.475000px;}
.y1d8{bottom:421.455000px;}
.y25e{bottom:423.435000px;}
.y14f{bottom:424.695000px;}
.y1fb{bottom:424.875000px;}
.yeb{bottom:427.395000px;}
.y29{bottom:429.015000px;}
.y3e{bottom:429.180000px;}
.y190{bottom:430.815000px;}
.yd7{bottom:433.335000px;}
.y227{bottom:433.695000px;}
.y1c5{bottom:437.295000px;}
.y28{bottom:437.655000px;}
.y10e{bottom:439.275000px;}
.ya6{bottom:440.355000px;}
.y25d{bottom:440.715000px;}
.y1d7{bottom:441.255000px;}
.y14e{bottom:441.435000px;}
.y1fa{bottom:444.675000px;}
.y18f{bottom:447.555000px;}
.yea{bottom:448.275000px;}
.y226{bottom:450.975000px;}
.yd6{bottom:453.315000px;}
.y1c4{bottom:457.275000px;}
.y25c{bottom:457.815000px;}
.y14d{bottom:457.995000px;}
.y10d{bottom:459.075000px;}
.y27{bottom:460.875000px;}
.y1d6{bottom:461.235000px;}
.y18e{bottom:464.115000px;}
.y1f9{bottom:465.375000px;}
.ye9{bottom:467.895000px;}
.y225{bottom:468.255000px;}
.yd5{bottom:473.115000px;}
.y14c{bottom:474.555000px;}
.y25b{bottom:475.095000px;}
.y1c3{bottom:477.075000px;}
.y10c{bottom:478.875000px;}
.y18d{bottom:480.675000px;}
.ya5{bottom:481.035000px;}
.y26{bottom:484.275000px;}
.y224{bottom:485.355000px;}
.y14b{bottom:491.295000px;}
.y25a{bottom:492.375000px;}
.yd4{bottom:492.915000px;}
.y1c2{bottom:496.875000px;}
.y18c{bottom:497.415000px;}
.y10b{bottom:498.675000px;}
.ya4{bottom:500.835000px;}
.y223{bottom:502.635000px;}
.y1f8{bottom:506.415000px;}
.y25{bottom:507.495000px;}
.y149{bottom:507.855000px;}
.y259{bottom:509.655000px;}
.yd3{bottom:512.715000px;}
.y18b{bottom:513.975000px;}
.y1c1{bottom:516.675000px;}
.y10a{bottom:518.475000px;}
.y222{bottom:519.915000px;}
.ya3{bottom:520.635000px;}
.y147{bottom:526.035000px;}
.y1f7{bottom:526.215000px;}
.y258{bottom:526.935000px;}
.y5a{bottom:529.440000px;}
.y18a{bottom:530.535000px;}
.yd2{bottom:532.515000px;}
.y1c0{bottom:536.475000px;}
.y221{bottom:537.195000px;}
.y109{bottom:538.455000px;}
.ya2{bottom:540.435000px;}
.y257{bottom:544.215000px;}
.y1f6{bottom:546.915000px;}
.y189{bottom:547.275000px;}
.yd1{bottom:552.495000px;}
.y220{bottom:554.475000px;}
.y146{bottom:555.555000px;}
.y1bf{bottom:556.455000px;}
.y108{bottom:558.255000px;}
.ya1{bottom:560.415000px;}
.y256{bottom:561.315000px;}
.y24{bottom:562.395000px;}
.y188{bottom:563.835000px;}
.y21f{bottom:571.755000px;}
.yd0{bottom:572.295000px;}
.y1be{bottom:576.255000px;}
.y23{bottom:577.875000px;}
.y107{bottom:578.055000px;}
.y255{bottom:578.595000px;}
.y1e9{bottom:578.955000px;}
.ya0{bottom:580.215000px;}
.y187{bottom:580.395000px;}
.y1f5{bottom:587.775000px;}
.y21e{bottom:588.855000px;}
.y145{bottom:589.935000px;}
.ycf{bottom:592.095000px;}
.y22{bottom:593.355000px;}
.y254{bottom:595.875000px;}
.y1bd{bottom:596.055000px;}
.y106{bottom:597.855000px;}
.y185{bottom:598.575000px;}
.y9f{bottom:600.015000px;}
.y21d{bottom:606.135000px;}
.y1f4{bottom:607.575000px;}
.y21{bottom:608.835000px;}
.yce{bottom:611.895000px;}
.y253{bottom:613.155000px;}
.y186{bottom:615.135000px;}
.y1bc{bottom:615.855000px;}
.y105{bottom:617.655000px;}
.y9e{bottom:619.815000px;}
.y144{bottom:620.175000px;}
.y21c{bottom:623.445000px;}
.y20{bottom:624.525000px;}
.y1f3{bottom:627.585000px;}
.y252{bottom:630.465000px;}
.ycd{bottom:631.725000px;}
.y143{bottom:632.265000px;}
.y1f{bottom:635.505000px;}
.y1bb{bottom:635.685000px;}
.y104{bottom:637.665000px;}
.y184{bottom:638.925000px;}
.y9d{bottom:639.645000px;}
.y21b{bottom:640.725000px;}
.y142{bottom:644.145000px;}
.y64{bottom:647.385000px;}
.y251{bottom:647.745000px;}
.y1e{bottom:649.185000px;}
.ycc{bottom:651.705000px;}
.y1ba{bottom:655.665000px;}
.y183{bottom:657.285000px;}
.y103{bottom:657.465000px;}
.y21a{bottom:658.005000px;}
.y13d{bottom:658.725000px;}
.y9c{bottom:659.625000px;}
.y1d{bottom:661.785000px;}
.y250{bottom:664.845000px;}
.y1f2{bottom:667.185000px;}
.ycb{bottom:671.505000px;}
.y141{bottom:673.305000px;}
.y182{bottom:673.485000px;}
.y1c{bottom:674.205000px;}
.y219{bottom:675.285000px;}
.y1b9{bottom:675.465000px;}
.y102{bottom:677.265000px;}
.y9b{bottom:679.425000px;}
.y24f{bottom:682.125000px;}
.y181{bottom:685.545000px;}
.y1f1{bottom:686.985000px;}
.y1b{bottom:687.165000px;}
.y140{bottom:687.705000px;}
.yca{bottom:691.305000px;}
.y218{bottom:692.385000px;}
.y1b8{bottom:695.265000px;}
.y101{bottom:697.065000px;}
.y180{bottom:697.605000px;}
.y9a{bottom:699.225000px;}
.y24e{bottom:699.405000px;}
.y1a{bottom:701.025000px;}
.y13f{bottom:702.285000px;}
.y1f0{bottom:706.785000px;}
.y17f{bottom:709.485000px;}
.y217{bottom:709.665000px;}
.yc9{bottom:711.105000px;}
.y19{bottom:713.805000px;}
.y1b7{bottom:715.065000px;}
.y24d{bottom:716.685000px;}
.y100{bottom:716.865000px;}
.y99{bottom:719.025000px;}
.y17e{bottom:726.045000px;}
.y216{bottom:726.945000px;}
.y1ef{bottom:727.665000px;}
.yc8{bottom:730.905000px;}
.y13c{bottom:731.445000px;}
.y24c{bottom:733.965000px;}
.y1b6{bottom:734.865000px;}
.yff{bottom:736.845000px;}
.y98{bottom:738.825000px;}
.y18{bottom:740.625000px;}
.y17d{bottom:742.785000px;}
.y215{bottom:744.225000px;}
.y139{bottom:746.025000px;}
.yc7{bottom:750.885000px;}
.y24b{bottom:751.065000px;}
.y1b5{bottom:754.845000px;}
.yfe{bottom:756.645000px;}
.y97{bottom:758.805000px;}
.y17c{bottom:759.345000px;}
.y13b{bottom:760.605000px;}
.y214{bottom:761.505000px;}
.y24a{bottom:768.345000px;}
.y1ee{bottom:768.525000px;}
.yc6{bottom:770.685000px;}
.y17{bottom:771.405000px;}
.y1b4{bottom:774.645000px;}
.y13a{bottom:775.005000px;}
.yfd{bottom:776.445000px;}
.y179{bottom:777.525000px;}
.y96{bottom:778.605000px;}
.y249{bottom:785.625000px;}
.y1ed{bottom:788.325000px;}
.y16{bottom:789.585000px;}
.y137{bottom:789.600000px;}
.yc5{bottom:791.385000px;}
.y17b{bottom:794.085000px;}
.y1b3{bottom:794.445000px;}
.y213{bottom:795.885000px;}
.yfc{bottom:796.245000px;}
.y95{bottom:798.405000px;}
.y248{bottom:802.905000px;}
.y15{bottom:803.445000px;}
.y136{bottom:804.165000px;}
.y1ec{bottom:808.125000px;}
.yc4{bottom:811.005000px;}
.y14{bottom:812.805000px;}
.y212{bottom:813.165000px;}
.y1b2{bottom:814.245000px;}
.yfb{bottom:816.045000px;}
.y178{bottom:817.845000px;}
.y94{bottom:818.205000px;}
.y135{bottom:818.745000px;}
.y247{bottom:820.185000px;}
.yc3{bottom:824.145000px;}
.y1eb{bottom:829.005000px;}
.y211{bottom:830.445000px;}
.y13{bottom:830.985000px;}
.y131{bottom:833.325000px;}
.y1b1{bottom:834.045000px;}
.yfa{bottom:836.025000px;}
.y177{bottom:836.205000px;}
.y246{bottom:837.465000px;}
.y93{bottom:838.005000px;}
.yc2{bottom:843.945000px;}
.y12{bottom:844.845000px;}
.y210{bottom:847.725000px;}
.y134{bottom:847.905000px;}
.y176{bottom:852.405000px;}
.y1ea{bottom:852.810000px;}
.y1b0{bottom:854.070000px;}
.y11{bottom:854.250000px;}
.y245{bottom:854.610000px;}
.yf9{bottom:855.870000px;}
.y92{bottom:858.030000px;}
.y133{bottom:862.350000px;}
.yc1{bottom:863.970000px;}
.y175{bottom:864.510000px;}
.y20f{bottom:865.050000px;}
.y244{bottom:871.890000px;}
.y10{bottom:872.430000px;}
.y1af{bottom:873.870000px;}
.yf8{bottom:875.670000px;}
.y174{bottom:876.570000px;}
.y12d{bottom:876.930000px;}
.y91{bottom:877.830000px;}
.y20e{bottom:882.150000px;}
.yf{bottom:883.590000px;}
.yc0{bottom:883.770000px;}
.y173{bottom:888.630000px;}
.y243{bottom:889.170000px;}
.y130{bottom:891.510000px;}
.y1ae{bottom:893.670000px;}
.yf7{bottom:895.470000px;}
.y90{bottom:897.630000px;}
.y20d{bottom:899.430000px;}
.y172{bottom:900.690000px;}
.ye{bottom:901.590000px;}
.ybf{bottom:903.570000px;}
.y12f{bottom:906.090000px;}
.y242{bottom:906.450000px;}
.y171{bottom:912.570000px;}
.y1ad{bottom:913.470000px;}
.yf6{bottom:915.270000px;}
.y20c{bottom:916.710000px;}
.y8f{bottom:917.430000px;}
.y12b{bottom:920.670000px;}
.ybe{bottom:923.370000px;}
.y241{bottom:923.730000px;}
.yd{bottom:926.070000px;}
.y170{bottom:929.130000px;}
.y1ac{bottom:933.270000px;}
.y20b{bottom:933.990000px;}
.y12c{bottom:935.070000px;}
.yf5{bottom:936.150000px;}
.y8e{bottom:937.230000px;}
.y240{bottom:941.010000px;}
.ybd{bottom:943.170000px;}
.y16f{bottom:945.870000px;}
.yc{bottom:949.290000px;}
.y129{bottom:949.650000px;}
.y20a{bottom:951.270000px;}
.y1ab{bottom:953.250000px;}
.y8d{bottom:957.210000px;}
.y23f{bottom:958.110000px;}
.y16e{bottom:962.430000px;}
.ybc{bottom:963.150000px;}
.y12a{bottom:964.230000px;}
.y209{bottom:971.790000px;}
.yb{bottom:972.690000px;}
.y1aa{bottom:973.050000px;}
.y23e{bottom:975.390000px;}
.y8c{bottom:977.010000px;}
.y127{bottom:978.810000px;}
.y16d{bottom:978.990000px;}
.ybb{bottom:982.950000px;}
.y23d{bottom:992.670000px;}
.y1a9{bottom:992.850000px;}
.y128{bottom:993.390000px;}
.y16c{bottom:995.550000px;}
.y8b{bottom:996.810000px;}
.yba{bottom:1002.750000px;}
.ya{bottom:1004.550000px;}
.y124{bottom:1007.970000px;}
.y23c{bottom:1009.950000px;}
.y16b{bottom:1012.290000px;}
.y1a8{bottom:1012.650000px;}
.y8a{bottom:1016.610000px;}
.y125{bottom:1022.370000px;}
.yb9{bottom:1022.550000px;}
.y23b{bottom:1027.230000px;}
.y16a{bottom:1028.850000px;}
.y1a7{bottom:1032.450000px;}
.y9{bottom:1036.230000px;}
.y89{bottom:1036.410000px;}
.y120{bottom:1036.950000px;}
.yb8{bottom:1043.430000px;}
.y23a{bottom:1044.510000px;}
.y169{bottom:1045.410000px;}
.y122{bottom:1051.530000px;}
.y1a6{bottom:1052.430000px;}
.y88{bottom:1056.390000px;}
.y239{bottom:1061.610000px;}
.yb7{bottom:1063.050000px;}
.y8{bottom:1063.230000px;}
.y168{bottom:1063.590000px;}
.y11e{bottom:1067.550000px;}
.y1a5{bottom:1072.230000px;}
.y87{bottom:1076.190000px;}
.y238{bottom:1078.890000px;}
.y167{bottom:1087.380000px;}
.y1a4{bottom:1092.960000px;}
.y86{bottom:1096.020000px;}
.y61{bottom:1096.200000px;}
.y11d{bottom:1098.360000px;}
.y166{bottom:1105.740000px;}
.y82{bottom:1123.200000px;}
.y3a{bottom:1137.240000px;}
.h6{height:5.653125px;}
.h44{height:6.257812px;}
.h2{height:13.500000px;}
.h2c{height:13.665000px;}
.h30{height:13.680000px;}
.h2f{height:13.702500px;}
.h2a{height:13.845000px;}
.h32{height:13.860000px;}
.h38{height:15.825000px;}
.h3f{height:15.840000px;}
.h3b{height:15.861000px;}
.h41{height:15.870000px;}
.h3a{height:16.005000px;}
.h17{height:16.740000px;}
.h15{height:18.140625px;}
.h37{height:21.585000px;}
.h1d{height:22.140000px;}
.h13{height:23.319141px;}
.h28{height:25.230000px;}
.h3c{height:26.852344px;}
.h2b{height:28.245000px;}
.h29{height:28.425000px;}
.h34{height:28.440000px;}
.h26{height:29.664141px;}
.hc{height:29.678906px;}
.hd{height:30.963516px;}
.h3e{height:32.400000px;}
.h40{height:32.430000px;}
.h16{height:36.281250px;}
.h11{height:39.503370px;}
.h5{height:40.985156px;}
.h24{height:41.535703px;}
.h1c{height:42.086250px;}
.h22{height:42.759141px;}
.h2d{height:42.825000px;}
.h33{height:42.840000px;}
.h2e{height:42.862500px;}
.h3d{height:42.922699px;}
.h31{height:43.020000px;}
.hf{height:44.518359px;}
.h10{height:46.622932px;}
.hb{height:47.344922px;}
.h39{height:47.678906px;}
.h4{height:47.699850px;}
.h18{height:48.616875px;}
.h42{height:49.868086px;}
.h1f{height:52.020000px;}
.h12{height:52.998047px;}
.h19{height:54.421875px;}
.he{height:55.291992px;}
.h36{height:55.503491px;}
.h35{height:57.420000px;}
.h3{height:58.651172px;}
.h27{height:59.158594px;}
.h9{height:60.226875px;}
.h43{height:62.211094px;}
.ha{height:65.010937px;}
.h20{height:65.884219px;}
.h25{height:70.628906px;}
.h14{height:72.562500px;}
.h1e{height:74.953125px;}
.h23{height:75.093750px;}
.h7{height:86.585445px;}
.h8{height:96.508125px;}
.h1b{height:101.925000px;}
.h21{height:133.222500px;}
.h1a{height:441.435000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w1a{width:40.350000px;}
.w1f{width:47.145000px;}
.w19{width:50.565000px;}
.w1b{width:50.580000px;}
.w18{width:50.601000px;}
.w16{width:50.616000px;}
.w17{width:50.745000px;}
.w15{width:50.760000px;}
.w25{width:58.140000px;}
.w24{width:60.690000px;}
.w20{width:60.825000px;}
.w2d{width:60.870000px;}
.w2e{width:65.160000px;}
.w12{width:66.990000px;}
.w23{width:74.325000px;}
.w3{width:82.071000px;}
.w11{width:88.725000px;}
.w2b{width:94.500000px;}
.w29{width:94.521000px;}
.w2c{width:94.536000px;}
.w22{width:101.196000px;}
.w10{width:102.261000px;}
.w1e{width:108.021000px;}
.w21{width:118.830000px;}
.w2a{width:126.030000px;}
.w9{width:154.470000px;}
.we{width:168.675000px;}
.w1d{width:175.530000px;}
.wc{width:178.590000px;}
.w7{width:180.930000px;}
.wa{width:188.115000px;}
.w27{width:188.655000px;}
.w28{width:189.030000px;}
.w1c{width:195.501000px;}
.w14{width:213.321000px;}
.wd{width:324.066000px;}
.wf{width:411.186000px;}
.wb{width:492.750000px;}
.w6{width:532.740000px;}
.w4{width:639.855000px;}
.w13{width:669.195000px;}
.w26{width:705.915000px;}
.w2f{width:706.275000px;}
.w2{width:721.935000px;}
.w8{width:743.175000px;}
.w5{width:811.395000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x62{left:4.252500px;}
.x2{left:8.091000px;}
.x17{left:10.791000px;}
.x3d{left:12.450000px;}
.x3b{left:14.040000px;}
.x38{left:15.660000px;}
.x4a{left:17.130000px;}
.x3c{left:18.390000px;}
.x49{left:20.010000px;}
.x1d{left:21.255000px;}
.x47{left:22.320000px;}
.x54{left:23.565000px;}
.x48{left:25.380000px;}
.x34{left:27.165000px;}
.x5a{left:28.260000px;}
.x51{left:29.685000px;}
.x61{left:31.680000px;}
.x60{left:33.660000px;}
.x56{left:35.100000px;}
.x53{left:37.080000px;}
.x35{left:38.520000px;}
.x55{left:40.485000px;}
.x5d{left:43.200000px;}
.x3a{left:45.030000px;}
.x30{left:46.245000px;}
.x33{left:48.405000px;}
.x31{left:50.565000px;}
.x2f{left:53.265000px;}
.x32{left:55.605000px;}
.x2a{left:59.220000px;}
.x2e{left:61.005000px;}
.x27{left:62.280000px;}
.x2d{left:63.885000px;}
.x2b{left:64.965000px;}
.x28{left:66.585000px;}
.x29{left:68.925000px;}
.x26{left:71.985000px;}
.x3{left:73.965000px;}
.x2c{left:77.025000px;}
.x16{left:81.585000px;}
.x1c{left:93.105000px;}
.x19{left:94.545000px;}
.x13{left:101.196000px;}
.x1{left:108.045000px;}
.xc{left:112.176000px;}
.x11{left:113.796000px;}
.x4b{left:114.876000px;}
.x22{left:128.376000px;}
.xf{left:129.636000px;}
.xa{left:132.156000px;}
.x21{left:135.036000px;}
.x7{left:141.516000px;}
.x6{left:161.490000px;}
.x12{left:186.330000px;}
.x4{left:190.125000px;}
.xe{left:212.970000px;}
.x23{left:221.610000px;}
.x18{left:302.655000px;}
.x57{left:304.275000px;}
.x1a{left:310.350000px;}
.x3e{left:327.135000px;}
.x8{left:355.215000px;}
.x1b{left:371.580000px;}
.xb{left:378.075000px;}
.x10{left:394.455000px;}
.x5e{left:398.775000px;}
.x50{left:412.500000px;}
.xd{left:424.545000px;}
.x3f{left:428.520000px;}
.x5{left:446.505000px;}
.x9{left:452.265000px;}
.x25{left:457.140000px;}
.x40{left:479.280000px;}
.x4c{left:486.840000px;}
.x14{left:489.165000px;}
.x15{left:490.785000px;}
.x58{left:493.320000px;}
.x41{left:530.040000px;}
.x36{left:545.340000px;}
.x42{left:580.650000px;}
.x59{left:587.850000px;}
.x4d{left:594.870000px;}
.x1e{left:620.253000px;}
.x24{left:625.830000px;}
.x43{left:631.410000px;}
.x4e{left:642.030000px;}
.x20{left:645.450000px;}
.x37{left:647.610000px;}
.x5b{left:648.690000px;}
.x44{left:682.170000px;}
.x5c{left:695.850000px;}
.x4f{left:702.870000px;}
.x45{left:732.750000px;}
.x39{left:736.350000px;}
.x5f{left:756.720000px;}
.x52{left:763.560000px;}
.x46{left:773.100000px;}
.x1f{left:799.200000px;}
@media print{
.v3{vertical-align:-69.760000pt;}
.v2{vertical-align:-16.000000pt;}
.v6{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.000000pt;}
.v4{vertical-align:18.666667pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.239467pt;}
.ls14{letter-spacing:-0.230933pt;}
.lsb{letter-spacing:-0.198933pt;}
.ls18{letter-spacing:-0.161067pt;}
.lsd{letter-spacing:-0.133867pt;}
.ls10{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls17{letter-spacing:0.040320pt;}
.ls1a{letter-spacing:0.094933pt;}
.lse{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.128640pt;}
.ls1b{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.231040pt;}
.ls6{letter-spacing:0.240640pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.439040pt;}
.ls13{letter-spacing:0.456533pt;}
.ls19{letter-spacing:0.592000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:1.440000pt;}
.ls2{letter-spacing:13.600000pt;}
.ls3{letter-spacing:42.400000pt;}
.ls0{letter-spacing:63.360000pt;}
.ls1{letter-spacing:63.466667pt;}
.ws16{word-spacing:-53.120000pt;}
.ws14{word-spacing:-42.880000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.ws18{word-spacing:-13.416533pt;}
.ws15{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.049067pt;}
.ws7{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.040000pt;}
.wse{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.558933pt;}
.ws12{word-spacing:-10.521067pt;}
.wsf{word-spacing:-10.480533pt;}
.ws3{word-spacing:-10.400000pt;}
.ws0{word-spacing:-9.280000pt;}
.wsd{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.720000pt;}
.ws11{word-spacing:-6.080000pt;}
.ws6{word-spacing:0.000000pt;}
._6{margin-left:-52.960000pt;}
._8{margin-left:-2.954240pt;}
._2{margin-left:-1.295360pt;}
._0{width:0.928000pt;}
._1{width:2.155093pt;}
._c{width:3.071360pt;}
._e{width:4.631680pt;}
._12{width:5.784320pt;}
._14{width:7.008000pt;}
._13{width:8.545067pt;}
._11{width:9.671467pt;}
._b{width:10.570880pt;}
._a{width:12.164480pt;}
._15{width:13.359360pt;}
._21{width:14.325120pt;}
._1a{width:15.245440pt;}
._9{width:16.839040pt;}
._22{width:17.982720pt;}
._1d{width:19.224960pt;}
._1b{width:20.398080pt;}
._d{width:21.934080pt;}
._18{width:23.310080pt;}
._f{width:24.240000pt;}
._10{width:25.946667pt;}
._1e{width:26.906880pt;}
._1c{width:28.128000pt;}
._25{width:29.457280pt;}
._2a{width:30.457600pt;}
._17{width:31.552000pt;}
._16{width:32.517120pt;}
._23{width:33.518720pt;}
._24{width:34.928000pt;}
._29{width:36.162347pt;}
._28{width:37.690240pt;}
._27{width:38.883840pt;}
._2b{width:39.815040pt;}
._32{width:41.139840pt;}
._20{width:42.648747pt;}
._1f{width:43.611520pt;}
._34{width:44.992640pt;}
._2c{width:46.055040pt;}
._26{width:47.701760pt;}
._3a{width:48.711040pt;}
._30{width:50.198400pt;}
._2f{width:51.436800pt;}
._35{width:53.018240pt;}
._3d{width:54.341760pt;}
._3e{width:55.371520pt;}
._2e{width:56.625920pt;}
._4{width:58.218667pt;}
._3f{width:60.552320pt;}
._33{width:61.725440pt;}
._3{width:63.561813pt;}
._2d{width:64.859520pt;}
._31{width:67.249920pt;}
._40{width:75.217920pt;}
._39{width:76.333440pt;}
._36{width:100.715520pt;}
._38{width:111.338667pt;}
._3c{width:118.736000pt;}
._37{width:139.921280pt;}
._41{width:154.632320pt;}
._5{width:177.440000pt;}
._19{width:254.106667pt;}
._7{width:671.978667pt;}
._3b{width:736.218240pt;}
.fs2{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fsd{font-size:16.000000pt;}
.fsc{font-size:21.120000pt;}
.fs10{font-size:24.320000pt;}
.fs7{font-size:26.880000pt;}
.fse{font-size:32.000000pt;}
.fsb{font-size:33.730624pt;}
.fsf{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs6{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;}
.y70{bottom:-223.546667pt;}
.y6f{bottom:-193.626667pt;}
.y6e{bottom:-163.546667pt;}
.y7f{bottom:-149.453333pt;}
.y6d{bottom:-133.626667pt;}
.y7e{bottom:-119.373333pt;}
.y6c{bottom:-103.706667pt;}
.y7d{bottom:-89.453333pt;}
.y6b{bottom:-73.626667pt;}
.y7c{bottom:-59.373333pt;}
.y6a{bottom:-43.706667pt;}
.y7b{bottom:-29.453333pt;}
.y63{bottom:-25.466667pt;}
.y3c{bottom:-24.320000pt;}
.y81{bottom:-15.931333pt;}
.y69{bottom:-13.600000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:0.626667pt;}
.y59{bottom:1.266667pt;}
.y271{bottom:1.633333pt;}
.y68{bottom:2.400000pt;}
.y126{bottom:2.560000pt;}
.y138{bottom:2.706667pt;}
.y123{bottom:2.720000pt;}
.y2{bottom:3.520000pt;}
.y14a{bottom:4.160000pt;}
.y157{bottom:4.306667pt;}
.y3b{bottom:4.320000pt;}
.y153{bottom:4.346667pt;}
.y155{bottom:4.466667pt;}
.y150{bottom:4.480000pt;}
.y62{bottom:4.960000pt;}
.y148{bottom:6.720000pt;}
.y11f{bottom:7.520000pt;}
.y121{bottom:8.960000pt;}
.y7{bottom:11.040000pt;}
.y17a{bottom:11.520000pt;}
.y4{bottom:12.000000pt;}
.y3{bottom:12.160000pt;}
.y58{bottom:12.946667pt;}
.y67{bottom:13.920000pt;}
.y132{bottom:15.360000pt;}
.y12e{bottom:15.520000pt;}
.y57{bottom:20.946667pt;}
.y13e{bottom:21.920000pt;}
.y6{bottom:22.400000pt;}
.y60{bottom:24.973333pt;}
.y66{bottom:25.600000pt;}
.y79{bottom:28.186667pt;}
.y5{bottom:33.920000pt;}
.y5f{bottom:36.013333pt;}
.y65{bottom:36.480000pt;}
.y56{bottom:36.786667pt;}
.y78{bottom:39.706667pt;}
.y85{bottom:41.120000pt;}
.y5e{bottom:46.733333pt;}
.y77{bottom:51.226667pt;}
.y55{bottom:52.626667pt;}
.ye8{bottom:53.760000pt;}
.y1{bottom:54.560000pt;}
.y84{bottom:55.680000pt;}
.y80{bottom:56.693333pt;}
.y5d{bottom:57.453333pt;}
.y76{bottom:62.906667pt;}
.y54{bottom:64.466667pt;}
.y5c{bottom:68.173333pt;}
.y83{bottom:71.520000pt;}
.y53{bottom:72.306667pt;}
.y75{bottom:74.426667pt;}
.y5b{bottom:83.400000pt;}
.y74{bottom:86.106667pt;}
.y52{bottom:88.146667pt;}
.y1d5{bottom:88.960000pt;}
.y1a3{bottom:92.160000pt;}
.y1e8{bottom:92.480000pt;}
.y165{bottom:96.160000pt;}
.y73{bottom:97.626667pt;}
.y270{bottom:100.320000pt;}
.ye7{bottom:103.040000pt;}
.y51{bottom:104.186667pt;}
.y1d4{bottom:106.560000pt;}
.yb6{bottom:107.520000pt;}
.y39{bottom:108.160000pt;}
.y72{bottom:108.666667pt;}
.y237{bottom:109.440000pt;}
.y1a2{bottom:109.760000pt;}
.y1e7{bottom:110.080000pt;}
.y164{bottom:113.760000pt;}
.y26f{bottom:115.680000pt;}
.y50{bottom:120.026667pt;}
.ye6{bottom:120.640000pt;}
.y1d3{bottom:124.160000pt;}
.y236{bottom:124.800000pt;}
.yb5{bottom:125.120000pt;}
.y38{bottom:125.760000pt;}
.y11c{bottom:125.920000pt;}
.y1a1{bottom:127.360000pt;}
.y1e6{bottom:127.680000pt;}
.y208{bottom:128.800000pt;}
.y26e{bottom:131.040000pt;}
.y163{bottom:131.520000pt;}
.y4f{bottom:135.866667pt;}
.ye5{bottom:138.400000pt;}
.y235{bottom:140.160000pt;}
.y1d2{bottom:141.920000pt;}
.yb4{bottom:142.720000pt;}
.y37{bottom:143.360000pt;}
.y11b{bottom:143.520000pt;}
.y1a0{bottom:144.986667pt;}
.y1e5{bottom:145.466667pt;}
.y26d{bottom:146.266667pt;}
.y207{bottom:146.586667pt;}
.y162{bottom:149.146667pt;}
.y4e{bottom:151.706667pt;}
.y234{bottom:155.546667pt;}
.ye4{bottom:156.026667pt;}
.y1d1{bottom:159.546667pt;}
.yb3{bottom:160.346667pt;}
.y36{bottom:160.986667pt;}
.y11a{bottom:161.146667pt;}
.y26c{bottom:161.626667pt;}
.y19f{bottom:162.586667pt;}
.y1e4{bottom:163.066667pt;}
.y206{bottom:164.986667pt;}
.y161{bottom:166.746667pt;}
.y4d{bottom:167.546667pt;}
.y233{bottom:170.746667pt;}
.ye3{bottom:173.626667pt;}
.y26b{bottom:176.986667pt;}
.y1d0{bottom:177.146667pt;}
.yb2{bottom:177.946667pt;}
.y35{bottom:178.586667pt;}
.y119{bottom:178.746667pt;}
.y19e{bottom:180.346667pt;}
.y1e3{bottom:180.666667pt;}
.y4c{bottom:183.386667pt;}
.y160{bottom:184.346667pt;}
.y232{bottom:186.106667pt;}
.ye2{bottom:191.226667pt;}
.y26a{bottom:192.346667pt;}
.y1cf{bottom:194.746667pt;}
.yb1{bottom:195.706667pt;}
.y34{bottom:196.346667pt;}
.y19d{bottom:197.946667pt;}
.y1e2{bottom:198.266667pt;}
.y4b{bottom:199.386667pt;}
.y205{bottom:201.306667pt;}
.y231{bottom:201.466667pt;}
.y15f{bottom:201.946667pt;}
.y269{bottom:207.706667pt;}
.ye1{bottom:208.826667pt;}
.y1ce{bottom:212.346667pt;}
.yb0{bottom:213.306667pt;}
.y33{bottom:213.946667pt;}
.y118{bottom:214.106667pt;}
.y4a{bottom:215.226667pt;}
.y19c{bottom:215.546667pt;}
.y1e1{bottom:215.866667pt;}
.y230{bottom:216.826667pt;}
.y204{bottom:218.906667pt;}
.y15e{bottom:219.706667pt;}
.y268{bottom:223.066667pt;}
.ye0{bottom:226.586667pt;}
.y49{bottom:227.066667pt;}
.yf4{bottom:227.386667pt;}
.y1cd{bottom:230.106667pt;}
.yaf{bottom:230.906667pt;}
.y117{bottom:231.706667pt;}
.y22f{bottom:232.186667pt;}
.y32{bottom:232.346667pt;}
.y19b{bottom:233.146667pt;}
.y1e0{bottom:233.626667pt;}
.y48{bottom:234.906667pt;}
.y203{bottom:236.506667pt;}
.y15d{bottom:237.306667pt;}
.y267{bottom:238.266667pt;}
.ydf{bottom:244.186667pt;}
.yf3{bottom:244.986667pt;}
.y19a{bottom:247.546667pt;}
.y1cc{bottom:247.706667pt;}
.yae{bottom:248.506667pt;}
.y116{bottom:249.306667pt;}
.y31{bottom:250.426667pt;}
.y47{bottom:250.746667pt;}
.y1df{bottom:251.226667pt;}
.y266{bottom:253.626667pt;}
.y202{bottom:254.266667pt;}
.y15c{bottom:254.906667pt;}
.yf2{bottom:256.506667pt;}
.y199{bottom:258.266667pt;}
.y30{bottom:259.226667pt;}
.y3d{bottom:259.880000pt;}
.yde{bottom:261.786667pt;}
.y22e{bottom:262.746667pt;}
.y1cb{bottom:265.306667pt;}
.yad{bottom:266.106667pt;}
.y46{bottom:266.586667pt;}
.y115{bottom:266.906667pt;}
.y1de{bottom:268.826667pt;}
.y265{bottom:268.986667pt;}
.y198{bottom:269.146667pt;}
.y2f{bottom:269.306667pt;}
.y15b{bottom:270.906667pt;}
.y201{bottom:271.866667pt;}
.yf1{bottom:274.106667pt;}
.y22d{bottom:278.106667pt;}
.ydd{bottom:279.386667pt;}
.y197{bottom:279.560000pt;}
.y45{bottom:282.426667pt;}
.y1ca{bottom:282.906667pt;}
.y15a{bottom:283.226667pt;}
.yac{bottom:283.866667pt;}
.y264{bottom:284.346667pt;}
.y114{bottom:284.506667pt;}
.y1dd{bottom:286.426667pt;}
.y200{bottom:289.466667pt;}
.y2e{bottom:290.586667pt;}
.yf0{bottom:291.706667pt;}
.y22c{bottom:293.466667pt;}
.y196{bottom:294.280000pt;}
.ydc{bottom:296.986667pt;}
.y44{bottom:298.453333pt;}
.y159{bottom:298.906667pt;}
.y263{bottom:299.706667pt;}
.y1c9{bottom:300.506667pt;}
.yab{bottom:301.466667pt;}
.y113{bottom:302.266667pt;}
.y1dc{bottom:304.026667pt;}
.y1ff{bottom:307.066667pt;}
.y22b{bottom:308.826667pt;}
.y195{bottom:309.160000pt;}
.yef{bottom:309.306667pt;}
.y43{bottom:310.293333pt;}
.y158{bottom:311.386667pt;}
.y2d{bottom:311.706667pt;}
.ydb{bottom:314.746667pt;}
.y262{bottom:315.066667pt;}
.y42{bottom:318.133333pt;}
.y1c8{bottom:318.266667pt;}
.y156{bottom:318.440000pt;}
.yaa{bottom:319.066667pt;}
.y112{bottom:319.866667pt;}
.y1db{bottom:321.786667pt;}
.y194{bottom:323.880000pt;}
.y22a{bottom:324.186667pt;}
.y1fe{bottom:324.666667pt;}
.yee{bottom:327.066667pt;}
.y261{bottom:330.266667pt;}
.yda{bottom:332.346667pt;}
.y2c{bottom:332.826667pt;}
.y154{bottom:333.160000pt;}
.y41{bottom:333.973333pt;}
.y1c7{bottom:335.866667pt;}
.ya9{bottom:336.666667pt;}
.y111{bottom:337.466667pt;}
.y193{bottom:338.600000pt;}
.y1da{bottom:339.386667pt;}
.y71{bottom:339.880000pt;}
.y1fd{bottom:342.426667pt;}
.yed{bottom:344.666667pt;}
.y260{bottom:345.626667pt;}
.y152{bottom:348.040000pt;}
.y40{bottom:349.813333pt;}
.yd9{bottom:349.986667pt;}
.y2b{bottom:351.426667pt;}
.y192{bottom:353.506667pt;}
.ya8{bottom:354.306667pt;}
.y229{bottom:354.786667pt;}
.y110{bottom:355.106667pt;}
.y1d9{bottom:357.026667pt;}
.y1fc{bottom:360.066667pt;}
.y25f{bottom:361.026667pt;}
.yec{bottom:362.306667pt;}
.y151{bottom:362.786667pt;}
.y3f{bottom:365.653333pt;}
.yd8{bottom:367.586667pt;}
.y191{bottom:368.226667pt;}
.y2a{bottom:369.026667pt;}
.y228{bottom:370.146667pt;}
.y1c6{bottom:371.106667pt;}
.y10f{bottom:372.706667pt;}
.ya7{bottom:372.866667pt;}
.y1d8{bottom:374.626667pt;}
.y25e{bottom:376.386667pt;}
.y14f{bottom:377.506667pt;}
.y1fb{bottom:377.666667pt;}
.yeb{bottom:379.906667pt;}
.y29{bottom:381.346667pt;}
.y3e{bottom:381.493333pt;}
.y190{bottom:382.946667pt;}
.yd7{bottom:385.186667pt;}
.y227{bottom:385.506667pt;}
.y1c5{bottom:388.706667pt;}
.y28{bottom:389.026667pt;}
.y10e{bottom:390.466667pt;}
.ya6{bottom:391.426667pt;}
.y25d{bottom:391.746667pt;}
.y1d7{bottom:392.226667pt;}
.y14e{bottom:392.386667pt;}
.y1fa{bottom:395.266667pt;}
.y18f{bottom:397.826667pt;}
.yea{bottom:398.466667pt;}
.y226{bottom:400.866667pt;}
.yd6{bottom:402.946667pt;}
.y1c4{bottom:406.466667pt;}
.y25c{bottom:406.946667pt;}
.y14d{bottom:407.106667pt;}
.y10d{bottom:408.066667pt;}
.y27{bottom:409.666667pt;}
.y1d6{bottom:409.986667pt;}
.y18e{bottom:412.546667pt;}
.y1f9{bottom:413.666667pt;}
.ye9{bottom:415.906667pt;}
.y225{bottom:416.226667pt;}
.yd5{bottom:420.546667pt;}
.y14c{bottom:421.826667pt;}
.y25b{bottom:422.306667pt;}
.y1c3{bottom:424.066667pt;}
.y10c{bottom:425.666667pt;}
.y18d{bottom:427.266667pt;}
.ya5{bottom:427.586667pt;}
.y26{bottom:430.466667pt;}
.y224{bottom:431.426667pt;}
.y14b{bottom:436.706667pt;}
.y25a{bottom:437.666667pt;}
.yd4{bottom:438.146667pt;}
.y1c2{bottom:441.666667pt;}
.y18c{bottom:442.146667pt;}
.y10b{bottom:443.266667pt;}
.ya4{bottom:445.186667pt;}
.y223{bottom:446.786667pt;}
.y1f8{bottom:450.146667pt;}
.y25{bottom:451.106667pt;}
.y149{bottom:451.426667pt;}
.y259{bottom:453.026667pt;}
.yd3{bottom:455.746667pt;}
.y18b{bottom:456.866667pt;}
.y1c1{bottom:459.266667pt;}
.y10a{bottom:460.866667pt;}
.y222{bottom:462.146667pt;}
.ya3{bottom:462.786667pt;}
.y147{bottom:467.586667pt;}
.y1f7{bottom:467.746667pt;}
.y258{bottom:468.386667pt;}
.y5a{bottom:470.613333pt;}
.y18a{bottom:471.586667pt;}
.yd2{bottom:473.346667pt;}
.y1c0{bottom:476.866667pt;}
.y221{bottom:477.506667pt;}
.y109{bottom:478.626667pt;}
.ya2{bottom:480.386667pt;}
.y257{bottom:483.746667pt;}
.y1f6{bottom:486.146667pt;}
.y189{bottom:486.466667pt;}
.yd1{bottom:491.106667pt;}
.y220{bottom:492.866667pt;}
.y146{bottom:493.826667pt;}
.y1bf{bottom:494.626667pt;}
.y108{bottom:496.226667pt;}
.ya1{bottom:498.146667pt;}
.y256{bottom:498.946667pt;}
.y24{bottom:499.906667pt;}
.y188{bottom:501.186667pt;}
.y21f{bottom:508.226667pt;}
.yd0{bottom:508.706667pt;}
.y1be{bottom:512.226667pt;}
.y23{bottom:513.666667pt;}
.y107{bottom:513.826667pt;}
.y255{bottom:514.306667pt;}
.y1e9{bottom:514.626667pt;}
.ya0{bottom:515.746667pt;}
.y187{bottom:515.906667pt;}
.y1f5{bottom:522.466667pt;}
.y21e{bottom:523.426667pt;}
.y145{bottom:524.386667pt;}
.ycf{bottom:526.306667pt;}
.y22{bottom:527.426667pt;}
.y254{bottom:529.666667pt;}
.y1bd{bottom:529.826667pt;}
.y106{bottom:531.426667pt;}
.y185{bottom:532.066667pt;}
.y9f{bottom:533.346667pt;}
.y21d{bottom:538.786667pt;}
.y1f4{bottom:540.066667pt;}
.y21{bottom:541.186667pt;}
.yce{bottom:543.906667pt;}
.y253{bottom:545.026667pt;}
.y186{bottom:546.786667pt;}
.y1bc{bottom:547.426667pt;}
.y105{bottom:549.026667pt;}
.y9e{bottom:550.946667pt;}
.y144{bottom:551.266667pt;}
.y21c{bottom:554.173333pt;}
.y20{bottom:555.133333pt;}
.y1f3{bottom:557.853333pt;}
.y252{bottom:560.413333pt;}
.ycd{bottom:561.533333pt;}
.y143{bottom:562.013333pt;}
.y1f{bottom:564.893333pt;}
.y1bb{bottom:565.053333pt;}
.y104{bottom:566.813333pt;}
.y184{bottom:567.933333pt;}
.y9d{bottom:568.573333pt;}
.y21b{bottom:569.533333pt;}
.y142{bottom:572.573333pt;}
.y64{bottom:575.453333pt;}
.y251{bottom:575.773333pt;}
.y1e{bottom:577.053333pt;}
.ycc{bottom:579.293333pt;}
.y1ba{bottom:582.813333pt;}
.y183{bottom:584.253333pt;}
.y103{bottom:584.413333pt;}
.y21a{bottom:584.893333pt;}
.y13d{bottom:585.533333pt;}
.y9c{bottom:586.333333pt;}
.y1d{bottom:588.253333pt;}
.y250{bottom:590.973333pt;}
.y1f2{bottom:593.053333pt;}
.ycb{bottom:596.893333pt;}
.y141{bottom:598.493333pt;}
.y182{bottom:598.653333pt;}
.y1c{bottom:599.293333pt;}
.y219{bottom:600.253333pt;}
.y1b9{bottom:600.413333pt;}
.y102{bottom:602.013333pt;}
.y9b{bottom:603.933333pt;}
.y24f{bottom:606.333333pt;}
.y181{bottom:609.373333pt;}
.y1f1{bottom:610.653333pt;}
.y1b{bottom:610.813333pt;}
.y140{bottom:611.293333pt;}
.yca{bottom:614.493333pt;}
.y218{bottom:615.453333pt;}
.y1b8{bottom:618.013333pt;}
.y101{bottom:619.613333pt;}
.y180{bottom:620.093333pt;}
.y9a{bottom:621.533333pt;}
.y24e{bottom:621.693333pt;}
.y1a{bottom:623.133333pt;}
.y13f{bottom:624.253333pt;}
.y1f0{bottom:628.253333pt;}
.y17f{bottom:630.653333pt;}
.y217{bottom:630.813333pt;}
.yc9{bottom:632.093333pt;}
.y19{bottom:634.493333pt;}
.y1b7{bottom:635.613333pt;}
.y24d{bottom:637.053333pt;}
.y100{bottom:637.213333pt;}
.y99{bottom:639.133333pt;}
.y17e{bottom:645.373333pt;}
.y216{bottom:646.173333pt;}
.y1ef{bottom:646.813333pt;}
.yc8{bottom:649.693333pt;}
.y13c{bottom:650.173333pt;}
.y24c{bottom:652.413333pt;}
.y1b6{bottom:653.213333pt;}
.yff{bottom:654.973333pt;}
.y98{bottom:656.733333pt;}
.y18{bottom:658.333333pt;}
.y17d{bottom:660.253333pt;}
.y215{bottom:661.533333pt;}
.y139{bottom:663.133333pt;}
.yc7{bottom:667.453333pt;}
.y24b{bottom:667.613333pt;}
.y1b5{bottom:670.973333pt;}
.yfe{bottom:672.573333pt;}
.y97{bottom:674.493333pt;}
.y17c{bottom:674.973333pt;}
.y13b{bottom:676.093333pt;}
.y214{bottom:676.893333pt;}
.y24a{bottom:682.973333pt;}
.y1ee{bottom:683.133333pt;}
.yc6{bottom:685.053333pt;}
.y17{bottom:685.693333pt;}
.y1b4{bottom:688.573333pt;}
.y13a{bottom:688.893333pt;}
.yfd{bottom:690.173333pt;}
.y179{bottom:691.133333pt;}
.y96{bottom:692.093333pt;}
.y249{bottom:698.333333pt;}
.y1ed{bottom:700.733333pt;}
.y16{bottom:701.853333pt;}
.y137{bottom:701.866667pt;}
.yc5{bottom:703.453333pt;}
.y17b{bottom:705.853333pt;}
.y1b3{bottom:706.173333pt;}
.y213{bottom:707.453333pt;}
.yfc{bottom:707.773333pt;}
.y95{bottom:709.693333pt;}
.y248{bottom:713.693333pt;}
.y15{bottom:714.173333pt;}
.y136{bottom:714.813333pt;}
.y1ec{bottom:718.333333pt;}
.yc4{bottom:720.893333pt;}
.y14{bottom:722.493333pt;}
.y212{bottom:722.813333pt;}
.y1b2{bottom:723.773333pt;}
.yfb{bottom:725.373333pt;}
.y178{bottom:726.973333pt;}
.y94{bottom:727.293333pt;}
.y135{bottom:727.773333pt;}
.y247{bottom:729.053333pt;}
.yc3{bottom:732.573333pt;}
.y1eb{bottom:736.893333pt;}
.y211{bottom:738.173333pt;}
.y13{bottom:738.653333pt;}
.y131{bottom:740.733333pt;}
.y1b1{bottom:741.373333pt;}
.yfa{bottom:743.133333pt;}
.y177{bottom:743.293333pt;}
.y246{bottom:744.413333pt;}
.y93{bottom:744.893333pt;}
.yc2{bottom:750.173333pt;}
.y12{bottom:750.973333pt;}
.y210{bottom:753.533333pt;}
.y134{bottom:753.693333pt;}
.y176{bottom:757.693333pt;}
.y1ea{bottom:758.053333pt;}
.y1b0{bottom:759.173333pt;}
.y11{bottom:759.333333pt;}
.y245{bottom:759.653333pt;}
.yf9{bottom:760.773333pt;}
.y92{bottom:762.693333pt;}
.y133{bottom:766.533333pt;}
.yc1{bottom:767.973333pt;}
.y175{bottom:768.453333pt;}
.y20f{bottom:768.933333pt;}
.y244{bottom:775.013333pt;}
.y10{bottom:775.493333pt;}
.y1af{bottom:776.773333pt;}
.yf8{bottom:778.373333pt;}
.y174{bottom:779.173333pt;}
.y12d{bottom:779.493333pt;}
.y91{bottom:780.293333pt;}
.y20e{bottom:784.133333pt;}
.yf{bottom:785.413333pt;}
.yc0{bottom:785.573333pt;}
.y173{bottom:789.893333pt;}
.y243{bottom:790.373333pt;}
.y130{bottom:792.453333pt;}
.y1ae{bottom:794.373333pt;}
.yf7{bottom:795.973333pt;}
.y90{bottom:797.893333pt;}
.y20d{bottom:799.493333pt;}
.y172{bottom:800.613333pt;}
.ye{bottom:801.413333pt;}
.ybf{bottom:803.173333pt;}
.y12f{bottom:805.413333pt;}
.y242{bottom:805.733333pt;}
.y171{bottom:811.173333pt;}
.y1ad{bottom:811.973333pt;}
.yf6{bottom:813.573333pt;}
.y20c{bottom:814.853333pt;}
.y8f{bottom:815.493333pt;}
.y12b{bottom:818.373333pt;}
.ybe{bottom:820.773333pt;}
.y241{bottom:821.093333pt;}
.yd{bottom:823.173333pt;}
.y170{bottom:825.893333pt;}
.y1ac{bottom:829.573333pt;}
.y20b{bottom:830.213333pt;}
.y12c{bottom:831.173333pt;}
.yf5{bottom:832.133333pt;}
.y8e{bottom:833.093333pt;}
.y240{bottom:836.453333pt;}
.ybd{bottom:838.373333pt;}
.y16f{bottom:840.773333pt;}
.yc{bottom:843.813333pt;}
.y129{bottom:844.133333pt;}
.y20a{bottom:845.573333pt;}
.y1ab{bottom:847.333333pt;}
.y8d{bottom:850.853333pt;}
.y23f{bottom:851.653333pt;}
.y16e{bottom:855.493333pt;}
.ybc{bottom:856.133333pt;}
.y12a{bottom:857.093333pt;}
.y209{bottom:863.813333pt;}
.yb{bottom:864.613333pt;}
.y1aa{bottom:864.933333pt;}
.y23e{bottom:867.013333pt;}
.y8c{bottom:868.453333pt;}
.y127{bottom:870.053333pt;}
.y16d{bottom:870.213333pt;}
.ybb{bottom:873.733333pt;}
.y23d{bottom:882.373333pt;}
.y1a9{bottom:882.533333pt;}
.y128{bottom:883.013333pt;}
.y16c{bottom:884.933333pt;}
.y8b{bottom:886.053333pt;}
.yba{bottom:891.333333pt;}
.ya{bottom:892.933333pt;}
.y124{bottom:895.973333pt;}
.y23c{bottom:897.733333pt;}
.y16b{bottom:899.813333pt;}
.y1a8{bottom:900.133333pt;}
.y8a{bottom:903.653333pt;}
.y125{bottom:908.773333pt;}
.yb9{bottom:908.933333pt;}
.y23b{bottom:913.093333pt;}
.y16a{bottom:914.533333pt;}
.y1a7{bottom:917.733333pt;}
.y9{bottom:921.093333pt;}
.y89{bottom:921.253333pt;}
.y120{bottom:921.733333pt;}
.yb8{bottom:927.493333pt;}
.y23a{bottom:928.453333pt;}
.y169{bottom:929.253333pt;}
.y122{bottom:934.693333pt;}
.y1a6{bottom:935.493333pt;}
.y88{bottom:939.013333pt;}
.y239{bottom:943.653333pt;}
.yb7{bottom:944.933333pt;}
.y8{bottom:945.093333pt;}
.y168{bottom:945.413333pt;}
.y11e{bottom:948.933333pt;}
.y1a5{bottom:953.093333pt;}
.y87{bottom:956.613333pt;}
.y238{bottom:959.013333pt;}
.y167{bottom:966.560000pt;}
.y1a4{bottom:971.520000pt;}
.y86{bottom:974.240000pt;}
.y61{bottom:974.400000pt;}
.y11d{bottom:976.320000pt;}
.y166{bottom:982.880000pt;}
.y82{bottom:998.400000pt;}
.y3a{bottom:1010.880000pt;}
.h6{height:5.025000pt;}
.h44{height:5.562500pt;}
.h2{height:12.000000pt;}
.h2c{height:12.146667pt;}
.h30{height:12.160000pt;}
.h2f{height:12.180000pt;}
.h2a{height:12.306667pt;}
.h32{height:12.320000pt;}
.h38{height:14.066667pt;}
.h3f{height:14.080000pt;}
.h3b{height:14.098667pt;}
.h41{height:14.106667pt;}
.h3a{height:14.226667pt;}
.h17{height:14.880000pt;}
.h15{height:16.125000pt;}
.h37{height:19.186667pt;}
.h1d{height:19.680000pt;}
.h13{height:20.728125pt;}
.h28{height:22.426667pt;}
.h3c{height:23.868750pt;}
.h2b{height:25.106667pt;}
.h29{height:25.266667pt;}
.h34{height:25.280000pt;}
.h26{height:26.368125pt;}
.hc{height:26.381250pt;}
.hd{height:27.523125pt;}
.h3e{height:28.800000pt;}
.h40{height:28.826667pt;}
.h16{height:32.250000pt;}
.h11{height:35.114107pt;}
.h5{height:36.431250pt;}
.h24{height:36.920625pt;}
.h1c{height:37.410000pt;}
.h22{height:38.008125pt;}
.h2d{height:38.066667pt;}
.h33{height:38.080000pt;}
.h2e{height:38.100000pt;}
.h3d{height:38.153511pt;}
.h31{height:38.240000pt;}
.hf{height:39.571875pt;}
.h10{height:41.442606pt;}
.hb{height:42.084375pt;}
.h39{height:42.381250pt;}
.h4{height:42.399867pt;}
.h18{height:43.215000pt;}
.h42{height:44.327188pt;}
.h1f{height:46.240000pt;}
.h12{height:47.109375pt;}
.h19{height:48.375000pt;}
.he{height:49.148438pt;}
.h36{height:49.336436pt;}
.h35{height:51.040000pt;}
.h3{height:52.134375pt;}
.h27{height:52.585417pt;}
.h9{height:53.535000pt;}
.h43{height:55.298750pt;}
.ha{height:57.787500pt;}
.h20{height:58.563750pt;}
.h25{height:62.781250pt;}
.h14{height:64.500000pt;}
.h1e{height:66.625000pt;}
.h23{height:66.750000pt;}
.h7{height:76.964840pt;}
.h8{height:85.785000pt;}
.h1b{height:90.600000pt;}
.h21{height:118.420000pt;}
.h1a{height:392.386667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w1a{width:35.866667pt;}
.w1f{width:41.906667pt;}
.w19{width:44.946667pt;}
.w1b{width:44.960000pt;}
.w18{width:44.978667pt;}
.w16{width:44.992000pt;}
.w17{width:45.106667pt;}
.w15{width:45.120000pt;}
.w25{width:51.680000pt;}
.w24{width:53.946667pt;}
.w20{width:54.066667pt;}
.w2d{width:54.106667pt;}
.w2e{width:57.920000pt;}
.w12{width:59.546667pt;}
.w23{width:66.066667pt;}
.w3{width:72.952000pt;}
.w11{width:78.866667pt;}
.w2b{width:84.000000pt;}
.w29{width:84.018667pt;}
.w2c{width:84.032000pt;}
.w22{width:89.952000pt;}
.w10{width:90.898667pt;}
.w1e{width:96.018667pt;}
.w21{width:105.626667pt;}
.w2a{width:112.026667pt;}
.w9{width:137.306667pt;}
.we{width:149.933333pt;}
.w1d{width:156.026667pt;}
.wc{width:158.746667pt;}
.w7{width:160.826667pt;}
.wa{width:167.213333pt;}
.w27{width:167.693333pt;}
.w28{width:168.026667pt;}
.w1c{width:173.778667pt;}
.w14{width:189.618667pt;}
.wd{width:288.058667pt;}
.wf{width:365.498667pt;}
.wb{width:438.000000pt;}
.w6{width:473.546667pt;}
.w4{width:568.760000pt;}
.w13{width:594.840000pt;}
.w26{width:627.480000pt;}
.w2f{width:627.800000pt;}
.w2{width:641.720000pt;}
.w8{width:660.600000pt;}
.w5{width:721.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x62{left:3.780000pt;}
.x2{left:7.192000pt;}
.x17{left:9.592000pt;}
.x3d{left:11.066667pt;}
.x3b{left:12.480000pt;}
.x38{left:13.920000pt;}
.x4a{left:15.226667pt;}
.x3c{left:16.346667pt;}
.x49{left:17.786667pt;}
.x1d{left:18.893333pt;}
.x47{left:19.840000pt;}
.x54{left:20.946667pt;}
.x48{left:22.560000pt;}
.x34{left:24.146667pt;}
.x5a{left:25.120000pt;}
.x51{left:26.386667pt;}
.x61{left:28.160000pt;}
.x60{left:29.920000pt;}
.x56{left:31.200000pt;}
.x53{left:32.960000pt;}
.x35{left:34.240000pt;}
.x55{left:35.986667pt;}
.x5d{left:38.400000pt;}
.x3a{left:40.026667pt;}
.x30{left:41.106667pt;}
.x33{left:43.026667pt;}
.x31{left:44.946667pt;}
.x2f{left:47.346667pt;}
.x32{left:49.426667pt;}
.x2a{left:52.640000pt;}
.x2e{left:54.226667pt;}
.x27{left:55.360000pt;}
.x2d{left:56.786667pt;}
.x2b{left:57.746667pt;}
.x28{left:59.186667pt;}
.x29{left:61.266667pt;}
.x26{left:63.986667pt;}
.x3{left:65.746667pt;}
.x2c{left:68.466667pt;}
.x16{left:72.520000pt;}
.x1c{left:82.760000pt;}
.x19{left:84.040000pt;}
.x13{left:89.952000pt;}
.x1{left:96.040000pt;}
.xc{left:99.712000pt;}
.x11{left:101.152000pt;}
.x4b{left:102.112000pt;}
.x22{left:114.112000pt;}
.xf{left:115.232000pt;}
.xa{left:117.472000pt;}
.x21{left:120.032000pt;}
.x7{left:125.792000pt;}
.x6{left:143.546667pt;}
.x12{left:165.626667pt;}
.x4{left:169.000000pt;}
.xe{left:189.306667pt;}
.x23{left:196.986667pt;}
.x18{left:269.026667pt;}
.x57{left:270.466667pt;}
.x1a{left:275.866667pt;}
.x3e{left:290.786667pt;}
.x8{left:315.746667pt;}
.x1b{left:330.293333pt;}
.xb{left:336.066667pt;}
.x10{left:350.626667pt;}
.x5e{left:354.466667pt;}
.x50{left:366.666667pt;}
.xd{left:377.373333pt;}
.x3f{left:380.906667pt;}
.x5{left:396.893333pt;}
.x9{left:402.013333pt;}
.x25{left:406.346667pt;}
.x40{left:426.026667pt;}
.x4c{left:432.746667pt;}
.x14{left:434.813333pt;}
.x15{left:436.253333pt;}
.x58{left:438.506667pt;}
.x41{left:471.146667pt;}
.x36{left:484.746667pt;}
.x42{left:516.133333pt;}
.x59{left:522.533333pt;}
.x4d{left:528.773333pt;}
.x1e{left:551.336000pt;}
.x24{left:556.293333pt;}
.x43{left:561.253333pt;}
.x4e{left:570.693333pt;}
.x20{left:573.733333pt;}
.x37{left:575.653333pt;}
.x5b{left:576.613333pt;}
.x44{left:606.373333pt;}
.x5c{left:618.533333pt;}
.x4f{left:624.773333pt;}
.x45{left:651.333333pt;}
.x39{left:654.533333pt;}
.x5f{left:672.640000pt;}
.x52{left:678.720000pt;}
.x46{left:687.200000pt;}
.x1f{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; }
  