
    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_adb6fc80fc0b7df6066bf0bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.749512;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_73283e253087ca8577b4de29.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.759277;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_1594b79b090255c051b31797.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_397bf7125417648af533cf47.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.727539;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_ab85a3fc2009e8f6d18cbf6f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_7563f93fb65b2887a32e3648.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8cb88cc2ab483345299ae999.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6c29387ae7d48a23323bc6ae.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1a5c2ebda488163cd485f2dd.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a71f5bf6d9066ea09b73be08.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1713ce4d4ed46e6895653af7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_babfae21a83450647b869652.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.372070;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_1cbcd0e5d4c9eeb5415246ab.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5ae19723d00fc559a88ff989.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e1491547d478b1b5350ac773.woff2')format("woff");}.fff{font-family:fff;line-height:0.863770;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_110acc4319e4e743b4ca2063.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.903320;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;}
.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);}
.m1{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);}
.v1{vertical-align:-82.800000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls1d{letter-spacing:-1.008000px;}
.ls18{letter-spacing:-0.936000px;}
.ls1e{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.612000px;}
.ls1a{letter-spacing:-0.576000px;}
.ls40{letter-spacing:-0.432000px;}
.ls29{letter-spacing:-0.325200px;}
.ls42{letter-spacing:-0.322800px;}
.ls3{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.072000px;}
.ls24{letter-spacing:-0.058320px;}
.ls2{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.025920px;}
.ls23{letter-spacing:0.053280px;}
.ls11{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.108000px;}
.ls1f{letter-spacing:0.120000px;}
.lsc{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.150000px;}
.ls7{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.288000px;}
.ls41{letter-spacing:0.305400px;}
.ls5{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.432000px;}
.ls22{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.792000px;}
.ls35{letter-spacing:0.840000px;}
.ls30{letter-spacing:0.869760px;}
.ls2b{letter-spacing:1.440000px;}
.ls9{letter-spacing:1.584000px;}
.ls2d{letter-spacing:2.160000px;}
.ls2e{letter-spacing:2.880000px;}
.ls28{letter-spacing:3.600000px;}
.ls21{letter-spacing:4.320000px;}
.ls32{letter-spacing:5.040000px;}
.ls26{letter-spacing:5.760000px;}
.ls1c{letter-spacing:6.480000px;}
.ls2a{letter-spacing:7.200000px;}
.ls31{letter-spacing:7.920000px;}
.ls6{letter-spacing:8.100000px;}
.ls33{letter-spacing:9.360000px;}
.ls19{letter-spacing:12.240000px;}
.ls3a{letter-spacing:12.960000px;}
.ls36{letter-spacing:13.680000px;}
.ls27{letter-spacing:14.400000px;}
.ls34{letter-spacing:15.840000px;}
.ls3b{letter-spacing:17.280000px;}
.ls3e{letter-spacing:18.000000px;}
.ls3c{letter-spacing:18.720000px;}
.ls39{letter-spacing:26.640000px;}
.ls2c{letter-spacing:29.520000px;}
.ls38{letter-spacing:31.680000px;}
.ls37{letter-spacing:33.840000px;}
.ls8{letter-spacing:33.960000px;}
.lsa{letter-spacing:33.984000px;}
.ls3d{letter-spacing:34.560000px;}
.ls25{letter-spacing:36.000000px;}
.ls1b{letter-spacing:44.766720px;}
.ls17{letter-spacing:62.766720px;}
.ls3f{letter-spacing:194.376000px;}
.ls0{letter-spacing:685.020000px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws6{word-spacing:-18.792000px;}
.ws3{word-spacing:-18.720000px;}
.ws11{word-spacing:-18.432000px;}
.wsa{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws19{word-spacing:-17.568000px;}
.ws12{word-spacing:-17.280000px;}
.ws10{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.275640px;}
.ws7{word-spacing:-15.226440px;}
.ws13{word-spacing:-14.993280px;}
.ws17{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.ws1b{word-spacing:-14.647440px;}
.ws16{word-spacing:-14.645040px;}
.ws15{word-spacing:-13.505760px;}
.ws5{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.447440px;}
.ws18{word-spacing:-9.437760px;}
.ws0{word-spacing:0.000000px;}
._39{margin-left:-12.817920px;}
._38{margin-left:-8.522640px;}
._37{margin-left:-2.928000px;}
._4{margin-left:-1.176000px;}
._3{width:1.116000px;}
._8{width:2.928240px;}
._7{width:4.661280px;}
._0{width:5.886000px;}
._2{width:6.997440px;}
._1{width:8.148000px;}
._10{width:9.864000px;}
._11{width:10.944000px;}
._d{width:12.312000px;}
._b{width:13.464000px;}
._c{width:14.488080px;}
._a{width:15.955920px;}
._16{width:16.996320px;}
._9{width:18.066960px;}
._12{width:19.368000px;}
._15{width:20.388000px;}
._14{width:21.480000px;}
._13{width:22.824000px;}
._34{width:23.976000px;}
._e{width:25.104000px;}
._f{width:26.520000px;}
._2f{width:28.464000px;}
._32{width:29.520000px;}
._2d{width:30.672000px;}
._2e{width:31.752000px;}
._5{width:33.492000px;}
._2b{width:34.776000px;}
._2c{width:36.072000px;}
._30{width:37.656000px;}
._36{width:39.096000px;}
._33{width:40.725600px;}
._1c{width:42.420000px;}
._35{width:44.172000px;}
._3b{width:45.864000px;}
._1d{width:47.532000px;}
._3a{width:49.596000px;}
._41{width:51.888000px;}
._42{width:53.472000px;}
._3c{width:54.936000px;}
._19{width:56.880000px;}
._31{width:58.236000px;}
._23{width:59.868000px;}
._1a{width:72.072000px;}
._40{width:74.928000px;}
._24{width:87.624000px;}
._26{width:89.652000px;}
._21{width:94.644000px;}
._3d{width:107.352000px;}
._20{width:115.812000px;}
._25{width:126.360000px;}
._22{width:133.452000px;}
._17{width:143.436000px;}
._1f{width:151.572000px;}
._3e{width:152.988000px;}
._3f{width:154.176000px;}
._28{width:158.544000px;}
._1e{width:177.840000px;}
._27{width:179.364000px;}
._1b{width:190.452000px;}
._6{width:192.384000px;}
._18{width:194.400000px;}
._29{width:195.552000px;}
._2a{width:846.156000px;}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(16,37,63);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:23.760000px;}
.fsb{font-size:41.760000px;}
.fsa{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs8{font-size:108.000000px;}
.y187{bottom:-4.140000px;}
.y0{bottom:0.000000px;}
.y188{bottom:4.140000px;}
.y179{bottom:4.500000px;}
.y212{bottom:4.680000px;}
.y17b{bottom:5.400000px;}
.y1b0{bottom:5.760000px;}
.y185{bottom:5.940000px;}
.y1b8{bottom:5.985000px;}
.y177{bottom:6.120000px;}
.y1ae{bottom:6.300000px;}
.y1bc{bottom:6.480000px;}
.y211{bottom:6.525000px;}
.y1ac{bottom:6.840000px;}
.y20f{bottom:7.020000px;}
.y26a{bottom:34.305000px;}
.y2e{bottom:57.600000px;}
.y269{bottom:57.810000px;}
.y2d{bottom:77.760000px;}
.y268{bottom:81.330000px;}
.y1e2{bottom:83.085000px;}
.y1f4{bottom:84.630000px;}
.y19d{bottom:87.015000px;}
.y267{bottom:104.790000px;}
.y1e8{bottom:107.355000px;}
.y19e{bottom:109.440000px;}
.y1ff{bottom:110.160000px;}
.y20d{bottom:111.780000px;}
.y239{bottom:112.680000px;}
.y145{bottom:112.860000px;}
.y151{bottom:113.220000px;}
.y276{bottom:114.120000px;}
.y246{bottom:114.660000px;}
.y282{bottom:115.200000px;}
.y90{bottom:115.560000px;}
.y1e6{bottom:116.820000px;}
.ybe{bottom:118.800000px;}
.y124{bottom:120.420000px;}
.y141{bottom:120.600000px;}
.y1fa{bottom:124.455000px;}
.y1f2{bottom:125.640000px;}
.y250{bottom:127.080000px;}
.y286{bottom:127.980000px;}
.y266{bottom:128.310000px;}
.y1e4{bottom:128.340000px;}
.y2c{bottom:130.680000px;}
.y1a8{bottom:130.830000px;}
.ya8{bottom:131.040000px;}
.y1aa{bottom:131.475000px;}
.y19f{bottom:131.910000px;}
.y26d{bottom:132.660000px;}
.y1f8{bottom:133.890000px;}
.y70{bottom:136.260000px;}
.y1fe{bottom:136.800000px;}
.y150{bottom:139.140000px;}
.y4e{bottom:139.500000px;}
.y16a{bottom:139.860000px;}
.y19b{bottom:140.400000px;}
.y16c{bottom:141.810000px;}
.y144{bottom:144.000000px;}
.y275{bottom:145.080000px;}
.y1f6{bottom:145.620000px;}
.y176{bottom:145.905000px;}
.y281{bottom:146.160000px;}
.y8f{bottom:146.520000px;}
.yf6{bottom:149.040000px;}
.y24f{bottom:149.580000px;}
.ybd{bottom:149.760000px;}
.y20c{bottom:150.480000px;}
.y123{bottom:151.560000px;}
.y140{bottom:151.740000px;}
.y265{bottom:151.815000px;}
.y252{bottom:152.970000px;}
.y245{bottom:153.360000px;}
.y1a0{bottom:154.365000px;}
.y1f1{bottom:156.600000px;}
.y1a9{bottom:158.580000px;}
.y174{bottom:159.015000px;}
.y285{bottom:159.120000px;}
.y1e0{bottom:159.300000px;}
.y2b{bottom:159.480000px;}
.y1a7{bottom:160.170000px;}
.ya7{bottom:162.000000px;}
.y1fd{bottom:162.720000px;}
.y251{bottom:163.080000px;}
.y14f{bottom:164.880000px;}
.y16d{bottom:166.530000px;}
.y6f{bottom:167.220000px;}
.y4d{bottom:170.490000px;}
.y169{bottom:170.850000px;}
.y19a{bottom:171.390000px;}
.y175{bottom:173.055000px;}
.y143{bottom:174.990000px;}
.y264{bottom:175.320000px;}
.y1a1{bottom:176.790000px;}
.y280{bottom:177.330000px;}
.y8e{bottom:177.690000px;}
.y26c{bottom:178.590000px;}
.yf5{bottom:180.210000px;}
.ybc{bottom:180.930000px;}
.y122{bottom:182.550000px;}
.y13f{bottom:182.730000px;}
.y287{bottom:186.150000px;}
.y25b{bottom:186.555000px;}
.y274{bottom:187.230000px;}
.y2a{bottom:187.590000px;}
.y1f0{bottom:187.770000px;}
.y20b{bottom:189.390000px;}
.y284{bottom:190.110000px;}
.y238{bottom:190.290000px;}
.y1df{bottom:190.470000px;}
.y14e{bottom:190.830000px;}
.y16e{bottom:191.235000px;}
.y244{bottom:192.270000px;}
.ya6{bottom:193.170000px;}
.y24c{bottom:195.195000px;}
.y248{bottom:195.225000px;}
.y24a{bottom:195.270000px;}
.y259{bottom:195.330000px;}
.y272{bottom:195.690000px;}
.y1fc{bottom:197.130000px;}
.y6e{bottom:198.390000px;}
.y263{bottom:198.825000px;}
.y1a2{bottom:199.260000px;}
.y4c{bottom:201.630000px;}
.y168{bottom:201.990000px;}
.y199{bottom:202.530000px;}
.y190{bottom:206.130000px;}
.y142{bottom:207.390000px;}
.y27f{bottom:208.290000px;}
.y8d{bottom:208.650000px;}
.y1fb{bottom:209.550000px;}
.yf4{bottom:211.170000px;}
.ybb{bottom:211.890000px;}
.y121{bottom:213.690000px;}
.y13e{bottom:213.870000px;}
.y16f{bottom:215.970000px;}
.y14d{bottom:216.750000px;}
.y283{bottom:217.290000px;}
.y29{bottom:218.730000px;}
.y1de{bottom:221.430000px;}
.y1a3{bottom:221.730000px;}
.y262{bottom:222.330000px;}
.ya5{bottom:224.130000px;}
.y26b{bottom:224.670000px;}
.y20a{bottom:228.090000px;}
.ydc{bottom:228.450000px;}
.y237{bottom:229.170000px;}
.y6d{bottom:229.350000px;}
.y243{bottom:230.970000px;}
.y4b{bottom:232.590000px;}
.y167{bottom:232.950000px;}
.y198{bottom:233.490000px;}
.y18f{bottom:237.090000px;}
.y27e{bottom:239.430000px;}
.y8c{bottom:239.790000px;}
.y170{bottom:240.690000px;}
.y271{bottom:241.770000px;}
.yf3{bottom:242.310000px;}
.y14c{bottom:242.670000px;}
.yba{bottom:242.850000px;}
.y1a4{bottom:244.155000px;}
.y120{bottom:244.650000px;}
.y13d{bottom:244.830000px;}
.y261{bottom:245.850000px;}
.y28{bottom:249.690000px;}
.y1ef{bottom:249.870000px;}
.y1dd{bottom:252.570000px;}
.ya4{bottom:255.270000px;}
.y6c{bottom:260.310000px;}
.y4a{bottom:263.730000px;}
.y166{bottom:264.090000px;}
.y197{bottom:264.630000px;}
.y171{bottom:265.425000px;}
.y1a5{bottom:266.610000px;}
.y209{bottom:266.970000px;}
.ydb{bottom:267.150000px;}
.y236{bottom:267.870000px;}
.y18e{bottom:268.230000px;}
.y260{bottom:269.355000px;}
.y242{bottom:269.850000px;}
.y27d{bottom:270.390000px;}
.y8b{bottom:270.750000px;}
.yf2{bottom:273.270000px;}
.yb9{bottom:273.990000px;}
.y11f{bottom:275.790000px;}
.y13c{bottom:275.970000px;}
.y27{bottom:280.830000px;}
.y1dc{bottom:283.530000px;}
.ya3{bottom:286.230000px;}
.y270{bottom:287.850000px;}
.y172{bottom:290.160000px;}
.y6b{bottom:291.450000px;}
.y25f{bottom:292.860000px;}
.y49{bottom:294.690000px;}
.y165{bottom:295.050000px;}
.y196{bottom:295.590000px;}
.y18d{bottom:299.190000px;}
.y200{bottom:300.450000px;}
.y27c{bottom:301.350000px;}
.y8a{bottom:301.710000px;}
.yf1{bottom:304.410000px;}
.yb8{bottom:304.950000px;}
.y208{bottom:305.670000px;}
.yda{bottom:306.030000px;}
.y11e{bottom:306.750000px;}
.y13b{bottom:306.930000px;}
.y241{bottom:308.730000px;}
.y26{bottom:311.790000px;}
.y1ee{bottom:311.970000px;}
.y1db{bottom:314.670000px;}
.y25e{bottom:316.365000px;}
.ya2{bottom:317.370000px;}
.y111{bottom:320.250000px;}
.y6a{bottom:322.410000px;}
.y48{bottom:325.830000px;}
.y164{bottom:326.190000px;}
.y195{bottom:326.730000px;}
.y18c{bottom:330.330000px;}
.y25d{bottom:331.380000px;}
.y27b{bottom:332.490000px;}
.y89{bottom:332.850000px;}
.y26f{bottom:333.930000px;}
.yf0{bottom:335.370000px;}
.yb7{bottom:336.090000px;}
.y11d{bottom:337.890000px;}
.y13a{bottom:338.070000px;}
.y25{bottom:342.930000px;}
.y207{bottom:344.550000px;}
.yd9{bottom:344.730000px;}
.y1da{bottom:345.630000px;}
.y110{bottom:345.990000px;}
.y240{bottom:347.430000px;}
.ya1{bottom:348.330000px;}
.y69{bottom:353.550000px;}
.y47{bottom:356.790000px;}
.y163{bottom:357.150000px;}
.y194{bottom:357.690000px;}
.y18b{bottom:361.290000px;}
.y27a{bottom:363.450000px;}
.y24{bottom:363.810000px;}
.yef{bottom:366.510000px;}
.yb6{bottom:367.050000px;}
.y11c{bottom:368.850000px;}
.y139{bottom:369.030000px;}
.y10f{bottom:371.910000px;}
.y1ed{bottom:374.070000px;}
.y1d9{bottom:376.770000px;}
.ya0{bottom:379.470000px;}
.y26e{bottom:380.010000px;}
.y206{bottom:383.430000px;}
.yd8{bottom:383.610000px;}
.y235{bottom:384.330000px;}
.y23{bottom:384.510000px;}
.y23f{bottom:386.310000px;}
.y46{bottom:387.930000px;}
.y162{bottom:388.290000px;}
.y193{bottom:388.830000px;}
.y18a{bottom:390.090000px;}
.y279{bottom:394.590000px;}
.y88{bottom:394.950000px;}
.yee{bottom:397.470000px;}
.y10e{bottom:397.830000px;}
.yb5{bottom:398.190000px;}
.y11b{bottom:399.990000px;}
.y138{bottom:400.170000px;}
.y22{bottom:405.030000px;}
.y1d8{bottom:407.730000px;}
.y9f{bottom:410.430000px;}
.y68{bottom:415.695000px;}
.y189{bottom:416.055000px;}
.y45{bottom:418.935000px;}
.y161{bottom:419.295000px;}
.y1c8{bottom:419.475000px;}
.y192{bottom:419.835000px;}
.y205{bottom:422.175000px;}
.yd7{bottom:422.355000px;}
.y234{bottom:423.255000px;}
.y10d{bottom:423.795000px;}
.y23e{bottom:425.055000px;}
.y278{bottom:425.595000px;}
.y21{bottom:425.775000px;}
.y87{bottom:425.955000px;}
.yed{bottom:428.655000px;}
.yb4{bottom:429.195000px;}
.y11a{bottom:430.995000px;}
.y137{bottom:431.175000px;}
.y186{bottom:431.715000px;}
.y1ec{bottom:436.215000px;}
.y1d7{bottom:438.735000px;}
.y9e{bottom:441.615000px;}
.y20{bottom:446.475000px;}
.y67{bottom:446.655000px;}
.y191{bottom:448.635000px;}
.y10c{bottom:449.535000px;}
.y44{bottom:450.075000px;}
.y160{bottom:450.435000px;}
.y277{bottom:456.735000px;}
.y86{bottom:457.095000px;}
.y184{bottom:458.715000px;}
.yec{bottom:459.615000px;}
.yb3{bottom:460.335000px;}
.y204{bottom:461.055000px;}
.yd6{bottom:461.235000px;}
.y119{bottom:461.955000px;}
.y136{bottom:462.315000px;}
.y23d{bottom:463.935000px;}
.y1f{bottom:467.175000px;}
.y1d6{bottom:469.875000px;}
.y9d{bottom:472.575000px;}
.y19c{bottom:475.380000px;}
.y10b{bottom:475.455000px;}
.y66{bottom:477.795000px;}
.y15f{bottom:479.235000px;}
.y43{bottom:481.035000px;}
.y1c7{bottom:481.575000px;}
.y183{bottom:483.015000px;}
.yd5{bottom:484.995000px;}
.y1e{bottom:487.875000px;}
.y85{bottom:488.055000px;}
.yeb{bottom:490.755000px;}
.yb2{bottom:491.295000px;}
.y203{bottom:491.655000px;}
.y135{bottom:493.275000px;}
.y1eb{bottom:498.135000px;}
.y1d5{bottom:500.835000px;}
.y10a{bottom:501.375000px;}
.y23c{bottom:502.635000px;}
.y15e{bottom:502.995000px;}
.y16b{bottom:503.100000px;}
.y9c{bottom:503.715000px;}
.y182{bottom:506.415000px;}
.y1d{bottom:508.575000px;}
.y65{bottom:508.755000px;}
.yd4{bottom:508.935000px;}
.y42{bottom:512.175000px;}
.y1c6{bottom:512.535000px;}
.y118{bottom:516.675000px;}
.y84{bottom:519.195000px;}
.yea{bottom:521.715000px;}
.yb1{bottom:522.435000px;}
.y202{bottom:523.155000px;}
.y134{bottom:524.415000px;}
.y109{bottom:527.295000px;}
.y1c{bottom:529.275000px;}
.y181{bottom:529.635000px;}
.y1d4{bottom:531.975000px;}
.yd3{bottom:532.695000px;}
.y9b{bottom:534.675000px;}
.y220{bottom:539.535000px;}
.y64{bottom:539.895000px;}
.y23b{bottom:541.515000px;}
.y117{bottom:542.595000px;}
.y41{bottom:543.135000px;}
.y1c5{bottom:543.675000px;}
.y1b{bottom:549.975000px;}
.y83{bottom:550.155000px;}
.ye9{bottom:552.855000px;}
.y108{bottom:553.035000px;}
.yb0{bottom:553.395000px;}
.y133{bottom:555.375000px;}
.yd2{bottom:556.455000px;}
.y1ea{bottom:558.075000px;}
.y1d3{bottom:562.935000px;}
.y9a{bottom:565.815000px;}
.y21f{bottom:566.535000px;}
.y116{bottom:569.415000px;}
.y1a{bottom:570.675000px;}
.y63{bottom:570.855000px;}
.y40{bottom:574.275000px;}
.y1c4{bottom:574.635000px;}
.y23a{bottom:575.895000px;}
.y180{bottom:576.075000px;}
.y24e{bottom:577.620000px;}
.y233{bottom:578.415000px;}
.y107{bottom:578.955000px;}
.yd1{bottom:580.215000px;}
.y82{bottom:581.295000px;}
.y1e9{bottom:582.015000px;}
.ye8{bottom:583.815000px;}
.y1f3{bottom:584.280000px;}
.yaf{bottom:584.535000px;}
.y25c{bottom:586.080000px;}
.y132{bottom:586.515000px;}
.y21e{bottom:590.835000px;}
.y19{bottom:591.375000px;}
.y1d2{bottom:594.075000px;}
.y115{bottom:595.335000px;}
.y99{bottom:596.775000px;}
.y17f{bottom:599.295000px;}
.y62{bottom:601.995000px;}
.yd0{bottom:603.975000px;}
.y106{bottom:604.875000px;}
.y3f{bottom:605.235000px;}
.y1c3{bottom:605.595000px;}
.y18{bottom:612.075000px;}
.y81{bottom:612.255000px;}
.y21d{bottom:614.055000px;}
.ye7{bottom:614.955000px;}
.yae{bottom:615.495000px;}
.y232{bottom:617.295000px;}
.y131{bottom:617.475000px;}
.y24d{bottom:620.820000px;}
.y114{bottom:622.335000px;}
.y17e{bottom:622.515000px;}
.y1d1{bottom:625.035000px;}
.y98{bottom:627.915000px;}
.y105{bottom:630.795000px;}
.y17{bottom:632.775000px;}
.y61{bottom:632.955000px;}
.y3e{bottom:636.375000px;}
.y1c2{bottom:636.735000px;}
.y21c{bottom:637.455000px;}
.y80{bottom:643.395000px;}
.ye6{bottom:645.915000px;}
.yad{bottom:646.635000px;}
.y130{bottom:648.615000px;}
.y113{bottom:649.335000px;}
.y253{bottom:650.160000px;}
.ycf{bottom:651.675000px;}
.y1a6{bottom:651.780000px;}
.y1f5{bottom:652.680000px;}
.y16{bottom:653.475000px;}
.y231{bottom:656.025000px;}
.y1d0{bottom:656.205000px;}
.y104{bottom:656.565000px;}
.y97{bottom:658.905000px;}
.y255{bottom:660.240000px;}
.y21b{bottom:660.705000px;}
.y254{bottom:661.320000px;}
.y60{bottom:664.125000px;}
.y3d{bottom:667.365000px;}
.y1c1{bottom:667.725000px;}
.y17d{bottom:669.165000px;}
.y230{bottom:672.405000px;}
.y24b{bottom:672.660000px;}
.y247{bottom:673.740000px;}
.y7f{bottom:674.385000px;}
.y257{bottom:674.820000px;}
.yce{bottom:675.465000px;}
.y112{bottom:676.185000px;}
.ye5{bottom:677.085000px;}
.yac{bottom:677.625000px;}
.y12f{bottom:679.605000px;}
.y173{bottom:681.120000px;}
.y103{bottom:682.485000px;}
.y249{bottom:683.820000px;}
.y21a{bottom:683.925000px;}
.y1cf{bottom:687.165000px;}
.y96{bottom:690.045000px;}
.y17c{bottom:692.385000px;}
.y15{bottom:694.905000px;}
.y5f{bottom:695.085000px;}
.y256{bottom:696.240000px;}
.y258{bottom:698.400000px;}
.y3c{bottom:698.505000px;}
.y1c0{bottom:698.865000px;}
.ycd{bottom:699.225000px;}
.y22f{bottom:699.405000px;}
.y201{bottom:705.165000px;}
.y7e{bottom:705.525000px;}
.y219{bottom:707.145000px;}
.ye4{bottom:708.045000px;}
.y1f9{bottom:710.460000px;}
.y102{bottom:710.745000px;}
.y14{bottom:715.605000px;}
.yab{bottom:716.505000px;}
.y1ce{bottom:718.305000px;}
.y95{bottom:718.665000px;}
.y128{bottom:721.005000px;}
.ycc{bottom:723.165000px;}
.y22e{bottom:723.885000px;}
.y5e{bottom:726.225000px;}
.y3b{bottom:729.465000px;}
.y1bf{bottom:729.825000px;}
.y218{bottom:730.365000px;}
.y13{bottom:736.305000px;}
.y7d{bottom:736.485000px;}
.y1f7{bottom:737.280000px;}
.y17a{bottom:738.825000px;}
.ye3{bottom:739.185000px;}
.y101{bottom:741.705000px;}
.y94{bottom:744.585000px;}
.ycb{bottom:746.925000px;}
.y22d{bottom:747.105000px;}
.y1cd{bottom:749.265000px;}
.y127{bottom:752.145000px;}
.y217{bottom:753.585000px;}
.y12{bottom:757.005000px;}
.y5d{bottom:757.185000px;}
.y1be{bottom:758.625000px;}
.y3a{bottom:760.605000px;}
.y178{bottom:762.045000px;}
.y7c{bottom:767.625000px;}
.y93{bottom:770.145000px;}
.y22c{bottom:770.325000px;}
.yaa{bottom:770.505000px;}
.yca{bottom:770.685000px;}
.y100{bottom:772.845000px;}
.y216{bottom:776.985000px;}
.y11{bottom:777.705000px;}
.y1cc{bottom:780.405000px;}
.y25a{bottom:780.660000px;}
.y126{bottom:780.765000px;}
.y15d{bottom:783.105000px;}
.y1bd{bottom:784.545000px;}
.y14b{bottom:787.965000px;}
.y5c{bottom:788.325000px;}
.y39{bottom:791.565000px;}
.y22b{bottom:793.545000px;}
.yc9{bottom:794.445000px;}
.y92{bottom:796.245000px;}
.y10{bottom:798.405000px;}
.y7b{bottom:798.585000px;}
.y1bb{bottom:800.205000px;}
.ye2{bottom:801.285000px;}
.yff{bottom:803.805000px;}
.y125{bottom:806.685000px;}
.y1cb{bottom:811.365000px;}
.y15c{bottom:814.065000px;}
.y22a{bottom:816.765000px;}
.yc8{bottom:818.385000px;}
.yf{bottom:819.105000px;}
.y5b{bottom:819.285000px;}
.y91{bottom:822.165000px;}
.y215{bottom:823.425000px;}
.y1ba{bottom:824.685000px;}
.y7a{bottom:829.725000px;}
.ye1{bottom:832.245000px;}
.yfe{bottom:832.605000px;}
.y12e{bottom:834.765000px;}
.y229{bottom:839.985000px;}
.y1ca{bottom:840.165000px;}
.yc7{bottom:842.145000px;}
.y15b{bottom:845.205000px;}
.y214{bottom:846.645000px;}
.ye{bottom:847.545000px;}
.y1b9{bottom:847.905000px;}
.y5a{bottom:848.085000px;}
.y14a{bottom:850.425000px;}
.y38{bottom:854.025000px;}
.yfd{bottom:858.345000px;}
.y79{bottom:860.685000px;}
.ye0{bottom:863.385000px;}
.y1c9{bottom:864.105000px;}
.yc6{bottom:865.905000px;}
.y1e1{bottom:866.880000px;}
.y213{bottom:869.865000px;}
.yd{bottom:871.125000px;}
.y59{bottom:874.005000px;}
.y15a{bottom:876.165000px;}
.y149{bottom:881.025000px;}
.yfc{bottom:884.265000px;}
.y228{bottom:886.605000px;}
.yc5{bottom:889.665000px;}
.y37{bottom:890.745000px;}
.y78{bottom:891.825000px;}
.y210{bottom:893.085000px;}
.ydf{bottom:894.345000px;}
.yc{bottom:894.525000px;}
.y12d{bottom:896.865000px;}
.y58{bottom:899.790000px;}
.y159{bottom:907.350000px;}
.y227{bottom:909.870000px;}
.yfb{bottom:910.230000px;}
.yb{bottom:910.410000px;}
.y148{bottom:912.570000px;}
.yc4{bottom:913.650000px;}
.y1b7{bottom:917.610000px;}
.y20e{bottom:919.050000px;}
.y1e3{bottom:921.780000px;}
.y77{bottom:922.830000px;}
.y36{bottom:923.550000px;}
.yde{bottom:925.530000px;}
.y57{bottom:925.710000px;}
.y12c{bottom:928.050000px;}
.ya{bottom:931.110000px;}
.y226{bottom:933.090000px;}
.yfa{bottom:936.150000px;}
.yc3{bottom:937.410000px;}
.y158{bottom:938.310000px;}
.y1b6{bottom:941.010000px;}
.y147{bottom:943.530000px;}
.y56{bottom:951.630000px;}
.y9{bottom:951.810000px;}
.ydd{bottom:952.890000px;}
.y76{bottom:953.970000px;}
.y225{bottom:956.310000px;}
.y35{bottom:956.490000px;}
.y12b{bottom:959.010000px;}
.yc2{bottom:961.170000px;}
.yf9{bottom:961.890000px;}
.y1b5{bottom:964.230000px;}
.y157{bottom:969.450000px;}
.y8{bottom:972.510000px;}
.y146{bottom:974.670000px;}
.y1e7{bottom:975.960000px;}
.y55{bottom:977.550000px;}
.y224{bottom:979.530000px;}
.y75{bottom:984.930000px;}
.y1b4{bottom:987.450000px;}
.yf8{bottom:987.810000px;}
.y34{bottom:989.250000px;}
.y12a{bottom:990.150000px;}
.y7{bottom:993.210000px;}
.y156{bottom:1000.410000px;}
.y1e5{bottom:1002.780000px;}
.y223{bottom:1002.930000px;}
.y54{bottom:1003.290000px;}
.y1b3{bottom:1010.670000px;}
.y6{bottom:1013.910000px;}
.y74{bottom:1016.070000px;}
.y129{bottom:1018.950000px;}
.y33{bottom:1022.190000px;}
.yc1{bottom:1023.810000px;}
.y222{bottom:1026.150000px;}
.y53{bottom:1029.210000px;}
.y155{bottom:1031.550000px;}
.y1b2{bottom:1033.890000px;}
.y5{bottom:1042.350000px;}
.y73{bottom:1047.030000px;}
.y221{bottom:1051.890000px;}
.y32{bottom:1054.950000px;}
.y52{bottom:1055.130000px;}
.y1b1{bottom:1057.110000px;}
.y4{bottom:1057.470000px;}
.yc0{bottom:1062.510000px;}
.y3{bottom:1072.590000px;}
.yf7{bottom:1077.810000px;}
.y72{bottom:1078.170000px;}
.y1af{bottom:1080.510000px;}
.y51{bottom:1081.050000px;}
.y2{bottom:1086.270000px;}
.y31{bottom:1087.890000px;}
.y154{bottom:1091.310000px;}
.y273{bottom:1094.190000px;}
.ybf{bottom:1101.390000px;}
.y1ad{bottom:1103.730000px;}
.ya9{bottom:1108.770000px;}
.y50{bottom:1109.130000px;}
.y1{bottom:1109.490000px;}
.y153{bottom:1117.230000px;}
.y30{bottom:1120.650000px;}
.y1ab{bottom:1129.650000px;}
.y4f{bottom:1139.910000px;}
.y71{bottom:1140.270000px;}
.y152{bottom:1143.180000px;}
.y2f{bottom:1144.080000px;}
.h3{height:17.518359px;}
.h22{height:22.500000px;}
.h23{height:22.536000px;}
.h24{height:23.580000px;}
.h21{height:23.760000px;}
.h38{height:23.796000px;}
.h39{height:24.660000px;}
.h2a{height:24.696000px;}
.h20{height:24.840000px;}
.h37{height:29.974219px;}
.h41{height:34.625391px;}
.h5{height:37.691016px;}
.h6{height:39.814453px;}
.h4{height:40.341797px;}
.h32{height:40.968281px;}
.he{height:41.493516px;}
.h1b{height:42.894141px;}
.h2c{height:45.410625px;}
.h4e{height:45.720000px;}
.h9{height:47.545312px;}
.h2b{height:48.095156px;}
.h2{height:48.839062px;}
.h18{height:49.992188px;}
.h14{height:53.573906px;}
.ha{height:56.320312px;}
.hf{height:58.621992px;}
.h12{height:58.651172px;}
.h17{height:59.614102px;}
.h13{height:60.226875px;}
.h8{height:62.327813px;}
.h10{height:64.546875px;}
.h27{height:65.647969px;}
.h4d{height:69.300000px;}
.hb{height:70.628906px;}
.hd{height:70.664062px;}
.h16{height:71.824219px;}
.hc{height:72.562500px;}
.h1d{height:74.039062px;}
.h15{height:74.953125px;}
.h7{height:75.093750px;}
.h19{height:76.317188px;}
.h2f{height:78.416016px;}
.h36{height:80.441367px;}
.h11{height:84.898125px;}
.h4c{height:92.700000px;}
.h2d{height:99.540000px;}
.h31{height:101.160000px;}
.h4b{height:116.280000px;}
.h30{height:121.680000px;}
.h35{height:138.780000px;}
.h4a{height:139.680000px;}
.h3d{height:143.640000px;}
.h2e{height:144.900000px;}
.h29{height:145.800000px;}
.h1f{height:160.200000px;}
.h34{height:162.000000px;}
.h33{height:162.180000px;}
.h49{height:163.260000px;}
.h3c{height:166.140000px;}
.h3f{height:169.560000px;}
.h28{height:172.980000px;}
.h3e{height:179.640000px;}
.h26{height:185.400000px;}
.h48{height:186.660000px;}
.h1c{height:187.020000px;}
.h1e{height:187.380000px;}
.h47{height:210.240000px;}
.h3a{height:211.680000px;}
.h3b{height:211.860000px;}
.h46{height:233.820000px;}
.h45{height:257.220000px;}
.h44{height:280.800000px;}
.h43{height:304.200000px;}
.h42{height:327.780000px;}
.h40{height:342.720000px;}
.h25{height:370.800000px;}
.h1a{height:374.040000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3f{width:35.280000px;}
.w1a{width:35.460000px;}
.w4a{width:36.000000px;}
.w27{width:36.180000px;}
.w52{width:36.360000px;}
.w33{width:36.540000px;}
.w59{width:36.720000px;}
.w1b{width:37.800000px;}
.w40{width:37.980000px;}
.w28{width:38.520000px;}
.w4b{width:38.700000px;}
.w34{width:38.880000px;}
.w53{width:39.060000px;}
.w43{width:39.240000px;}
.w1f{width:39.420000px;}
.w63{width:39.600000px;}
.w2c{width:40.140000px;}
.w38{width:40.500000px;}
.w42{width:42.300000px;}
.w41{width:42.336000px;}
.w1e{width:42.480000px;}
.w1c{width:42.516000px;}
.w2b{width:43.200000px;}
.w29{width:43.236000px;}
.w37{width:43.560000px;}
.w35{width:43.596000px;}
.w5a{width:44.280000px;}
.w62{width:44.460000px;}
.w46{width:45.360000px;}
.w22{width:45.540000px;}
.w4e{width:46.080000px;}
.w2f{width:46.260000px;}
.w56{width:46.440000px;}
.w3b{width:46.620000px;}
.w21{width:46.800000px;}
.w45{width:46.980000px;}
.w2e{width:47.520000px;}
.w47{width:47.556000px;}
.w4d{width:47.700000px;}
.w23{width:47.736000px;}
.w3a{width:47.880000px;}
.w55{width:48.060000px;}
.w68{width:48.240000px;}
.w4f{width:48.276000px;}
.w30{width:48.456000px;}
.w57{width:48.636000px;}
.w3c{width:48.816000px;}
.w1d{width:49.860000px;}
.w5c{width:50.400000px;}
.w2a{width:50.580000px;}
.w36{width:50.940000px;}
.w24{width:51.300000px;}
.w44{width:51.336000px;}
.w48{width:51.480000px;}
.w20{width:51.516000px;}
.w16{width:51.840000px;}
.w31{width:52.020000px;}
.w4c{width:52.056000px;}
.w50{width:52.200000px;}
.w2d{width:52.236000px;}
.w54{width:52.416000px;}
.w3d{width:52.560000px;}
.w39{width:52.596000px;}
.w64{width:53.100000px;}
.w4{width:54.180000px;}
.w18{width:54.360000px;}
.w49{width:55.836000px;}
.w25{width:56.016000px;}
.w67{width:56.340000px;}
.w58{width:56.916000px;}
.w3e{width:57.096000px;}
.w60{width:57.240000px;}
.w13{width:59.220000px;}
.w65{width:59.940000px;}
.w66{width:61.200000px;}
.w5f{width:62.640000px;}
.w5d{width:64.620000px;}
.w12{width:66.780000px;}
.w15{width:67.140000px;}
.w61{width:79.200000px;}
.wb{width:95.976000px;}
.w10{width:97.056000px;}
.w9{width:97.236000px;}
.w6{width:97.596000px;}
.w8{width:99.756000px;}
.wc{width:100.800000px;}
.wd{width:100.836000px;}
.w11{width:101.016000px;}
.w7{width:102.060000px;}
.w19{width:111.816000px;}
.w26{width:112.536000px;}
.w32{width:113.976000px;}
.w51{width:114.156000px;}
.w5e{width:132.840000px;}
.w5{width:189.750000px;}
.wa{width:191.910000px;}
.w17{width:244.980000px;}
.w14{width:260.100000px;}
.w5b{width:346.140000px;}
.w3{width:423.000000px;}
.wf{width:437.400000px;}
.w2{width:570.960000px;}
.we{width:586.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x30{left:5.760000px;}
.x5a{left:7.020000px;}
.x25{left:9.330000px;}
.x67{left:10.980000px;}
.x72{left:13.320000px;}
.x65{left:15.300000px;}
.x23{left:16.530000px;}
.x66{left:17.685000px;}
.x73{left:19.080000px;}
.x42{left:20.850000px;}
.x63{left:22.860000px;}
.x29{left:24.660000px;}
.x2b{left:26.820000px;}
.x22{left:29.520000px;}
.x48{left:30.780000px;}
.x3d{left:33.840000px;}
.x64{left:35.325000px;}
.x21{left:37.110000px;}
.x2d{left:39.600000px;}
.x27{left:42.840000px;}
.x20{left:44.715000px;}
.x32{left:47.340000px;}
.x4a{left:50.445000px;}
.x62{left:51.696000px;}
.x2f{left:57.780000px;}
.x38{left:59.760000px;}
.x31{left:62.280000px;}
.x36{left:64.260000px;}
.x49{left:65.745000px;}
.x2c{left:67.320000px;}
.x35{left:68.625000px;}
.x39{left:70.425000px;}
.x4b{left:71.865000px;}
.x33{left:72.945000px;}
.x34{left:74.385000px;}
.x2e{left:77.625000px;}
.x37{left:86.625000px;}
.x3b{left:95.985000px;}
.x2{left:127.656000px;}
.x6{left:139.716000px;}
.x10{left:154.650000px;}
.x7a{left:161.100000px;}
.x1b{left:170.130000px;}
.x41{left:174.990000px;}
.xe{left:180.750000px;}
.x1f{left:181.980000px;}
.x56{left:184.890000px;}
.x11{left:187.050000px;}
.x3a{left:199.830000px;}
.x26{left:200.910000px;}
.x13{left:207.750000px;}
.x68{left:216.210000px;}
.x57{left:221.430000px;}
.x43{left:244.800000px;}
.x5{left:246.090000px;}
.x3f{left:250.770000px;}
.x45{left:251.850000px;}
.xc{left:255.270000px;}
.x18{left:259.050000px;}
.x58{left:260.310000px;}
.x7e{left:280.080000px;}
.x15{left:281.955000px;}
.x16{left:292.575000px;}
.x4{left:296.895000px;}
.x69{left:298.875000px;}
.x7b{left:301.860000px;}
.x59{left:303.915000px;}
.x50{left:336.960000px;}
.x7c{left:338.940000px;}
.x1{left:341.355000px;}
.x55{left:344.160000px;}
.x7{left:348.555000px;}
.x6a{left:349.815000px;}
.x5b{left:354.855000px;}
.x7d{left:356.940000px;}
.x1e{left:387.255000px;}
.x28{left:391.755000px;}
.x3c{left:393.015000px;}
.x75{left:394.020000px;}
.x5c{left:398.415000px;}
.x4c{left:416.775000px;}
.x51{left:419.040000px;}
.x8{left:426.495000px;}
.x6b{left:433.875000px;}
.x5d{left:438.915000px;}
.x46{left:442.875000px;}
.x3{left:446.475000px;}
.x1c{left:467.745000px;}
.x54{left:474.300000px;}
.x52{left:478.440000px;}
.x6c{left:486.285000px;}
.x4f{left:487.800000px;}
.x2a{left:489.345000px;}
.x5e{left:491.505000px;}
.x79{left:494.100000px;}
.x4e{left:506.265000px;}
.x76{left:508.860000px;}
.xb{left:519.585000px;}
.x1a{left:532.545000px;}
.x6d{left:534.345000px;}
.x47{left:540.285000px;}
.x78{left:552.600000px;}
.x77{left:566.100000px;}
.x6e{left:580.785000px;}
.x5f{left:586.005000px;}
.x17{left:590.865000px;}
.x12{left:593.385000px;}
.xf{left:613.005000px;}
.xd{left:615.525000px;}
.x6f{left:619.845000px;}
.x60{left:624.885000px;}
.x19{left:631.410000px;}
.x7f{left:637.920000px;}
.x9{left:654.630000px;}
.x70{left:668.490000px;}
.x61{left:673.710000px;}
.x24{left:692.640000px;}
.x44{left:696.600000px;}
.x71{left:721.050000px;}
.x4d{left:726.630000px;}
.x53{left:738.870000px;}
.x14{left:748.770000px;}
.x1d{left:755.790000px;}
.xa{left:757.230000px;}
.x40{left:759.750000px;}
.x3e{left:765.510000px;}
.x74{left:780.270000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls1d{letter-spacing:-0.896000pt;}
.ls18{letter-spacing:-0.832000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.544000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.ls40{letter-spacing:-0.384000pt;}
.ls29{letter-spacing:-0.289067pt;}
.ls42{letter-spacing:-0.286933pt;}
.ls3{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls24{letter-spacing:-0.051840pt;}
.ls2{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.023040pt;}
.ls23{letter-spacing:0.047360pt;}
.ls11{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.096000pt;}
.ls1f{letter-spacing:0.106667pt;}
.lsc{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.133333pt;}
.ls7{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.256000pt;}
.ls41{letter-spacing:0.271467pt;}
.ls5{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.384000pt;}
.ls22{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.704000pt;}
.ls35{letter-spacing:0.746667pt;}
.ls30{letter-spacing:0.773120pt;}
.ls2b{letter-spacing:1.280000pt;}
.ls9{letter-spacing:1.408000pt;}
.ls2d{letter-spacing:1.920000pt;}
.ls2e{letter-spacing:2.560000pt;}
.ls28{letter-spacing:3.200000pt;}
.ls21{letter-spacing:3.840000pt;}
.ls32{letter-spacing:4.480000pt;}
.ls26{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:5.760000pt;}
.ls2a{letter-spacing:6.400000pt;}
.ls31{letter-spacing:7.040000pt;}
.ls6{letter-spacing:7.200000pt;}
.ls33{letter-spacing:8.320000pt;}
.ls19{letter-spacing:10.880000pt;}
.ls3a{letter-spacing:11.520000pt;}
.ls36{letter-spacing:12.160000pt;}
.ls27{letter-spacing:12.800000pt;}
.ls34{letter-spacing:14.080000pt;}
.ls3b{letter-spacing:15.360000pt;}
.ls3e{letter-spacing:16.000000pt;}
.ls3c{letter-spacing:16.640000pt;}
.ls39{letter-spacing:23.680000pt;}
.ls2c{letter-spacing:26.240000pt;}
.ls38{letter-spacing:28.160000pt;}
.ls37{letter-spacing:30.080000pt;}
.ls8{letter-spacing:30.186667pt;}
.lsa{letter-spacing:30.208000pt;}
.ls3d{letter-spacing:30.720000pt;}
.ls25{letter-spacing:32.000000pt;}
.ls1b{letter-spacing:39.792640pt;}
.ls17{letter-spacing:55.792640pt;}
.ls3f{letter-spacing:172.778667pt;}
.ls0{letter-spacing:608.906667pt;}
.wse{word-spacing:-53.120000pt;}
.ws6{word-spacing:-16.704000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws11{word-spacing:-16.384000pt;}
.wsa{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws19{word-spacing:-15.616000pt;}
.ws12{word-spacing:-15.360000pt;}
.ws10{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.578347pt;}
.ws7{word-spacing:-13.534613pt;}
.ws13{word-spacing:-13.327360pt;}
.ws17{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.ws1b{word-spacing:-13.019947pt;}
.ws16{word-spacing:-13.017813pt;}
.ws15{word-spacing:-12.005120pt;}
.ws5{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.953280pt;}
.ws18{word-spacing:-8.389120pt;}
.ws0{word-spacing:0.000000pt;}
._39{margin-left:-11.393707pt;}
._38{margin-left:-7.575680pt;}
._37{margin-left:-2.602667pt;}
._4{margin-left:-1.045333pt;}
._3{width:0.992000pt;}
._8{width:2.602880pt;}
._7{width:4.143360pt;}
._0{width:5.232000pt;}
._2{width:6.219947pt;}
._1{width:7.242667pt;}
._10{width:8.768000pt;}
._11{width:9.728000pt;}
._d{width:10.944000pt;}
._b{width:11.968000pt;}
._c{width:12.878293pt;}
._a{width:14.183040pt;}
._16{width:15.107840pt;}
._9{width:16.059520pt;}
._12{width:17.216000pt;}
._15{width:18.122667pt;}
._14{width:19.093333pt;}
._13{width:20.288000pt;}
._34{width:21.312000pt;}
._e{width:22.314667pt;}
._f{width:23.573333pt;}
._2f{width:25.301333pt;}
._32{width:26.240000pt;}
._2d{width:27.264000pt;}
._2e{width:28.224000pt;}
._5{width:29.770667pt;}
._2b{width:30.912000pt;}
._2c{width:32.064000pt;}
._30{width:33.472000pt;}
._36{width:34.752000pt;}
._33{width:36.200533pt;}
._1c{width:37.706667pt;}
._35{width:39.264000pt;}
._3b{width:40.768000pt;}
._1d{width:42.250667pt;}
._3a{width:44.085333pt;}
._41{width:46.122667pt;}
._42{width:47.530667pt;}
._3c{width:48.832000pt;}
._19{width:50.560000pt;}
._31{width:51.765333pt;}
._23{width:53.216000pt;}
._1a{width:64.064000pt;}
._40{width:66.602667pt;}
._24{width:77.888000pt;}
._26{width:79.690667pt;}
._21{width:84.128000pt;}
._3d{width:95.424000pt;}
._20{width:102.944000pt;}
._25{width:112.320000pt;}
._22{width:118.624000pt;}
._17{width:127.498667pt;}
._1f{width:134.730667pt;}
._3e{width:135.989333pt;}
._3f{width:137.045333pt;}
._28{width:140.928000pt;}
._1e{width:158.080000pt;}
._27{width:159.434667pt;}
._1b{width:169.290667pt;}
._6{width:171.008000pt;}
._18{width:172.800000pt;}
._29{width:173.824000pt;}
._2a{width:752.138667pt;}
.fs1{font-size:21.120000pt;}
.fsb{font-size:37.120000pt;}
.fsa{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs8{font-size:96.000000pt;}
.y187{bottom:-3.680000pt;}
.y0{bottom:0.000000pt;}
.y188{bottom:3.680000pt;}
.y179{bottom:4.000000pt;}
.y212{bottom:4.160000pt;}
.y17b{bottom:4.800000pt;}
.y1b0{bottom:5.120000pt;}
.y185{bottom:5.280000pt;}
.y1b8{bottom:5.320000pt;}
.y177{bottom:5.440000pt;}
.y1ae{bottom:5.600000pt;}
.y1bc{bottom:5.760000pt;}
.y211{bottom:5.800000pt;}
.y1ac{bottom:6.080000pt;}
.y20f{bottom:6.240000pt;}
.y26a{bottom:30.493333pt;}
.y2e{bottom:51.200000pt;}
.y269{bottom:51.386667pt;}
.y2d{bottom:69.120000pt;}
.y268{bottom:72.293333pt;}
.y1e2{bottom:73.853333pt;}
.y1f4{bottom:75.226667pt;}
.y19d{bottom:77.346667pt;}
.y267{bottom:93.146667pt;}
.y1e8{bottom:95.426667pt;}
.y19e{bottom:97.280000pt;}
.y1ff{bottom:97.920000pt;}
.y20d{bottom:99.360000pt;}
.y239{bottom:100.160000pt;}
.y145{bottom:100.320000pt;}
.y151{bottom:100.640000pt;}
.y276{bottom:101.440000pt;}
.y246{bottom:101.920000pt;}
.y282{bottom:102.400000pt;}
.y90{bottom:102.720000pt;}
.y1e6{bottom:103.840000pt;}
.ybe{bottom:105.600000pt;}
.y124{bottom:107.040000pt;}
.y141{bottom:107.200000pt;}
.y1fa{bottom:110.626667pt;}
.y1f2{bottom:111.680000pt;}
.y250{bottom:112.960000pt;}
.y286{bottom:113.760000pt;}
.y266{bottom:114.053333pt;}
.y1e4{bottom:114.080000pt;}
.y2c{bottom:116.160000pt;}
.y1a8{bottom:116.293333pt;}
.ya8{bottom:116.480000pt;}
.y1aa{bottom:116.866667pt;}
.y19f{bottom:117.253333pt;}
.y26d{bottom:117.920000pt;}
.y1f8{bottom:119.013333pt;}
.y70{bottom:121.120000pt;}
.y1fe{bottom:121.600000pt;}
.y150{bottom:123.680000pt;}
.y4e{bottom:124.000000pt;}
.y16a{bottom:124.320000pt;}
.y19b{bottom:124.800000pt;}
.y16c{bottom:126.053333pt;}
.y144{bottom:128.000000pt;}
.y275{bottom:128.960000pt;}
.y1f6{bottom:129.440000pt;}
.y176{bottom:129.693333pt;}
.y281{bottom:129.920000pt;}
.y8f{bottom:130.240000pt;}
.yf6{bottom:132.480000pt;}
.y24f{bottom:132.960000pt;}
.ybd{bottom:133.120000pt;}
.y20c{bottom:133.760000pt;}
.y123{bottom:134.720000pt;}
.y140{bottom:134.880000pt;}
.y265{bottom:134.946667pt;}
.y252{bottom:135.973333pt;}
.y245{bottom:136.320000pt;}
.y1a0{bottom:137.213333pt;}
.y1f1{bottom:139.200000pt;}
.y1a9{bottom:140.960000pt;}
.y174{bottom:141.346667pt;}
.y285{bottom:141.440000pt;}
.y1e0{bottom:141.600000pt;}
.y2b{bottom:141.760000pt;}
.y1a7{bottom:142.373333pt;}
.ya7{bottom:144.000000pt;}
.y1fd{bottom:144.640000pt;}
.y251{bottom:144.960000pt;}
.y14f{bottom:146.560000pt;}
.y16d{bottom:148.026667pt;}
.y6f{bottom:148.640000pt;}
.y4d{bottom:151.546667pt;}
.y169{bottom:151.866667pt;}
.y19a{bottom:152.346667pt;}
.y175{bottom:153.826667pt;}
.y143{bottom:155.546667pt;}
.y264{bottom:155.840000pt;}
.y1a1{bottom:157.146667pt;}
.y280{bottom:157.626667pt;}
.y8e{bottom:157.946667pt;}
.y26c{bottom:158.746667pt;}
.yf5{bottom:160.186667pt;}
.ybc{bottom:160.826667pt;}
.y122{bottom:162.266667pt;}
.y13f{bottom:162.426667pt;}
.y287{bottom:165.466667pt;}
.y25b{bottom:165.826667pt;}
.y274{bottom:166.426667pt;}
.y2a{bottom:166.746667pt;}
.y1f0{bottom:166.906667pt;}
.y20b{bottom:168.346667pt;}
.y284{bottom:168.986667pt;}
.y238{bottom:169.146667pt;}
.y1df{bottom:169.306667pt;}
.y14e{bottom:169.626667pt;}
.y16e{bottom:169.986667pt;}
.y244{bottom:170.906667pt;}
.ya6{bottom:171.706667pt;}
.y24c{bottom:173.506667pt;}
.y248{bottom:173.533333pt;}
.y24a{bottom:173.573333pt;}
.y259{bottom:173.626667pt;}
.y272{bottom:173.946667pt;}
.y1fc{bottom:175.226667pt;}
.y6e{bottom:176.346667pt;}
.y263{bottom:176.733333pt;}
.y1a2{bottom:177.120000pt;}
.y4c{bottom:179.226667pt;}
.y168{bottom:179.546667pt;}
.y199{bottom:180.026667pt;}
.y190{bottom:183.226667pt;}
.y142{bottom:184.346667pt;}
.y27f{bottom:185.146667pt;}
.y8d{bottom:185.466667pt;}
.y1fb{bottom:186.266667pt;}
.yf4{bottom:187.706667pt;}
.ybb{bottom:188.346667pt;}
.y121{bottom:189.946667pt;}
.y13e{bottom:190.106667pt;}
.y16f{bottom:191.973333pt;}
.y14d{bottom:192.666667pt;}
.y283{bottom:193.146667pt;}
.y29{bottom:194.426667pt;}
.y1de{bottom:196.826667pt;}
.y1a3{bottom:197.093333pt;}
.y262{bottom:197.626667pt;}
.ya5{bottom:199.226667pt;}
.y26b{bottom:199.706667pt;}
.y20a{bottom:202.746667pt;}
.ydc{bottom:203.066667pt;}
.y237{bottom:203.706667pt;}
.y6d{bottom:203.866667pt;}
.y243{bottom:205.306667pt;}
.y4b{bottom:206.746667pt;}
.y167{bottom:207.066667pt;}
.y198{bottom:207.546667pt;}
.y18f{bottom:210.746667pt;}
.y27e{bottom:212.826667pt;}
.y8c{bottom:213.146667pt;}
.y170{bottom:213.946667pt;}
.y271{bottom:214.906667pt;}
.yf3{bottom:215.386667pt;}
.y14c{bottom:215.706667pt;}
.yba{bottom:215.866667pt;}
.y1a4{bottom:217.026667pt;}
.y120{bottom:217.466667pt;}
.y13d{bottom:217.626667pt;}
.y261{bottom:218.533333pt;}
.y28{bottom:221.946667pt;}
.y1ef{bottom:222.106667pt;}
.y1dd{bottom:224.506667pt;}
.ya4{bottom:226.906667pt;}
.y6c{bottom:231.386667pt;}
.y4a{bottom:234.426667pt;}
.y166{bottom:234.746667pt;}
.y197{bottom:235.226667pt;}
.y171{bottom:235.933333pt;}
.y1a5{bottom:236.986667pt;}
.y209{bottom:237.306667pt;}
.ydb{bottom:237.466667pt;}
.y236{bottom:238.106667pt;}
.y18e{bottom:238.426667pt;}
.y260{bottom:239.426667pt;}
.y242{bottom:239.866667pt;}
.y27d{bottom:240.346667pt;}
.y8b{bottom:240.666667pt;}
.yf2{bottom:242.906667pt;}
.yb9{bottom:243.546667pt;}
.y11f{bottom:245.146667pt;}
.y13c{bottom:245.306667pt;}
.y27{bottom:249.626667pt;}
.y1dc{bottom:252.026667pt;}
.ya3{bottom:254.426667pt;}
.y270{bottom:255.866667pt;}
.y172{bottom:257.920000pt;}
.y6b{bottom:259.066667pt;}
.y25f{bottom:260.320000pt;}
.y49{bottom:261.946667pt;}
.y165{bottom:262.266667pt;}
.y196{bottom:262.746667pt;}
.y18d{bottom:265.946667pt;}
.y200{bottom:267.066667pt;}
.y27c{bottom:267.866667pt;}
.y8a{bottom:268.186667pt;}
.yf1{bottom:270.586667pt;}
.yb8{bottom:271.066667pt;}
.y208{bottom:271.706667pt;}
.yda{bottom:272.026667pt;}
.y11e{bottom:272.666667pt;}
.y13b{bottom:272.826667pt;}
.y241{bottom:274.426667pt;}
.y26{bottom:277.146667pt;}
.y1ee{bottom:277.306667pt;}
.y1db{bottom:279.706667pt;}
.y25e{bottom:281.213333pt;}
.ya2{bottom:282.106667pt;}
.y111{bottom:284.666667pt;}
.y6a{bottom:286.586667pt;}
.y48{bottom:289.626667pt;}
.y164{bottom:289.946667pt;}
.y195{bottom:290.426667pt;}
.y18c{bottom:293.626667pt;}
.y25d{bottom:294.560000pt;}
.y27b{bottom:295.546667pt;}
.y89{bottom:295.866667pt;}
.y26f{bottom:296.826667pt;}
.yf0{bottom:298.106667pt;}
.yb7{bottom:298.746667pt;}
.y11d{bottom:300.346667pt;}
.y13a{bottom:300.506667pt;}
.y25{bottom:304.826667pt;}
.y207{bottom:306.266667pt;}
.yd9{bottom:306.426667pt;}
.y1da{bottom:307.226667pt;}
.y110{bottom:307.546667pt;}
.y240{bottom:308.826667pt;}
.ya1{bottom:309.626667pt;}
.y69{bottom:314.266667pt;}
.y47{bottom:317.146667pt;}
.y163{bottom:317.466667pt;}
.y194{bottom:317.946667pt;}
.y18b{bottom:321.146667pt;}
.y27a{bottom:323.066667pt;}
.y24{bottom:323.386667pt;}
.yef{bottom:325.786667pt;}
.yb6{bottom:326.266667pt;}
.y11c{bottom:327.866667pt;}
.y139{bottom:328.026667pt;}
.y10f{bottom:330.586667pt;}
.y1ed{bottom:332.506667pt;}
.y1d9{bottom:334.906667pt;}
.ya0{bottom:337.306667pt;}
.y26e{bottom:337.786667pt;}
.y206{bottom:340.826667pt;}
.yd8{bottom:340.986667pt;}
.y235{bottom:341.626667pt;}
.y23{bottom:341.786667pt;}
.y23f{bottom:343.386667pt;}
.y46{bottom:344.826667pt;}
.y162{bottom:345.146667pt;}
.y193{bottom:345.626667pt;}
.y18a{bottom:346.746667pt;}
.y279{bottom:350.746667pt;}
.y88{bottom:351.066667pt;}
.yee{bottom:353.306667pt;}
.y10e{bottom:353.626667pt;}
.yb5{bottom:353.946667pt;}
.y11b{bottom:355.546667pt;}
.y138{bottom:355.706667pt;}
.y22{bottom:360.026667pt;}
.y1d8{bottom:362.426667pt;}
.y9f{bottom:364.826667pt;}
.y68{bottom:369.506667pt;}
.y189{bottom:369.826667pt;}
.y45{bottom:372.386667pt;}
.y161{bottom:372.706667pt;}
.y1c8{bottom:372.866667pt;}
.y192{bottom:373.186667pt;}
.y205{bottom:375.266667pt;}
.yd7{bottom:375.426667pt;}
.y234{bottom:376.226667pt;}
.y10d{bottom:376.706667pt;}
.y23e{bottom:377.826667pt;}
.y278{bottom:378.306667pt;}
.y21{bottom:378.466667pt;}
.y87{bottom:378.626667pt;}
.yed{bottom:381.026667pt;}
.yb4{bottom:381.506667pt;}
.y11a{bottom:383.106667pt;}
.y137{bottom:383.266667pt;}
.y186{bottom:383.746667pt;}
.y1ec{bottom:387.746667pt;}
.y1d7{bottom:389.986667pt;}
.y9e{bottom:392.546667pt;}
.y20{bottom:396.866667pt;}
.y67{bottom:397.026667pt;}
.y191{bottom:398.786667pt;}
.y10c{bottom:399.586667pt;}
.y44{bottom:400.066667pt;}
.y160{bottom:400.386667pt;}
.y277{bottom:405.986667pt;}
.y86{bottom:406.306667pt;}
.y184{bottom:407.746667pt;}
.yec{bottom:408.546667pt;}
.yb3{bottom:409.186667pt;}
.y204{bottom:409.826667pt;}
.yd6{bottom:409.986667pt;}
.y119{bottom:410.626667pt;}
.y136{bottom:410.946667pt;}
.y23d{bottom:412.386667pt;}
.y1f{bottom:415.266667pt;}
.y1d6{bottom:417.666667pt;}
.y9d{bottom:420.066667pt;}
.y19c{bottom:422.560000pt;}
.y10b{bottom:422.626667pt;}
.y66{bottom:424.706667pt;}
.y15f{bottom:425.986667pt;}
.y43{bottom:427.586667pt;}
.y1c7{bottom:428.066667pt;}
.y183{bottom:429.346667pt;}
.yd5{bottom:431.106667pt;}
.y1e{bottom:433.666667pt;}
.y85{bottom:433.826667pt;}
.yeb{bottom:436.226667pt;}
.yb2{bottom:436.706667pt;}
.y203{bottom:437.026667pt;}
.y135{bottom:438.466667pt;}
.y1eb{bottom:442.786667pt;}
.y1d5{bottom:445.186667pt;}
.y10a{bottom:445.666667pt;}
.y23c{bottom:446.786667pt;}
.y15e{bottom:447.106667pt;}
.y16b{bottom:447.200000pt;}
.y9c{bottom:447.746667pt;}
.y182{bottom:450.146667pt;}
.y1d{bottom:452.066667pt;}
.y65{bottom:452.226667pt;}
.yd4{bottom:452.386667pt;}
.y42{bottom:455.266667pt;}
.y1c6{bottom:455.586667pt;}
.y118{bottom:459.266667pt;}
.y84{bottom:461.506667pt;}
.yea{bottom:463.746667pt;}
.yb1{bottom:464.386667pt;}
.y202{bottom:465.026667pt;}
.y134{bottom:466.146667pt;}
.y109{bottom:468.706667pt;}
.y1c{bottom:470.466667pt;}
.y181{bottom:470.786667pt;}
.y1d4{bottom:472.866667pt;}
.yd3{bottom:473.506667pt;}
.y9b{bottom:475.266667pt;}
.y220{bottom:479.586667pt;}
.y64{bottom:479.906667pt;}
.y23b{bottom:481.346667pt;}
.y117{bottom:482.306667pt;}
.y41{bottom:482.786667pt;}
.y1c5{bottom:483.266667pt;}
.y1b{bottom:488.866667pt;}
.y83{bottom:489.026667pt;}
.ye9{bottom:491.426667pt;}
.y108{bottom:491.586667pt;}
.yb0{bottom:491.906667pt;}
.y133{bottom:493.666667pt;}
.yd2{bottom:494.626667pt;}
.y1ea{bottom:496.066667pt;}
.y1d3{bottom:500.386667pt;}
.y9a{bottom:502.946667pt;}
.y21f{bottom:503.586667pt;}
.y116{bottom:506.146667pt;}
.y1a{bottom:507.266667pt;}
.y63{bottom:507.426667pt;}
.y40{bottom:510.466667pt;}
.y1c4{bottom:510.786667pt;}
.y23a{bottom:511.906667pt;}
.y180{bottom:512.066667pt;}
.y24e{bottom:513.440000pt;}
.y233{bottom:514.146667pt;}
.y107{bottom:514.626667pt;}
.yd1{bottom:515.746667pt;}
.y82{bottom:516.706667pt;}
.y1e9{bottom:517.346667pt;}
.ye8{bottom:518.946667pt;}
.y1f3{bottom:519.360000pt;}
.yaf{bottom:519.586667pt;}
.y25c{bottom:520.960000pt;}
.y132{bottom:521.346667pt;}
.y21e{bottom:525.186667pt;}
.y19{bottom:525.666667pt;}
.y1d2{bottom:528.066667pt;}
.y115{bottom:529.186667pt;}
.y99{bottom:530.466667pt;}
.y17f{bottom:532.706667pt;}
.y62{bottom:535.106667pt;}
.yd0{bottom:536.866667pt;}
.y106{bottom:537.666667pt;}
.y3f{bottom:537.986667pt;}
.y1c3{bottom:538.306667pt;}
.y18{bottom:544.066667pt;}
.y81{bottom:544.226667pt;}
.y21d{bottom:545.826667pt;}
.ye7{bottom:546.626667pt;}
.yae{bottom:547.106667pt;}
.y232{bottom:548.706667pt;}
.y131{bottom:548.866667pt;}
.y24d{bottom:551.840000pt;}
.y114{bottom:553.186667pt;}
.y17e{bottom:553.346667pt;}
.y1d1{bottom:555.586667pt;}
.y98{bottom:558.146667pt;}
.y105{bottom:560.706667pt;}
.y17{bottom:562.466667pt;}
.y61{bottom:562.626667pt;}
.y3e{bottom:565.666667pt;}
.y1c2{bottom:565.986667pt;}
.y21c{bottom:566.626667pt;}
.y80{bottom:571.906667pt;}
.ye6{bottom:574.146667pt;}
.yad{bottom:574.786667pt;}
.y130{bottom:576.546667pt;}
.y113{bottom:577.186667pt;}
.y253{bottom:577.920000pt;}
.ycf{bottom:579.266667pt;}
.y1a6{bottom:579.360000pt;}
.y1f5{bottom:580.160000pt;}
.y16{bottom:580.866667pt;}
.y231{bottom:583.133333pt;}
.y1d0{bottom:583.293333pt;}
.y104{bottom:583.613333pt;}
.y97{bottom:585.693333pt;}
.y255{bottom:586.880000pt;}
.y21b{bottom:587.293333pt;}
.y254{bottom:587.840000pt;}
.y60{bottom:590.333333pt;}
.y3d{bottom:593.213333pt;}
.y1c1{bottom:593.533333pt;}
.y17d{bottom:594.813333pt;}
.y230{bottom:597.693333pt;}
.y24b{bottom:597.920000pt;}
.y247{bottom:598.880000pt;}
.y7f{bottom:599.453333pt;}
.y257{bottom:599.840000pt;}
.yce{bottom:600.413333pt;}
.y112{bottom:601.053333pt;}
.ye5{bottom:601.853333pt;}
.yac{bottom:602.333333pt;}
.y12f{bottom:604.093333pt;}
.y173{bottom:605.440000pt;}
.y103{bottom:606.653333pt;}
.y249{bottom:607.840000pt;}
.y21a{bottom:607.933333pt;}
.y1cf{bottom:610.813333pt;}
.y96{bottom:613.373333pt;}
.y17c{bottom:615.453333pt;}
.y15{bottom:617.693333pt;}
.y5f{bottom:617.853333pt;}
.y256{bottom:618.880000pt;}
.y258{bottom:620.800000pt;}
.y3c{bottom:620.893333pt;}
.y1c0{bottom:621.213333pt;}
.ycd{bottom:621.533333pt;}
.y22f{bottom:621.693333pt;}
.y201{bottom:626.813333pt;}
.y7e{bottom:627.133333pt;}
.y219{bottom:628.573333pt;}
.ye4{bottom:629.373333pt;}
.y1f9{bottom:631.520000pt;}
.y102{bottom:631.773333pt;}
.y14{bottom:636.093333pt;}
.yab{bottom:636.893333pt;}
.y1ce{bottom:638.493333pt;}
.y95{bottom:638.813333pt;}
.y128{bottom:640.893333pt;}
.ycc{bottom:642.813333pt;}
.y22e{bottom:643.453333pt;}
.y5e{bottom:645.533333pt;}
.y3b{bottom:648.413333pt;}
.y1bf{bottom:648.733333pt;}
.y218{bottom:649.213333pt;}
.y13{bottom:654.493333pt;}
.y7d{bottom:654.653333pt;}
.y1f7{bottom:655.360000pt;}
.y17a{bottom:656.733333pt;}
.ye3{bottom:657.053333pt;}
.y101{bottom:659.293333pt;}
.y94{bottom:661.853333pt;}
.ycb{bottom:663.933333pt;}
.y22d{bottom:664.093333pt;}
.y1cd{bottom:666.013333pt;}
.y127{bottom:668.573333pt;}
.y217{bottom:669.853333pt;}
.y12{bottom:672.893333pt;}
.y5d{bottom:673.053333pt;}
.y1be{bottom:674.333333pt;}
.y3a{bottom:676.093333pt;}
.y178{bottom:677.373333pt;}
.y7c{bottom:682.333333pt;}
.y93{bottom:684.573333pt;}
.y22c{bottom:684.733333pt;}
.yaa{bottom:684.893333pt;}
.yca{bottom:685.053333pt;}
.y100{bottom:686.973333pt;}
.y216{bottom:690.653333pt;}
.y11{bottom:691.293333pt;}
.y1cc{bottom:693.693333pt;}
.y25a{bottom:693.920000pt;}
.y126{bottom:694.013333pt;}
.y15d{bottom:696.093333pt;}
.y1bd{bottom:697.373333pt;}
.y14b{bottom:700.413333pt;}
.y5c{bottom:700.733333pt;}
.y39{bottom:703.613333pt;}
.y22b{bottom:705.373333pt;}
.yc9{bottom:706.173333pt;}
.y92{bottom:707.773333pt;}
.y10{bottom:709.693333pt;}
.y7b{bottom:709.853333pt;}
.y1bb{bottom:711.293333pt;}
.ye2{bottom:712.253333pt;}
.yff{bottom:714.493333pt;}
.y125{bottom:717.053333pt;}
.y1cb{bottom:721.213333pt;}
.y15c{bottom:723.613333pt;}
.y22a{bottom:726.013333pt;}
.yc8{bottom:727.453333pt;}
.yf{bottom:728.093333pt;}
.y5b{bottom:728.253333pt;}
.y91{bottom:730.813333pt;}
.y215{bottom:731.933333pt;}
.y1ba{bottom:733.053333pt;}
.y7a{bottom:737.533333pt;}
.ye1{bottom:739.773333pt;}
.yfe{bottom:740.093333pt;}
.y12e{bottom:742.013333pt;}
.y229{bottom:746.653333pt;}
.y1ca{bottom:746.813333pt;}
.yc7{bottom:748.573333pt;}
.y15b{bottom:751.293333pt;}
.y214{bottom:752.573333pt;}
.ye{bottom:753.373333pt;}
.y1b9{bottom:753.693333pt;}
.y5a{bottom:753.853333pt;}
.y14a{bottom:755.933333pt;}
.y38{bottom:759.133333pt;}
.yfd{bottom:762.973333pt;}
.y79{bottom:765.053333pt;}
.ye0{bottom:767.453333pt;}
.y1c9{bottom:768.093333pt;}
.yc6{bottom:769.693333pt;}
.y1e1{bottom:770.560000pt;}
.y213{bottom:773.213333pt;}
.yd{bottom:774.333333pt;}
.y59{bottom:776.893333pt;}
.y15a{bottom:778.813333pt;}
.y149{bottom:783.133333pt;}
.yfc{bottom:786.013333pt;}
.y228{bottom:788.093333pt;}
.yc5{bottom:790.813333pt;}
.y37{bottom:791.773333pt;}
.y78{bottom:792.733333pt;}
.y210{bottom:793.853333pt;}
.ydf{bottom:794.973333pt;}
.yc{bottom:795.133333pt;}
.y12d{bottom:797.213333pt;}
.y58{bottom:799.813333pt;}
.y159{bottom:806.533333pt;}
.y227{bottom:808.773333pt;}
.yfb{bottom:809.093333pt;}
.yb{bottom:809.253333pt;}
.y148{bottom:811.173333pt;}
.yc4{bottom:812.133333pt;}
.y1b7{bottom:815.653333pt;}
.y20e{bottom:816.933333pt;}
.y1e3{bottom:819.360000pt;}
.y77{bottom:820.293333pt;}
.y36{bottom:820.933333pt;}
.yde{bottom:822.693333pt;}
.y57{bottom:822.853333pt;}
.y12c{bottom:824.933333pt;}
.ya{bottom:827.653333pt;}
.y226{bottom:829.413333pt;}
.yfa{bottom:832.133333pt;}
.yc3{bottom:833.253333pt;}
.y158{bottom:834.053333pt;}
.y1b6{bottom:836.453333pt;}
.y147{bottom:838.693333pt;}
.y56{bottom:845.893333pt;}
.y9{bottom:846.053333pt;}
.ydd{bottom:847.013333pt;}
.y76{bottom:847.973333pt;}
.y225{bottom:850.053333pt;}
.y35{bottom:850.213333pt;}
.y12b{bottom:852.453333pt;}
.yc2{bottom:854.373333pt;}
.yf9{bottom:855.013333pt;}
.y1b5{bottom:857.093333pt;}
.y157{bottom:861.733333pt;}
.y8{bottom:864.453333pt;}
.y146{bottom:866.373333pt;}
.y1e7{bottom:867.520000pt;}
.y55{bottom:868.933333pt;}
.y224{bottom:870.693333pt;}
.y75{bottom:875.493333pt;}
.y1b4{bottom:877.733333pt;}
.yf8{bottom:878.053333pt;}
.y34{bottom:879.333333pt;}
.y12a{bottom:880.133333pt;}
.y7{bottom:882.853333pt;}
.y156{bottom:889.253333pt;}
.y1e5{bottom:891.360000pt;}
.y223{bottom:891.493333pt;}
.y54{bottom:891.813333pt;}
.y1b3{bottom:898.373333pt;}
.y6{bottom:901.253333pt;}
.y74{bottom:903.173333pt;}
.y129{bottom:905.733333pt;}
.y33{bottom:908.613333pt;}
.yc1{bottom:910.053333pt;}
.y222{bottom:912.133333pt;}
.y53{bottom:914.853333pt;}
.y155{bottom:916.933333pt;}
.y1b2{bottom:919.013333pt;}
.y5{bottom:926.533333pt;}
.y73{bottom:930.693333pt;}
.y221{bottom:935.013333pt;}
.y32{bottom:937.733333pt;}
.y52{bottom:937.893333pt;}
.y1b1{bottom:939.653333pt;}
.y4{bottom:939.973333pt;}
.yc0{bottom:944.453333pt;}
.y3{bottom:953.413333pt;}
.yf7{bottom:958.053333pt;}
.y72{bottom:958.373333pt;}
.y1af{bottom:960.453333pt;}
.y51{bottom:960.933333pt;}
.y2{bottom:965.573333pt;}
.y31{bottom:967.013333pt;}
.y154{bottom:970.053333pt;}
.y273{bottom:972.613333pt;}
.ybf{bottom:979.013333pt;}
.y1ad{bottom:981.093333pt;}
.ya9{bottom:985.573333pt;}
.y50{bottom:985.893333pt;}
.y1{bottom:986.213333pt;}
.y153{bottom:993.093333pt;}
.y30{bottom:996.133333pt;}
.y1ab{bottom:1004.133333pt;}
.y4f{bottom:1013.253333pt;}
.y71{bottom:1013.573333pt;}
.y152{bottom:1016.160000pt;}
.y2f{bottom:1016.960000pt;}
.h3{height:15.571875pt;}
.h22{height:20.000000pt;}
.h23{height:20.032000pt;}
.h24{height:20.960000pt;}
.h21{height:21.120000pt;}
.h38{height:21.152000pt;}
.h39{height:21.920000pt;}
.h2a{height:21.952000pt;}
.h20{height:22.080000pt;}
.h37{height:26.643750pt;}
.h41{height:30.778125pt;}
.h5{height:33.503125pt;}
.h6{height:35.390625pt;}
.h4{height:35.859375pt;}
.h32{height:36.416250pt;}
.he{height:36.883125pt;}
.h1b{height:38.128125pt;}
.h2c{height:40.365000pt;}
.h4e{height:40.640000pt;}
.h9{height:42.262500pt;}
.h2b{height:42.751250pt;}
.h2{height:43.412500pt;}
.h18{height:44.437500pt;}
.h14{height:47.621250pt;}
.ha{height:50.062500pt;}
.hf{height:52.108438pt;}
.h12{height:52.134375pt;}
.h17{height:52.990313pt;}
.h13{height:53.535000pt;}
.h8{height:55.402500pt;}
.h10{height:57.375000pt;}
.h27{height:58.353750pt;}
.h4d{height:61.600000pt;}
.hb{height:62.781250pt;}
.hd{height:62.812500pt;}
.h16{height:63.843750pt;}
.hc{height:64.500000pt;}
.h1d{height:65.812500pt;}
.h15{height:66.625000pt;}
.h7{height:66.750000pt;}
.h19{height:67.837500pt;}
.h2f{height:69.703125pt;}
.h36{height:71.503437pt;}
.h11{height:75.465000pt;}
.h4c{height:82.400000pt;}
.h2d{height:88.480000pt;}
.h31{height:89.920000pt;}
.h4b{height:103.360000pt;}
.h30{height:108.160000pt;}
.h35{height:123.360000pt;}
.h4a{height:124.160000pt;}
.h3d{height:127.680000pt;}
.h2e{height:128.800000pt;}
.h29{height:129.600000pt;}
.h1f{height:142.400000pt;}
.h34{height:144.000000pt;}
.h33{height:144.160000pt;}
.h49{height:145.120000pt;}
.h3c{height:147.680000pt;}
.h3f{height:150.720000pt;}
.h28{height:153.760000pt;}
.h3e{height:159.680000pt;}
.h26{height:164.800000pt;}
.h48{height:165.920000pt;}
.h1c{height:166.240000pt;}
.h1e{height:166.560000pt;}
.h47{height:186.880000pt;}
.h3a{height:188.160000pt;}
.h3b{height:188.320000pt;}
.h46{height:207.840000pt;}
.h45{height:228.640000pt;}
.h44{height:249.600000pt;}
.h43{height:270.400000pt;}
.h42{height:291.360000pt;}
.h40{height:304.640000pt;}
.h25{height:329.600000pt;}
.h1a{height:332.480000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3f{width:31.360000pt;}
.w1a{width:31.520000pt;}
.w4a{width:32.000000pt;}
.w27{width:32.160000pt;}
.w52{width:32.320000pt;}
.w33{width:32.480000pt;}
.w59{width:32.640000pt;}
.w1b{width:33.600000pt;}
.w40{width:33.760000pt;}
.w28{width:34.240000pt;}
.w4b{width:34.400000pt;}
.w34{width:34.560000pt;}
.w53{width:34.720000pt;}
.w43{width:34.880000pt;}
.w1f{width:35.040000pt;}
.w63{width:35.200000pt;}
.w2c{width:35.680000pt;}
.w38{width:36.000000pt;}
.w42{width:37.600000pt;}
.w41{width:37.632000pt;}
.w1e{width:37.760000pt;}
.w1c{width:37.792000pt;}
.w2b{width:38.400000pt;}
.w29{width:38.432000pt;}
.w37{width:38.720000pt;}
.w35{width:38.752000pt;}
.w5a{width:39.360000pt;}
.w62{width:39.520000pt;}
.w46{width:40.320000pt;}
.w22{width:40.480000pt;}
.w4e{width:40.960000pt;}
.w2f{width:41.120000pt;}
.w56{width:41.280000pt;}
.w3b{width:41.440000pt;}
.w21{width:41.600000pt;}
.w45{width:41.760000pt;}
.w2e{width:42.240000pt;}
.w47{width:42.272000pt;}
.w4d{width:42.400000pt;}
.w23{width:42.432000pt;}
.w3a{width:42.560000pt;}
.w55{width:42.720000pt;}
.w68{width:42.880000pt;}
.w4f{width:42.912000pt;}
.w30{width:43.072000pt;}
.w57{width:43.232000pt;}
.w3c{width:43.392000pt;}
.w1d{width:44.320000pt;}
.w5c{width:44.800000pt;}
.w2a{width:44.960000pt;}
.w36{width:45.280000pt;}
.w24{width:45.600000pt;}
.w44{width:45.632000pt;}
.w48{width:45.760000pt;}
.w20{width:45.792000pt;}
.w16{width:46.080000pt;}
.w31{width:46.240000pt;}
.w4c{width:46.272000pt;}
.w50{width:46.400000pt;}
.w2d{width:46.432000pt;}
.w54{width:46.592000pt;}
.w3d{width:46.720000pt;}
.w39{width:46.752000pt;}
.w64{width:47.200000pt;}
.w4{width:48.160000pt;}
.w18{width:48.320000pt;}
.w49{width:49.632000pt;}
.w25{width:49.792000pt;}
.w67{width:50.080000pt;}
.w58{width:50.592000pt;}
.w3e{width:50.752000pt;}
.w60{width:50.880000pt;}
.w13{width:52.640000pt;}
.w65{width:53.280000pt;}
.w66{width:54.400000pt;}
.w5f{width:55.680000pt;}
.w5d{width:57.440000pt;}
.w12{width:59.360000pt;}
.w15{width:59.680000pt;}
.w61{width:70.400000pt;}
.wb{width:85.312000pt;}
.w10{width:86.272000pt;}
.w9{width:86.432000pt;}
.w6{width:86.752000pt;}
.w8{width:88.672000pt;}
.wc{width:89.600000pt;}
.wd{width:89.632000pt;}
.w11{width:89.792000pt;}
.w7{width:90.720000pt;}
.w19{width:99.392000pt;}
.w26{width:100.032000pt;}
.w32{width:101.312000pt;}
.w51{width:101.472000pt;}
.w5e{width:118.080000pt;}
.w5{width:168.666667pt;}
.wa{width:170.586667pt;}
.w17{width:217.760000pt;}
.w14{width:231.200000pt;}
.w5b{width:307.680000pt;}
.w3{width:376.000000pt;}
.wf{width:388.800000pt;}
.w2{width:507.520000pt;}
.we{width:521.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x30{left:5.120000pt;}
.x5a{left:6.240000pt;}
.x25{left:8.293333pt;}
.x67{left:9.760000pt;}
.x72{left:11.840000pt;}
.x65{left:13.600000pt;}
.x23{left:14.693333pt;}
.x66{left:15.720000pt;}
.x73{left:16.960000pt;}
.x42{left:18.533333pt;}
.x63{left:20.320000pt;}
.x29{left:21.920000pt;}
.x2b{left:23.840000pt;}
.x22{left:26.240000pt;}
.x48{left:27.360000pt;}
.x3d{left:30.080000pt;}
.x64{left:31.400000pt;}
.x21{left:32.986667pt;}
.x2d{left:35.200000pt;}
.x27{left:38.080000pt;}
.x20{left:39.746667pt;}
.x32{left:42.080000pt;}
.x4a{left:44.840000pt;}
.x62{left:45.952000pt;}
.x2f{left:51.360000pt;}
.x38{left:53.120000pt;}
.x31{left:55.360000pt;}
.x36{left:57.120000pt;}
.x49{left:58.440000pt;}
.x2c{left:59.840000pt;}
.x35{left:61.000000pt;}
.x39{left:62.600000pt;}
.x4b{left:63.880000pt;}
.x33{left:64.840000pt;}
.x34{left:66.120000pt;}
.x2e{left:69.000000pt;}
.x37{left:77.000000pt;}
.x3b{left:85.320000pt;}
.x2{left:113.472000pt;}
.x6{left:124.192000pt;}
.x10{left:137.466667pt;}
.x7a{left:143.200000pt;}
.x1b{left:151.226667pt;}
.x41{left:155.546667pt;}
.xe{left:160.666667pt;}
.x1f{left:161.760000pt;}
.x56{left:164.346667pt;}
.x11{left:166.266667pt;}
.x3a{left:177.626667pt;}
.x26{left:178.586667pt;}
.x13{left:184.666667pt;}
.x68{left:192.186667pt;}
.x57{left:196.826667pt;}
.x43{left:217.600000pt;}
.x5{left:218.746667pt;}
.x3f{left:222.906667pt;}
.x45{left:223.866667pt;}
.xc{left:226.906667pt;}
.x18{left:230.266667pt;}
.x58{left:231.386667pt;}
.x7e{left:248.960000pt;}
.x15{left:250.626667pt;}
.x16{left:260.066667pt;}
.x4{left:263.906667pt;}
.x69{left:265.666667pt;}
.x7b{left:268.320000pt;}
.x59{left:270.146667pt;}
.x50{left:299.520000pt;}
.x7c{left:301.280000pt;}
.x1{left:303.426667pt;}
.x55{left:305.920000pt;}
.x7{left:309.826667pt;}
.x6a{left:310.946667pt;}
.x5b{left:315.426667pt;}
.x7d{left:317.280000pt;}
.x1e{left:344.226667pt;}
.x28{left:348.226667pt;}
.x3c{left:349.346667pt;}
.x75{left:350.240000pt;}
.x5c{left:354.146667pt;}
.x4c{left:370.466667pt;}
.x51{left:372.480000pt;}
.x8{left:379.106667pt;}
.x6b{left:385.666667pt;}
.x5d{left:390.146667pt;}
.x46{left:393.666667pt;}
.x3{left:396.866667pt;}
.x1c{left:415.773333pt;}
.x54{left:421.600000pt;}
.x52{left:425.280000pt;}
.x6c{left:432.253333pt;}
.x4f{left:433.600000pt;}
.x2a{left:434.973333pt;}
.x5e{left:436.893333pt;}
.x79{left:439.200000pt;}
.x4e{left:450.013333pt;}
.x76{left:452.320000pt;}
.xb{left:461.853333pt;}
.x1a{left:473.373333pt;}
.x6d{left:474.973333pt;}
.x47{left:480.253333pt;}
.x78{left:491.200000pt;}
.x77{left:503.200000pt;}
.x6e{left:516.253333pt;}
.x5f{left:520.893333pt;}
.x17{left:525.213333pt;}
.x12{left:527.453333pt;}
.xf{left:544.893333pt;}
.xd{left:547.133333pt;}
.x6f{left:550.973333pt;}
.x60{left:555.453333pt;}
.x19{left:561.253333pt;}
.x7f{left:567.040000pt;}
.x9{left:581.893333pt;}
.x70{left:594.213333pt;}
.x61{left:598.853333pt;}
.x24{left:615.680000pt;}
.x44{left:619.200000pt;}
.x71{left:640.933333pt;}
.x4d{left:645.893333pt;}
.x53{left:656.773333pt;}
.x14{left:665.573333pt;}
.x1d{left:671.813333pt;}
.xa{left:673.093333pt;}
.x40{left:675.333333pt;}
.x3e{left:680.453333pt;}
.x74{left:693.573333pt;}
}




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