
    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_851a853b18cde8b8cf937180.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_b7cc11ed036367b2e9df79ac.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_49394186b066433e8e0e57ff.woff')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_46f48eb1208ae63f26b358f4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_29f186be242ff58792bb65d3.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_72c1e9db9abf6a5f9e9457e7.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8c137ee551a39dfb0f865df7.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_2e3cbdbea9353885dbd8de70.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_b46d03200a0182eb2e98936c.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c4fbb774729e60b538074fc7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_e443df41716cdf7dfc7008aa.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_293b1354d5fb10d87dd84004.woff')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;}
.m1{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);}
.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);}
.m2{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:-73.440000px;}
.v3{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls6{letter-spacing:-1.980000px;}
.ls16{letter-spacing:-1.044000px;}
.lsd{letter-spacing:-0.804000px;}
.ls15{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.594000px;}
.ls21{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.324000px;}
.ls4{letter-spacing:-0.269400px;}
.ls8{letter-spacing:-0.216000px;}
.ls1f{letter-spacing:-0.126000px;}
.lsc{letter-spacing:-0.085200px;}
.lse{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.014400px;}
.ls1e{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.256200px;}
.lsa{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls14{letter-spacing:1.620000px;}
.ls0{letter-spacing:3.780000px;}
.ls23{letter-spacing:13.860000px;}
.ls13{letter-spacing:14.580000px;}
.ls1b{letter-spacing:25.308000px;}
.ls24{letter-spacing:30.420000px;}
.lsb{letter-spacing:49.788000px;}
.ls18{letter-spacing:52.668000px;}
.ls20{letter-spacing:61.380000px;}
.ls1a{letter-spacing:144.300000px;}
.ls1d{letter-spacing:202.476000px;}
.ls19{letter-spacing:202.500000px;}
.ls22{letter-spacing:389.700000px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws14{word-spacing:-15.228000px;}
.ws2{word-spacing:-15.226440px;}
.ws7{word-spacing:-13.860000px;}
.ws16{word-spacing:-13.824000px;}
.wsf{word-spacing:-13.716000px;}
.ws10{word-spacing:-13.626000px;}
.wse{word-spacing:-13.608000px;}
.ws18{word-spacing:-13.518000px;}
.ws4{word-spacing:-13.500000px;}
.wsc{word-spacing:-13.482000px;}
.ws15{word-spacing:-13.374000px;}
.ws6{word-spacing:-13.284000px;}
.ws5{word-spacing:-13.140000px;}
.ws17{word-spacing:-12.924000px;}
.ws11{word-spacing:-12.906000px;}
.ws12{word-spacing:-12.888000px;}
.ws1{word-spacing:-11.790600px;}
.wsb{word-spacing:-10.612800px;}
.ws9{word-spacing:-10.527600px;}
.wsa{word-spacing:-9.808800px;}
.ws3{word-spacing:-9.000000px;}
.wsd{word-spacing:-8.676000px;}
.ws13{word-spacing:-7.956000px;}
.ws8{word-spacing:0.000000px;}
._62{margin-left:-11.622960px;}
._8{margin-left:-7.740000px;}
._6{margin-left:-6.183600px;}
._7{margin-left:-4.869840px;}
._9{margin-left:-3.509280px;}
._5{margin-left:-2.312880px;}
._0{margin-left:-1.258560px;}
._1{width:1.019520px;}
._4{width:2.230080px;}
._a{width:3.416160px;}
._b{width:4.533840px;}
._10{width:5.550960px;}
._f{width:6.803040px;}
._e{width:8.208000px;}
._c{width:9.450000px;}
._d{width:10.466880px;}
._11{width:12.150000px;}
._12{width:15.153840px;}
._19{width:17.010000px;}
._16{width:18.840000px;}
._14{width:19.926000px;}
._15{width:21.114000px;}
._13{width:23.008560px;}
._21{width:24.132720px;}
._17{width:25.164000px;}
._18{width:26.784000px;}
._1e{width:27.918000px;}
._1d{width:28.944000px;}
._1b{width:30.456000px;}
._1c{width:31.536000px;}
._20{width:33.226560px;}
._1f{width:34.290000px;}
._1a{width:35.640000px;}
._23{width:37.368000px;}
._24{width:38.510640px;}
._26{width:39.723120px;}
._25{width:40.878000px;}
._27{width:42.660000px;}
._28{width:44.216880px;}
._57{width:45.439680px;}
._22{width:46.764000px;}
._30{width:48.384000px;}
._2a{width:49.608000px;}
._2b{width:51.354000px;}
._48{width:52.860000px;}
._54{width:53.892000px;}
._63{width:55.026000px;}
._2f{width:56.106000px;}
._2e{width:57.240000px;}
._60{width:58.365120px;}
._5c{width:59.616000px;}
._2d{width:60.696000px;}
._2c{width:61.722000px;}
._50{width:63.198000px;}
._35{width:65.139840px;}
._58{width:66.144000px;}
._51{width:69.714000px;}
._32{width:70.812000px;}
._6c{width:73.924080px;}
._46{width:77.544000px;}
._42{width:82.458000px;}
._41{width:83.682000px;}
._6a{width:86.148000px;}
._4b{width:94.500000px;}
._77{width:101.708880px;}
._75{width:103.356000px;}
._3b{width:105.557040px;}
._64{width:107.208000px;}
._4d{width:108.234000px;}
._65{width:109.692000px;}
._5d{width:111.234000px;}
._40{width:113.088000px;}
._4f{width:115.485360px;}
._43{width:121.710000px;}
._55{width:125.604000px;}
._56{width:126.834480px;}
._76{width:128.075040px;}
._66{width:130.107840px;}
._69{width:131.384400px;}
._49{width:132.894000px;}
._6e{width:134.250480px;}
._38{width:136.824480px;}
._34{width:144.018000px;}
._45{width:145.476000px;}
._6b{width:147.204000px;}
._3a{width:151.665360px;}
._39{width:152.766000px;}
._44{width:156.648000px;}
._31{width:158.706000px;}
._37{width:162.293040px;}
._47{width:171.990000px;}
._3f{width:178.758000px;}
._5a{width:180.246000px;}
._70{width:182.574000px;}
._53{width:186.449040px;}
._5b{width:195.618000px;}
._6d{width:198.252000px;}
._4c{width:200.495520px;}
._36{width:202.500000px;}
._29{width:204.170880px;}
._74{width:265.086000px;}
._73{width:266.112000px;}
._3e{width:281.610000px;}
._5f{width:286.806000px;}
._5e{width:288.036000px;}
._33{width:305.316000px;}
._68{width:317.304000px;}
._67{width:318.420000px;}
._4e{width:385.074000px;}
._3c{width:389.718000px;}
._3d{width:391.026000px;}
._78{width:395.831520px;}
._72{width:403.758000px;}
._4a{width:591.786000px;}
._59{width:714.852000px;}
._6f{width:784.404000px;}
._52{width:878.418000px;}
._61{width:907.416000px;}
._71{width:923.070000px;}
._2{width:1625.460000px;}
._3{width:1927.132800px;}
.fc9{color:rgb(0,112,192);}
.fc7{color:transparent;}
.fc6{color:rgb(79,129,189);}
.fc5{color:rgb(0,32,96);}
.fc3{color:rgb(79,128,187);}
.fc1{color:rgb(0,0,255);}
.fca{color:rgb(51,51,51);}
.fc8{color:rgb(23,23,23);}
.fc4{color:rgb(31,70,122);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.240000px;}
.fs6{font-size:36.000000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs8{font-size:64.800000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:69.120000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1fd{bottom:5.220000px;}
.y1f{bottom:5.580000px;}
.y16b{bottom:5.625000px;}
.y16e{bottom:7.020000px;}
.y179{bottom:7.200000px;}
.y174{bottom:7.740000px;}
.y1fc{bottom:9.720000px;}
.y181{bottom:10.620000px;}
.y183{bottom:11.160000px;}
.y22{bottom:12.600000px;}
.y200{bottom:14.220000px;}
.y176{bottom:16.020000px;}
.y167{bottom:16.740000px;}
.y17e{bottom:17.460000px;}
.y170{bottom:18.000000px;}
.y1fe{bottom:18.720000px;}
.y162{bottom:19.080000px;}
.y208{bottom:21.030000px;}
.y16a{bottom:23.445000px;}
.y165{bottom:23.580000px;}
.y16d{bottom:24.840000px;}
.y178{bottom:25.020000px;}
.y17b{bottom:25.590000px;}
.y173{bottom:25.740000px;}
.y1fb{bottom:27.540000px;}
.y180{bottom:28.440000px;}
.y21{bottom:30.420000px;}
.y1fa{bottom:32.040000px;}
.y1e{bottom:32.400000px;}
.y164{bottom:41.400000px;}
.y169{bottom:41.445000px;}
.y1d{bottom:50.220000px;}
.y47{bottom:58.500000px;}
.y1c{bottom:68.040000px;}
.y7{bottom:76.860000px;}
.y83{bottom:78.300000px;}
.y160{bottom:80.670000px;}
.y241{bottom:81.000000px;}
.y203{bottom:81.360000px;}
.yeb{bottom:81.900000px;}
.y142{bottom:83.880000px;}
.y1b{bottom:86.070000px;}
.y202{bottom:88.200000px;}
.y19a{bottom:88.560000px;}
.yb1{bottom:89.820000px;}
.y25c{bottom:90.000000px;}
.y45{bottom:91.260000px;}
.y15e{bottom:92.880000px;}
.y82{bottom:96.120000px;}
.y1a2{bottom:97.380000px;}
.y240{bottom:98.820000px;}
.y291{bottom:99.180000px;}
.yea{bottom:99.720000px;}
.yd3{bottom:99.900000px;}
.y39{bottom:100.080000px;}
.y141{bottom:101.700000px;}
.y1a{bottom:103.890000px;}
.y2b4{bottom:105.120000px;}
.y2bb{bottom:105.300000px;}
.y199{bottom:106.380000px;}
.yb0{bottom:107.640000px;}
.y25b{bottom:107.820000px;}
.y44{bottom:109.080000px;}
.y201{bottom:109.260000px;}
.y205{bottom:110.550000px;}
.y15d{bottom:110.700000px;}
.y81{bottom:113.940000px;}
.y23f{bottom:116.640000px;}
.y290{bottom:117.000000px;}
.yd2{bottom:117.720000px;}
.y38{bottom:117.900000px;}
.y19{bottom:121.710000px;}
.y2b3{bottom:122.940000px;}
.y2ba{bottom:123.120000px;}
.y198{bottom:124.380000px;}
.yaf{bottom:125.640000px;}
.y1ff{bottom:126.180000px;}
.y43{bottom:126.900000px;}
.y140{bottom:128.520000px;}
.y80{bottom:131.760000px;}
.y23e{bottom:134.640000px;}
.y28f{bottom:134.820000px;}
.ye9{bottom:135.540000px;}
.yd1{bottom:135.720000px;}
.y37{bottom:135.900000px;}
.y18{bottom:139.530000px;}
.y2b2{bottom:140.760000px;}
.y2b9{bottom:140.940000px;}
.y197{bottom:142.200000px;}
.yae{bottom:143.460000px;}
.y25a{bottom:143.640000px;}
.y42{bottom:144.900000px;}
.y13f{bottom:146.520000px;}
.y7f{bottom:149.580000px;}
.y23d{bottom:152.460000px;}
.y28e{bottom:152.640000px;}
.ye8{bottom:153.360000px;}
.yd0{bottom:153.540000px;}
.y17{bottom:157.350000px;}
.y2b1{bottom:158.580000px;}
.y2b8{bottom:158.760000px;}
.y196{bottom:160.020000px;}
.yad{bottom:161.280000px;}
.y259{bottom:161.460000px;}
.y36{bottom:162.720000px;}
.y13e{bottom:164.340000px;}
.y7e{bottom:167.580000px;}
.y23c{bottom:170.280000px;}
.y28d{bottom:170.640000px;}
.ye7{bottom:171.180000px;}
.ycf{bottom:171.360000px;}
.y1f9{bottom:171.720000px;}
.y206{bottom:172.800000px;}
.y16{bottom:175.170000px;}
.y2b0{bottom:176.580000px;}
.y195{bottom:177.840000px;}
.yac{bottom:179.100000px;}
.y258{bottom:179.280000px;}
.y35{bottom:180.540000px;}
.y13d{bottom:182.160000px;}
.y7d{bottom:185.400000px;}
.y1a1{bottom:186.840000px;}
.y23b{bottom:188.100000px;}
.y28c{bottom:188.460000px;}
.yce{bottom:189.180000px;}
.y15{bottom:193.170000px;}
.y2af{bottom:194.400000px;}
.y2b7{bottom:194.580000px;}
.y194{bottom:195.660000px;}
.yab{bottom:196.920000px;}
.y257{bottom:197.100000px;}
.ye6{bottom:198.000000px;}
.y34{bottom:198.360000px;}
.y13c{bottom:199.980000px;}
.y7c{bottom:203.220000px;}
.y1a0{bottom:204.660000px;}
.y23a{bottom:205.950000px;}
.y28b{bottom:206.310000px;}
.ycd{bottom:207.030000px;}
.y14{bottom:210.990000px;}
.y2b6{bottom:212.430000px;}
.y193{bottom:213.510000px;}
.yaa{bottom:214.770000px;}
.y256{bottom:214.950000px;}
.ye5{bottom:215.850000px;}
.y33{bottom:216.210000px;}
.y13b{bottom:217.830000px;}
.y7b{bottom:221.070000px;}
.y2ae{bottom:221.250000px;}
.y19f{bottom:222.510000px;}
.y239{bottom:223.770000px;}
.y28a{bottom:224.130000px;}
.ycc{bottom:224.850000px;}
.y13{bottom:228.810000px;}
.y2b5{bottom:230.250000px;}
.y1f8{bottom:230.610000px;}
.ya9{bottom:232.770000px;}
.ye4{bottom:233.850000px;}
.y32{bottom:234.030000px;}
.y13a{bottom:235.650000px;}
.y7a{bottom:238.890000px;}
.y192{bottom:240.510000px;}
.y238{bottom:241.770000px;}
.y289{bottom:241.950000px;}
.ycb{bottom:242.850000px;}
.y2ad{bottom:248.070000px;}
.ya8{bottom:250.590000px;}
.y255{bottom:250.770000px;}
.ye3{bottom:251.670000px;}
.y31{bottom:252.030000px;}
.y1ed{bottom:252.390000px;}
.y139{bottom:253.650000px;}
.y79{bottom:256.890000px;}
.y191{bottom:258.330000px;}
.y237{bottom:259.590000px;}
.y288{bottom:259.770000px;}
.yca{bottom:260.670000px;}
.y2ac{bottom:265.890000px;}
.y207{bottom:266.040000px;}
.ya7{bottom:268.410000px;}
.y254{bottom:268.590000px;}
.ye2{bottom:269.490000px;}
.y30{bottom:269.850000px;}
.y1ec{bottom:270.390000px;}
.y138{bottom:271.470000px;}
.y1be{bottom:274.350000px;}
.y78{bottom:274.710000px;}
.y190{bottom:276.150000px;}
.y236{bottom:277.410000px;}
.y287{bottom:277.770000px;}
.yc9{bottom:278.490000px;}
.y115{bottom:279.570000px;}
.y247{bottom:283.710000px;}
.y2ab{bottom:283.890000px;}
.ya6{bottom:286.230000px;}
.y253{bottom:286.410000px;}
.ye1{bottom:287.310000px;}
.y2f{bottom:287.670000px;}
.y1eb{bottom:288.210000px;}
.y137{bottom:289.290000px;}
.y1bd{bottom:292.170000px;}
.y77{bottom:292.530000px;}
.y18f{bottom:293.970000px;}
.y235{bottom:295.230000px;}
.y286{bottom:295.590000px;}
.yc8{bottom:296.310000px;}
.y103{bottom:301.350000px;}
.y246{bottom:301.530000px;}
.y2aa{bottom:301.710000px;}
.ya5{bottom:304.050000px;}
.y252{bottom:304.230000px;}
.ye0{bottom:305.130000px;}
.y2e{bottom:305.490000px;}
.y1ea{bottom:306.030000px;}
.y136{bottom:307.110000px;}
.y1bc{bottom:309.990000px;}
.y76{bottom:310.350000px;}
.y18e{bottom:311.790000px;}
.y234{bottom:313.050000px;}
.y285{bottom:313.410000px;}
.y15c{bottom:316.110000px;}
.y102{bottom:319.170000px;}
.y245{bottom:319.350000px;}
.y2a9{bottom:319.530000px;}
.ya4{bottom:322.050000px;}
.yc7{bottom:323.130000px;}
.y2d{bottom:323.310000px;}
.y1e9{bottom:323.850000px;}
.y135{bottom:324.930000px;}
.y1bb{bottom:327.990000px;}
.y75{bottom:328.170000px;}
.y18d{bottom:329.790000px;}
.y233{bottom:331.050000px;}
.y284{bottom:331.230000px;}
.y15b{bottom:333.930000px;}
.y101{bottom:336.990000px;}
.y244{bottom:337.170000px;}
.y2a8{bottom:337.350000px;}
.ya3{bottom:339.870000px;}
.y251{bottom:340.050000px;}
.ydf{bottom:340.950000px;}
.yc6{bottom:341.130000px;}
.y2c{bottom:341.310000px;}
.y1e8{bottom:341.670000px;}
.y134{bottom:342.930000px;}
.y1cc{bottom:345.810000px;}
.y74{bottom:345.990000px;}
.y18c{bottom:347.610000px;}
.y232{bottom:348.870000px;}
.y283{bottom:349.050000px;}
.y15a{bottom:351.930000px;}
.y1ba{bottom:354.810000px;}
.y100{bottom:354.990000px;}
.y2a7{bottom:355.170000px;}
.ya2{bottom:357.690000px;}
.y250{bottom:357.870000px;}
.yde{bottom:358.770000px;}
.yc5{bottom:358.950000px;}
.y2b{bottom:359.130000px;}
.y1e7{bottom:359.670000px;}
.y133{bottom:360.750000px;}
.y1cb{bottom:363.630000px;}
.y73{bottom:363.990000px;}
.y19e{bottom:365.430000px;}
.y231{bottom:366.690000px;}
.y282{bottom:367.050000px;}
.y41{bottom:368.130000px;}
.y159{bottom:369.750000px;}
.y1b9{bottom:372.630000px;}
.yff{bottom:372.810000px;}
.y243{bottom:372.990000px;}
.y18b{bottom:374.430000px;}
.ya1{bottom:375.510000px;}
.y24f{bottom:375.690000px;}
.ydd{bottom:376.590000px;}
.yc4{bottom:376.770000px;}
.y2a{bottom:376.950000px;}
.y1e6{bottom:377.490000px;}
.y132{bottom:378.570000px;}
.y72{bottom:381.810000px;}
.y19d{bottom:383.250000px;}
.y230{bottom:384.510000px;}
.y281{bottom:384.870000px;}
.y40{bottom:385.950000px;}
.y158{bottom:387.570000px;}
.y1b8{bottom:390.450000px;}
.yfe{bottom:390.630000px;}
.y242{bottom:390.810000px;}
.y2a6{bottom:390.990000px;}
.y18a{bottom:392.250000px;}
.ya0{bottom:393.330000px;}
.y24e{bottom:393.510000px;}
.ydc{bottom:394.410000px;}
.yc3{bottom:394.590000px;}
.y29{bottom:394.770000px;}
.y1f7{bottom:395.310000px;}
.y131{bottom:396.390000px;}
.y114{bottom:399.630000px;}
.y19c{bottom:401.070000px;}
.y22f{bottom:402.330000px;}
.y280{bottom:402.690000px;}
.y3f{bottom:403.770000px;}
.y1e5{bottom:404.310000px;}
.y157{bottom:405.390000px;}
.y1b7{bottom:408.270000px;}
.yfd{bottom:408.450000px;}
.y71{bottom:408.630000px;}
.y2a5{bottom:408.810000px;}
.y189{bottom:410.070000px;}
.y9f{bottom:411.150000px;}
.y24d{bottom:411.330000px;}
.ydb{bottom:412.230000px;}
.yc2{bottom:412.410000px;}
.y28{bottom:412.590000px;}
.y1f6{bottom:413.130000px;}
.y130{bottom:414.210000px;}
.y113{bottom:417.450000px;}
.y19b{bottom:418.890000px;}
.y22e{bottom:420.150000px;}
.y27f{bottom:420.510000px;}
.y3e{bottom:421.590000px;}
.y1e4{bottom:422.130000px;}
.y156{bottom:423.210000px;}
.y1b6{bottom:426.090000px;}
.yfc{bottom:426.270000px;}
.y70{bottom:426.450000px;}
.y2a4{bottom:426.630000px;}
.y188{bottom:427.890000px;}
.y24c{bottom:429.150000px;}
.yc1{bottom:430.230000px;}
.y27{bottom:430.410000px;}
.y12f{bottom:432.030000px;}
.y112{bottom:435.270000px;}
.y9e{bottom:438.150000px;}
.y27e{bottom:438.330000px;}
.y3d{bottom:439.410000px;}
.y1e3{bottom:439.950000px;}
.y155{bottom:441.075000px;}
.yfb{bottom:444.135000px;}
.y6f{bottom:444.315000px;}
.y2a3{bottom:444.495000px;}
.y187{bottom:445.935000px;}
.y24b{bottom:447.195000px;}
.yda{bottom:448.095000px;}
.yc0{bottom:448.275000px;}
.y26{bottom:448.455000px;}
.y12e{bottom:450.075000px;}
.y111{bottom:453.135000px;}
.y9d{bottom:456.015000px;}
.y27d{bottom:456.195000px;}
.y3c{bottom:457.455000px;}
.y1e2{bottom:457.815000px;}
.y154{bottom:459.075000px;}
.y1ca{bottom:461.955000px;}
.y6e{bottom:462.135000px;}
.y2a2{bottom:462.315000px;}
.y186{bottom:463.755000px;}
.yd9{bottom:465.915000px;}
.ybf{bottom:466.095000px;}
.y25{bottom:466.275000px;}
.y12d{bottom:467.895000px;}
.y1b5{bottom:470.955000px;}
.y110{bottom:471.135000px;}
.y9c{bottom:473.835000px;}
.y27c{bottom:474.195000px;}
.y3b{bottom:475.275000px;}
.y24a{bottom:475.455000px;}
.y1e1{bottom:475.815000px;}
.y153{bottom:476.895000px;}
.y6d{bottom:480.135000px;}
.y185{bottom:481.575000px;}
.y22d{bottom:482.835000px;}
.yd8{bottom:483.735000px;}
.ybe{bottom:483.915000px;}
.y24{bottom:484.095000px;}
.y12c{bottom:485.715000px;}
.y1b4{bottom:488.775000px;}
.yfa{bottom:488.955000px;}
.y9b{bottom:491.655000px;}
.y27b{bottom:492.015000px;}
.y3a{bottom:493.095000px;}
.y1f5{bottom:493.635000px;}
.y6c{bottom:497.955000px;}
.y2a1{bottom:498.135000px;}
.y22c{bottom:500.655000px;}
.yd7{bottom:501.555000px;}
.ybd{bottom:501.735000px;}
.y1e0{bottom:502.635000px;}
.y152{bottom:503.355000px;}
.y12b{bottom:503.535000px;}
.y1b3{bottom:506.595000px;}
.yf9{bottom:506.775000px;}
.y184{bottom:508.035000px;}
.y9a{bottom:509.475000px;}
.y27a{bottom:509.835000px;}
.y23{bottom:512.355000px;}
.y6b{bottom:515.775000px;}
.y2a0{bottom:515.955000px;}
.y22b{bottom:518.475000px;}
.ybc{bottom:519.555000px;}
.y1df{bottom:520.455000px;}
.y12a{bottom:521.355000px;}
.y1b2{bottom:524.415000px;}
.yf8{bottom:524.595000px;}
.y99{bottom:527.475000px;}
.y279{bottom:527.655000px;}
.y151{bottom:530.175000px;}
.y182{bottom:530.355000px;}
.y6a{bottom:533.595000px;}
.y29f{bottom:533.775000px;}
.y22a{bottom:536.475000px;}
.ybb{bottom:537.555000px;}
.y1de{bottom:538.275000px;}
.y20{bottom:538.815000px;}
.y129{bottom:539.355000px;}
.yf7{bottom:542.415000px;}
.y2be{bottom:542.595000px;}
.y98{bottom:545.295000px;}
.y278{bottom:545.475000px;}
.yd6{bottom:546.375000px;}
.y10f{bottom:551.055000px;}
.y69{bottom:551.415000px;}
.y29e{bottom:551.595000px;}
.y229{bottom:554.295000px;}
.y17f{bottom:554.475000px;}
.yba{bottom:555.375000px;}
.y1f4{bottom:556.095000px;}
.y128{bottom:557.175000px;}
.y150{bottom:557.355000px;}
.y1c9{bottom:560.235000px;}
.yf6{bottom:560.415000px;}
.y97{bottom:563.115000px;}
.y277{bottom:563.475000px;}
.yd5{bottom:564.195000px;}
.y1dd{bottom:565.095000px;}
.y1b1{bottom:569.235000px;}
.y68{bottom:569.415000px;}
.y228{bottom:572.115000px;}
.yb9{bottom:573.195000px;}
.y1f3{bottom:574.095000px;}
.y127{bottom:574.995000px;}
.y14f{bottom:575.355000px;}
.y1c8{bottom:578.055000px;}
.yf5{bottom:578.235000px;}
.y10e{bottom:578.415000px;}
.y96{bottom:580.935000px;}
.y276{bottom:581.295000px;}
.yd4{bottom:582.015000px;}
.y1dc{bottom:583.095000px;}
.y1b0{bottom:587.055000px;}
.y67{bottom:587.235000px;}
.y29d{bottom:587.415000px;}
.y227{bottom:589.935000px;}
.yb8{bottom:591.015000px;}
.y12{bottom:591.375000px;}
.y1f2{bottom:591.915000px;}
.y126{bottom:592.815000px;}
.y14e{bottom:593.175000px;}
.y17d{bottom:595.875000px;}
.yf4{bottom:596.055000px;}
.y10d{bottom:596.235000px;}
.y95{bottom:598.755000px;}
.y275{bottom:599.115000px;}
.y1db{bottom:600.915000px;}
.y1af{bottom:604.875000px;}
.y66{bottom:605.055000px;}
.y29c{bottom:605.235000px;}
.y226{bottom:607.755000px;}
.yb7{bottom:608.835000px;}
.y1f1{bottom:609.735000px;}
.y125{bottom:610.635000px;}
.y14d{bottom:610.995000px;}
.yf3{bottom:613.875000px;}
.y10c{bottom:614.055000px;}
.y274{bottom:616.935000px;}
.y1da{bottom:618.735000px;}
.y2bd{bottom:622.515000px;}
.y1ae{bottom:622.695000px;}
.y65{bottom:622.875000px;}
.y29b{bottom:623.055000px;}
.y94{bottom:625.215000px;}
.y225{bottom:625.575000px;}
.y17c{bottom:626.475000px;}
.yb6{bottom:626.655000px;}
.y124{bottom:628.455000px;}
.y14c{bottom:628.815000px;}
.yf2{bottom:631.695000px;}
.y10b{bottom:631.875000px;}
.y273{bottom:634.755000px;}
.y1f0{bottom:636.555000px;}
.y1ad{bottom:640.515000px;}
.y64{bottom:640.695000px;}
.y29a{bottom:640.875000px;}
.y224{bottom:643.575000px;}
.y1d9{bottom:645.555000px;}
.y123{bottom:646.455000px;}
.y14b{bottom:646.635000px;}
.y2bc{bottom:649.335000px;}
.y249{bottom:649.515000px;}
.y10a{bottom:649.695000px;}
.y272{bottom:652.575000px;}
.yb5{bottom:653.295000px;}
.y93{bottom:654.015000px;}
.y1ef{bottom:654.375000px;}
.y17a{bottom:655.455000px;}
.y63{bottom:658.515000px;}
.y299{bottom:658.695000px;}
.y223{bottom:661.395000px;}
.y1d8{bottom:663.375000px;}
.y122{bottom:664.275000px;}
.y14a{bottom:664.455000px;}
.y109{bottom:667.515000px;}
.y271{bottom:670.575000px;}
.y1ac{bottom:676.365000px;}
.y62{bottom:676.545000px;}
.yb4{bottom:677.085000px;}
.y222{bottom:679.245000px;}
.y1d7{bottom:681.225000px;}
.y121{bottom:682.125000px;}
.y149{bottom:682.485000px;}
.y92{bottom:685.365000px;}
.y108{bottom:685.545000px;}
.y270{bottom:688.425000px;}
.y177{bottom:694.005000px;}
.y1c7{bottom:694.185000px;}
.y61{bottom:694.365000px;}
.y298{bottom:694.545000px;}
.y221{bottom:697.065000px;}
.yb3{bottom:698.865000px;}
.y1d6{bottom:699.225000px;}
.y148{bottom:700.305000px;}
.y91{bottom:703.185000px;}
.y107{bottom:703.365000px;}
.y26f{bottom:706.245000px;}
.y120{bottom:708.585000px;}
.y1c6{bottom:712.005000px;}
.y60{bottom:712.185000px;}
.y297{bottom:712.365000px;}
.y220{bottom:714.885000px;}
.y1d5{bottom:717.045000px;}
.y147{bottom:718.125000px;}
.y1ab{bottom:721.005000px;}
.y106{bottom:721.185000px;}
.y26e{bottom:724.065000px;}
.y5f{bottom:730.005000px;}
.y296{bottom:730.185000px;}
.y175{bottom:731.985000px;}
.y1d4{bottom:734.865000px;}
.y11f{bottom:735.765000px;}
.y146{bottom:735.945000px;}
.y1aa{bottom:738.825000px;}
.y105{bottom:739.005000px;}
.y21f{bottom:741.705000px;}
.y26d{bottom:741.885000px;}
.y5e{bottom:747.825000px;}
.y295{bottom:748.005000px;}
.y1d3{bottom:752.685000px;}
.y11e{bottom:753.585000px;}
.y145{bottom:753.765000px;}
.y104{bottom:756.825000px;}
.y21e{bottom:759.705000px;}
.y172{bottom:760.965000px;}
.y90{bottom:765.825000px;}
.y1d2{bottom:770.505000px;}
.y11d{bottom:771.585000px;}
.y1a9{bottom:774.645000px;}
.y5d{bottom:774.825000px;}
.y21d{bottom:777.525000px;}
.y26c{bottom:777.705000px;}
.y8f{bottom:783.645000px;}
.y294{bottom:783.825000px;}
.y1ee{bottom:788.325000px;}
.y144{bottom:789.585000px;}
.y1a8{bottom:792.465000px;}
.y5c{bottom:792.645000px;}
.y21c{bottom:795.345000px;}
.y26b{bottom:795.525000px;}
.y1d1{bottom:797.325000px;}
.y11c{bottom:798.045000px;}
.y171{bottom:799.665000px;}
.yf1{bottom:801.465000px;}
.y293{bottom:801.645000px;}
.y143{bottom:807.405000px;}
.y8e{bottom:810.105000px;}
.y1a7{bottom:810.285000px;}
.y5b{bottom:810.465000px;}
.y21b{bottom:813.165000px;}
.y26a{bottom:813.345000px;}
.y1d0{bottom:815.325000px;}
.yf0{bottom:819.285000px;}
.y292{bottom:819.465000px;}
.y11b{bottom:825.225000px;}
.y1a6{bottom:828.105000px;}
.y5a{bottom:828.285000px;}
.y21a{bottom:830.985000px;}
.y269{bottom:831.165000px;}
.y1cf{bottom:833.145000px;}
.y248{bottom:836.745000px;}
.yef{bottom:837.105000px;}
.y8d{bottom:837.285000px;}
.y16f{bottom:837.465000px;}
.y11a{bottom:843.045000px;}
.y1a5{bottom:845.925000px;}
.y59{bottom:846.105000px;}
.y11{bottom:847.725000px;}
.y219{bottom:848.985000px;}
.yee{bottom:854.925000px;}
.y8c{bottom:855.105000px;}
.y119{bottom:860.865000px;}
.y1ce{bottom:863.205000px;}
.y58{bottom:863.925000px;}
.y218{bottom:866.805000px;}
.y268{bottom:866.985000px;}
.y16c{bottom:868.605000px;}
.y8b{bottom:872.925000px;}
.y10{bottom:874.725000px;}
.y118{bottom:878.865000px;}
.y57{bottom:881.925000px;}
.y217{bottom:884.625000px;}
.y267{bottom:884.805000px;}
.y1a4{bottom:890.745000px;}
.y8a{bottom:890.925000px;}
.yf{bottom:892.545000px;}
.y1cd{bottom:893.985000px;}
.y204{bottom:896.400000px;}
.y56{bottom:899.745000px;}
.y216{bottom:902.445000px;}
.y266{bottom:902.625000px;}
.y117{bottom:905.325000px;}
.y168{bottom:906.405000px;}
.y1a3{bottom:908.565000px;}
.y89{bottom:908.745000px;}
.y55{bottom:917.610000px;}
.ye{bottom:919.410000px;}
.y265{bottom:920.490000px;}
.y1c5{bottom:926.430000px;}
.y88{bottom:926.610000px;}
.y215{bottom:929.310000px;}
.y116{bottom:930.210000px;}
.y54{bottom:935.430000px;}
.y264{bottom:938.310000px;}
.yd{bottom:943.170000px;}
.y1c4{bottom:944.250000px;}
.y87{bottom:944.430000px;}
.y214{bottom:947.130000px;}
.y53{bottom:953.250000px;}
.y263{bottom:956.130000px;}
.y166{bottom:960.810000px;}
.y86{bottom:962.250000px;}
.yc{bottom:963.690000px;}
.y213{bottom:965.130000px;}
.y52{bottom:971.250000px;}
.y262{bottom:974.130000px;}
.y85{bottom:980.250000px;}
.y212{bottom:982.950000px;}
.y51{bottom:989.070000px;}
.y163{bottom:990.510000px;}
.y261{bottom:991.950000px;}
.yb{bottom:993.570000px;}
.y84{bottom:998.070000px;}
.y211{bottom:1000.770000px;}
.yed{bottom:1006.890000px;}
.y260{bottom:1009.770000px;}
.y50{bottom:1015.890000px;}
.y210{bottom:1018.590000px;}
.ya{bottom:1021.470000px;}
.yec{bottom:1024.710000px;}
.y25f{bottom:1027.590000px;}
.y4f{bottom:1033.710000px;}
.y20f{bottom:1036.410000px;}
.yb2{bottom:1042.530000px;}
.y161{bottom:1044.870000px;}
.y25e{bottom:1045.410000px;}
.y4e{bottom:1051.530000px;}
.y20e{bottom:1054.410000px;}
.y9{bottom:1056.930000px;}
.y1c3{bottom:1060.350000px;}
.y4d{bottom:1069.350000px;}
.y20d{bottom:1072.230000px;}
.y25d{bottom:1073.850000px;}
.y15f{bottom:1076.910000px;}
.y1c2{bottom:1078.350000px;}
.y8{bottom:1087.350000px;}
.y20c{bottom:1090.050000px;}
.y1c1{bottom:1096.170000px;}
.y4c{bottom:1105.170000px;}
.y20b{bottom:1107.870000px;}
.y6{bottom:1113.270000px;}
.y1c0{bottom:1113.990000px;}
.y4b{bottom:1122.990000px;}
.y1bf{bottom:1131.810000px;}
.y5{bottom:1132.530000px;}
.y20a{bottom:1134.330000px;}
.y4a{bottom:1140.810000px;}
.y4{bottom:1150.920000px;}
.y49{bottom:1158.660000px;}
.y209{bottom:1163.160000px;}
.y3{bottom:1166.220000px;}
.y48{bottom:1176.660000px;}
.y2{bottom:1181.520000px;}
.y46{bottom:1196.100000px;}
.y1{bottom:1196.820000px;}
.h27{height:12.335625px;}
.h22{height:23.385000px;}
.h1f{height:28.245000px;}
.h1c{height:28.260000px;}
.h17{height:28.965000px;}
.h20{height:29.685000px;}
.h1a{height:30.240000px;}
.h14{height:31.305000px;}
.ha{height:35.332031px;}
.h19{height:37.080000px;}
.h1d{height:37.260000px;}
.h1e{height:37.830000px;}
.h1b{height:37.980000px;}
.h21{height:40.665000px;}
.hf{height:40.843828px;}
.h23{height:44.507812px;}
.h26{height:44.818500px;}
.h5{height:47.344922px;}
.h10{height:48.410156px;}
.hd{height:51.645000px;}
.h15{height:52.971680px;}
.h6{height:52.998047px;}
.h16{height:53.625000px;}
.h18{height:53.662500px;}
.h25{height:53.676000px;}
.h2a{height:53.868164px;}
.hb{height:54.421875px;}
.h11{height:56.320312px;}
.h24{height:59.074453px;}
.h12{height:59.092031px;}
.h9{height:60.041250px;}
.h2{height:65.010937px;}
.h4{height:65.884219px;}
.h29{height:67.584375px;}
.h7{height:69.660000px;}
.h3{height:70.664062px;}
.he{height:72.562500px;}
.h8{height:84.898125px;}
.h13{height:93.270000px;}
.hc{height:250.050000px;}
.h28{height:292.500000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:52.956000px;}
.w3{width:58.305000px;}
.w4{width:58.341000px;}
.w6{width:60.480000px;}
.wb{width:60.645000px;}
.w5{width:70.560000px;}
.w9{width:73.080000px;}
.wc{width:73.785000px;}
.wd{width:73.821000px;}
.we{width:79.545000px;}
.w8{width:181.459500px;}
.w7{width:342.255000px;}
.wf{width:575.100000px;}
.w2{width:747.358500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.098500px;}
.x18{left:20.325000px;}
.x5{left:54.000000px;}
.x8{left:64.620000px;}
.x9{left:72.901500px;}
.x2c{left:81.000000px;}
.x6{left:89.676000px;}
.xb{left:95.256000px;}
.x1d{left:108.036000px;}
.x2d{left:121.536000px;}
.x21{left:146.566500px;}
.x17{left:150.165000px;}
.x28{left:157.320000px;}
.x14{left:160.410000px;}
.x2b{left:184.935000px;}
.x2a{left:204.915000px;}
.x19{left:209.385000px;}
.xe{left:218.910000px;}
.x29{left:220.215000px;}
.x16{left:243.390000px;}
.x1{left:262.650000px;}
.x1a{left:268.455000px;}
.x20{left:298.335000px;}
.x2{left:306.795000px;}
.x22{left:328.755000px;}
.x1b{left:339.735000px;}
.x4{left:340.815000px;}
.x3{left:353.055000px;}
.x1c{left:400.935000px;}
.x23{left:402.555000px;}
.x13{left:422.355000px;}
.x24{left:456.420000px;}
.xc{left:473.505000px;}
.x10{left:500.505000px;}
.xd{left:514.725000px;}
.x25{left:517.800000px;}
.x11{left:527.505000px;}
.x1e{left:568.725000px;}
.x26{left:592.320000px;}
.x27{left:667.050000px;}
.x12{left:710.250000px;}
.x1f{left:735.630000px;}
.x15{left:745.170000px;}
.xf{left:822.420000px;}
.x7{left:831.600000px;}
@media print{
.v1{vertical-align:-65.280000pt;}
.v3{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls6{letter-spacing:-1.760000pt;}
.ls16{letter-spacing:-0.928000pt;}
.lsd{letter-spacing:-0.714667pt;}
.ls15{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.528000pt;}
.ls21{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.288000pt;}
.ls4{letter-spacing:-0.239467pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls1f{letter-spacing:-0.112000pt;}
.lsc{letter-spacing:-0.075733pt;}
.lse{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.012800pt;}
.ls1e{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.227733pt;}
.lsa{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls14{letter-spacing:1.440000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls23{letter-spacing:12.320000pt;}
.ls13{letter-spacing:12.960000pt;}
.ls1b{letter-spacing:22.496000pt;}
.ls24{letter-spacing:27.040000pt;}
.lsb{letter-spacing:44.256000pt;}
.ls18{letter-spacing:46.816000pt;}
.ls20{letter-spacing:54.560000pt;}
.ls1a{letter-spacing:128.266667pt;}
.ls1d{letter-spacing:179.978667pt;}
.ls19{letter-spacing:180.000000pt;}
.ls22{letter-spacing:346.400000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws14{word-spacing:-13.536000pt;}
.ws2{word-spacing:-13.534613pt;}
.ws7{word-spacing:-12.320000pt;}
.ws16{word-spacing:-12.288000pt;}
.wsf{word-spacing:-12.192000pt;}
.ws10{word-spacing:-12.112000pt;}
.wse{word-spacing:-12.096000pt;}
.ws18{word-spacing:-12.016000pt;}
.ws4{word-spacing:-12.000000pt;}
.wsc{word-spacing:-11.984000pt;}
.ws15{word-spacing:-11.888000pt;}
.ws6{word-spacing:-11.808000pt;}
.ws5{word-spacing:-11.680000pt;}
.ws17{word-spacing:-11.488000pt;}
.ws11{word-spacing:-11.472000pt;}
.ws12{word-spacing:-11.456000pt;}
.ws1{word-spacing:-10.480533pt;}
.wsb{word-spacing:-9.433600pt;}
.ws9{word-spacing:-9.357867pt;}
.wsa{word-spacing:-8.718933pt;}
.ws3{word-spacing:-8.000000pt;}
.wsd{word-spacing:-7.712000pt;}
.ws13{word-spacing:-7.072000pt;}
.ws8{word-spacing:0.000000pt;}
._62{margin-left:-10.331520pt;}
._8{margin-left:-6.880000pt;}
._6{margin-left:-5.496533pt;}
._7{margin-left:-4.328747pt;}
._9{margin-left:-3.119360pt;}
._5{margin-left:-2.055893pt;}
._0{margin-left:-1.118720pt;}
._1{width:0.906240pt;}
._4{width:1.982293pt;}
._a{width:3.036587pt;}
._b{width:4.030080pt;}
._10{width:4.934187pt;}
._f{width:6.047147pt;}
._e{width:7.296000pt;}
._c{width:8.400000pt;}
._d{width:9.303893pt;}
._11{width:10.800000pt;}
._12{width:13.470080pt;}
._19{width:15.120000pt;}
._16{width:16.746667pt;}
._14{width:17.712000pt;}
._15{width:18.768000pt;}
._13{width:20.452053pt;}
._21{width:21.451307pt;}
._17{width:22.368000pt;}
._18{width:23.808000pt;}
._1e{width:24.816000pt;}
._1d{width:25.728000pt;}
._1b{width:27.072000pt;}
._1c{width:28.032000pt;}
._20{width:29.534720pt;}
._1f{width:30.480000pt;}
._1a{width:31.680000pt;}
._23{width:33.216000pt;}
._24{width:34.231680pt;}
._26{width:35.309440pt;}
._25{width:36.336000pt;}
._27{width:37.920000pt;}
._28{width:39.303893pt;}
._57{width:40.390827pt;}
._22{width:41.568000pt;}
._30{width:43.008000pt;}
._2a{width:44.096000pt;}
._2b{width:45.648000pt;}
._48{width:46.986667pt;}
._54{width:47.904000pt;}
._63{width:48.912000pt;}
._2f{width:49.872000pt;}
._2e{width:50.880000pt;}
._60{width:51.880107pt;}
._5c{width:52.992000pt;}
._2d{width:53.952000pt;}
._2c{width:54.864000pt;}
._50{width:56.176000pt;}
._35{width:57.902080pt;}
._58{width:58.794667pt;}
._51{width:61.968000pt;}
._32{width:62.944000pt;}
._6c{width:65.710293pt;}
._46{width:68.928000pt;}
._42{width:73.296000pt;}
._41{width:74.384000pt;}
._6a{width:76.576000pt;}
._4b{width:84.000000pt;}
._77{width:90.407893pt;}
._75{width:91.872000pt;}
._3b{width:93.828480pt;}
._64{width:95.296000pt;}
._4d{width:96.208000pt;}
._65{width:97.504000pt;}
._5d{width:98.874667pt;}
._40{width:100.522667pt;}
._4f{width:102.653653pt;}
._43{width:108.186667pt;}
._55{width:111.648000pt;}
._56{width:112.741760pt;}
._76{width:113.844480pt;}
._66{width:115.651413pt;}
._69{width:116.786133pt;}
._49{width:118.128000pt;}
._6e{width:119.333760pt;}
._38{width:121.621760pt;}
._34{width:128.016000pt;}
._45{width:129.312000pt;}
._6b{width:130.848000pt;}
._3a{width:134.813653pt;}
._39{width:135.792000pt;}
._44{width:139.242667pt;}
._31{width:141.072000pt;}
._37{width:144.260480pt;}
._47{width:152.880000pt;}
._3f{width:158.896000pt;}
._5a{width:160.218667pt;}
._70{width:162.288000pt;}
._53{width:165.732480pt;}
._5b{width:173.882667pt;}
._6d{width:176.224000pt;}
._4c{width:178.218240pt;}
._36{width:180.000000pt;}
._29{width:181.485227pt;}
._74{width:235.632000pt;}
._73{width:236.544000pt;}
._3e{width:250.320000pt;}
._5f{width:254.938667pt;}
._5e{width:256.032000pt;}
._33{width:271.392000pt;}
._68{width:282.048000pt;}
._67{width:283.040000pt;}
._4e{width:342.288000pt;}
._3c{width:346.416000pt;}
._3d{width:347.578667pt;}
._78{width:351.850240pt;}
._72{width:358.896000pt;}
._4a{width:526.032000pt;}
._59{width:635.424000pt;}
._6f{width:697.248000pt;}
._52{width:780.816000pt;}
._61{width:806.592000pt;}
._71{width:820.506667pt;}
._2{width:1444.853333pt;}
._3{width:1713.006933pt;}
.fs7{font-size:10.880000pt;}
.fs6{font-size:32.000000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:57.600000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:61.440000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1fd{bottom:4.640000pt;}
.y1f{bottom:4.960000pt;}
.y16b{bottom:5.000000pt;}
.y16e{bottom:6.240000pt;}
.y179{bottom:6.400000pt;}
.y174{bottom:6.880000pt;}
.y1fc{bottom:8.640000pt;}
.y181{bottom:9.440000pt;}
.y183{bottom:9.920000pt;}
.y22{bottom:11.200000pt;}
.y200{bottom:12.640000pt;}
.y176{bottom:14.240000pt;}
.y167{bottom:14.880000pt;}
.y17e{bottom:15.520000pt;}
.y170{bottom:16.000000pt;}
.y1fe{bottom:16.640000pt;}
.y162{bottom:16.960000pt;}
.y208{bottom:18.693333pt;}
.y16a{bottom:20.840000pt;}
.y165{bottom:20.960000pt;}
.y16d{bottom:22.080000pt;}
.y178{bottom:22.240000pt;}
.y17b{bottom:22.746667pt;}
.y173{bottom:22.880000pt;}
.y1fb{bottom:24.480000pt;}
.y180{bottom:25.280000pt;}
.y21{bottom:27.040000pt;}
.y1fa{bottom:28.480000pt;}
.y1e{bottom:28.800000pt;}
.y164{bottom:36.800000pt;}
.y169{bottom:36.840000pt;}
.y1d{bottom:44.640000pt;}
.y47{bottom:52.000000pt;}
.y1c{bottom:60.480000pt;}
.y7{bottom:68.320000pt;}
.y83{bottom:69.600000pt;}
.y160{bottom:71.706667pt;}
.y241{bottom:72.000000pt;}
.y203{bottom:72.320000pt;}
.yeb{bottom:72.800000pt;}
.y142{bottom:74.560000pt;}
.y1b{bottom:76.506667pt;}
.y202{bottom:78.400000pt;}
.y19a{bottom:78.720000pt;}
.yb1{bottom:79.840000pt;}
.y25c{bottom:80.000000pt;}
.y45{bottom:81.120000pt;}
.y15e{bottom:82.560000pt;}
.y82{bottom:85.440000pt;}
.y1a2{bottom:86.560000pt;}
.y240{bottom:87.840000pt;}
.y291{bottom:88.160000pt;}
.yea{bottom:88.640000pt;}
.yd3{bottom:88.800000pt;}
.y39{bottom:88.960000pt;}
.y141{bottom:90.400000pt;}
.y1a{bottom:92.346667pt;}
.y2b4{bottom:93.440000pt;}
.y2bb{bottom:93.600000pt;}
.y199{bottom:94.560000pt;}
.yb0{bottom:95.680000pt;}
.y25b{bottom:95.840000pt;}
.y44{bottom:96.960000pt;}
.y201{bottom:97.120000pt;}
.y205{bottom:98.266667pt;}
.y15d{bottom:98.400000pt;}
.y81{bottom:101.280000pt;}
.y23f{bottom:103.680000pt;}
.y290{bottom:104.000000pt;}
.yd2{bottom:104.640000pt;}
.y38{bottom:104.800000pt;}
.y19{bottom:108.186667pt;}
.y2b3{bottom:109.280000pt;}
.y2ba{bottom:109.440000pt;}
.y198{bottom:110.560000pt;}
.yaf{bottom:111.680000pt;}
.y1ff{bottom:112.160000pt;}
.y43{bottom:112.800000pt;}
.y140{bottom:114.240000pt;}
.y80{bottom:117.120000pt;}
.y23e{bottom:119.680000pt;}
.y28f{bottom:119.840000pt;}
.ye9{bottom:120.480000pt;}
.yd1{bottom:120.640000pt;}
.y37{bottom:120.800000pt;}
.y18{bottom:124.026667pt;}
.y2b2{bottom:125.120000pt;}
.y2b9{bottom:125.280000pt;}
.y197{bottom:126.400000pt;}
.yae{bottom:127.520000pt;}
.y25a{bottom:127.680000pt;}
.y42{bottom:128.800000pt;}
.y13f{bottom:130.240000pt;}
.y7f{bottom:132.960000pt;}
.y23d{bottom:135.520000pt;}
.y28e{bottom:135.680000pt;}
.ye8{bottom:136.320000pt;}
.yd0{bottom:136.480000pt;}
.y17{bottom:139.866667pt;}
.y2b1{bottom:140.960000pt;}
.y2b8{bottom:141.120000pt;}
.y196{bottom:142.240000pt;}
.yad{bottom:143.360000pt;}
.y259{bottom:143.520000pt;}
.y36{bottom:144.640000pt;}
.y13e{bottom:146.080000pt;}
.y7e{bottom:148.960000pt;}
.y23c{bottom:151.360000pt;}
.y28d{bottom:151.680000pt;}
.ye7{bottom:152.160000pt;}
.ycf{bottom:152.320000pt;}
.y1f9{bottom:152.640000pt;}
.y206{bottom:153.600000pt;}
.y16{bottom:155.706667pt;}
.y2b0{bottom:156.960000pt;}
.y195{bottom:158.080000pt;}
.yac{bottom:159.200000pt;}
.y258{bottom:159.360000pt;}
.y35{bottom:160.480000pt;}
.y13d{bottom:161.920000pt;}
.y7d{bottom:164.800000pt;}
.y1a1{bottom:166.080000pt;}
.y23b{bottom:167.200000pt;}
.y28c{bottom:167.520000pt;}
.yce{bottom:168.160000pt;}
.y15{bottom:171.706667pt;}
.y2af{bottom:172.800000pt;}
.y2b7{bottom:172.960000pt;}
.y194{bottom:173.920000pt;}
.yab{bottom:175.040000pt;}
.y257{bottom:175.200000pt;}
.ye6{bottom:176.000000pt;}
.y34{bottom:176.320000pt;}
.y13c{bottom:177.760000pt;}
.y7c{bottom:180.640000pt;}
.y1a0{bottom:181.920000pt;}
.y23a{bottom:183.066667pt;}
.y28b{bottom:183.386667pt;}
.ycd{bottom:184.026667pt;}
.y14{bottom:187.546667pt;}
.y2b6{bottom:188.826667pt;}
.y193{bottom:189.786667pt;}
.yaa{bottom:190.906667pt;}
.y256{bottom:191.066667pt;}
.ye5{bottom:191.866667pt;}
.y33{bottom:192.186667pt;}
.y13b{bottom:193.626667pt;}
.y7b{bottom:196.506667pt;}
.y2ae{bottom:196.666667pt;}
.y19f{bottom:197.786667pt;}
.y239{bottom:198.906667pt;}
.y28a{bottom:199.226667pt;}
.ycc{bottom:199.866667pt;}
.y13{bottom:203.386667pt;}
.y2b5{bottom:204.666667pt;}
.y1f8{bottom:204.986667pt;}
.ya9{bottom:206.906667pt;}
.ye4{bottom:207.866667pt;}
.y32{bottom:208.026667pt;}
.y13a{bottom:209.466667pt;}
.y7a{bottom:212.346667pt;}
.y192{bottom:213.786667pt;}
.y238{bottom:214.906667pt;}
.y289{bottom:215.066667pt;}
.ycb{bottom:215.866667pt;}
.y2ad{bottom:220.506667pt;}
.ya8{bottom:222.746667pt;}
.y255{bottom:222.906667pt;}
.ye3{bottom:223.706667pt;}
.y31{bottom:224.026667pt;}
.y1ed{bottom:224.346667pt;}
.y139{bottom:225.466667pt;}
.y79{bottom:228.346667pt;}
.y191{bottom:229.626667pt;}
.y237{bottom:230.746667pt;}
.y288{bottom:230.906667pt;}
.yca{bottom:231.706667pt;}
.y2ac{bottom:236.346667pt;}
.y207{bottom:236.480000pt;}
.ya7{bottom:238.586667pt;}
.y254{bottom:238.746667pt;}
.ye2{bottom:239.546667pt;}
.y30{bottom:239.866667pt;}
.y1ec{bottom:240.346667pt;}
.y138{bottom:241.306667pt;}
.y1be{bottom:243.866667pt;}
.y78{bottom:244.186667pt;}
.y190{bottom:245.466667pt;}
.y236{bottom:246.586667pt;}
.y287{bottom:246.906667pt;}
.yc9{bottom:247.546667pt;}
.y115{bottom:248.506667pt;}
.y247{bottom:252.186667pt;}
.y2ab{bottom:252.346667pt;}
.ya6{bottom:254.426667pt;}
.y253{bottom:254.586667pt;}
.ye1{bottom:255.386667pt;}
.y2f{bottom:255.706667pt;}
.y1eb{bottom:256.186667pt;}
.y137{bottom:257.146667pt;}
.y1bd{bottom:259.706667pt;}
.y77{bottom:260.026667pt;}
.y18f{bottom:261.306667pt;}
.y235{bottom:262.426667pt;}
.y286{bottom:262.746667pt;}
.yc8{bottom:263.386667pt;}
.y103{bottom:267.866667pt;}
.y246{bottom:268.026667pt;}
.y2aa{bottom:268.186667pt;}
.ya5{bottom:270.266667pt;}
.y252{bottom:270.426667pt;}
.ye0{bottom:271.226667pt;}
.y2e{bottom:271.546667pt;}
.y1ea{bottom:272.026667pt;}
.y136{bottom:272.986667pt;}
.y1bc{bottom:275.546667pt;}
.y76{bottom:275.866667pt;}
.y18e{bottom:277.146667pt;}
.y234{bottom:278.266667pt;}
.y285{bottom:278.586667pt;}
.y15c{bottom:280.986667pt;}
.y102{bottom:283.706667pt;}
.y245{bottom:283.866667pt;}
.y2a9{bottom:284.026667pt;}
.ya4{bottom:286.266667pt;}
.yc7{bottom:287.226667pt;}
.y2d{bottom:287.386667pt;}
.y1e9{bottom:287.866667pt;}
.y135{bottom:288.826667pt;}
.y1bb{bottom:291.546667pt;}
.y75{bottom:291.706667pt;}
.y18d{bottom:293.146667pt;}
.y233{bottom:294.266667pt;}
.y284{bottom:294.426667pt;}
.y15b{bottom:296.826667pt;}
.y101{bottom:299.546667pt;}
.y244{bottom:299.706667pt;}
.y2a8{bottom:299.866667pt;}
.ya3{bottom:302.106667pt;}
.y251{bottom:302.266667pt;}
.ydf{bottom:303.066667pt;}
.yc6{bottom:303.226667pt;}
.y2c{bottom:303.386667pt;}
.y1e8{bottom:303.706667pt;}
.y134{bottom:304.826667pt;}
.y1cc{bottom:307.386667pt;}
.y74{bottom:307.546667pt;}
.y18c{bottom:308.986667pt;}
.y232{bottom:310.106667pt;}
.y283{bottom:310.266667pt;}
.y15a{bottom:312.826667pt;}
.y1ba{bottom:315.386667pt;}
.y100{bottom:315.546667pt;}
.y2a7{bottom:315.706667pt;}
.ya2{bottom:317.946667pt;}
.y250{bottom:318.106667pt;}
.yde{bottom:318.906667pt;}
.yc5{bottom:319.066667pt;}
.y2b{bottom:319.226667pt;}
.y1e7{bottom:319.706667pt;}
.y133{bottom:320.666667pt;}
.y1cb{bottom:323.226667pt;}
.y73{bottom:323.546667pt;}
.y19e{bottom:324.826667pt;}
.y231{bottom:325.946667pt;}
.y282{bottom:326.266667pt;}
.y41{bottom:327.226667pt;}
.y159{bottom:328.666667pt;}
.y1b9{bottom:331.226667pt;}
.yff{bottom:331.386667pt;}
.y243{bottom:331.546667pt;}
.y18b{bottom:332.826667pt;}
.ya1{bottom:333.786667pt;}
.y24f{bottom:333.946667pt;}
.ydd{bottom:334.746667pt;}
.yc4{bottom:334.906667pt;}
.y2a{bottom:335.066667pt;}
.y1e6{bottom:335.546667pt;}
.y132{bottom:336.506667pt;}
.y72{bottom:339.386667pt;}
.y19d{bottom:340.666667pt;}
.y230{bottom:341.786667pt;}
.y281{bottom:342.106667pt;}
.y40{bottom:343.066667pt;}
.y158{bottom:344.506667pt;}
.y1b8{bottom:347.066667pt;}
.yfe{bottom:347.226667pt;}
.y242{bottom:347.386667pt;}
.y2a6{bottom:347.546667pt;}
.y18a{bottom:348.666667pt;}
.ya0{bottom:349.626667pt;}
.y24e{bottom:349.786667pt;}
.ydc{bottom:350.586667pt;}
.yc3{bottom:350.746667pt;}
.y29{bottom:350.906667pt;}
.y1f7{bottom:351.386667pt;}
.y131{bottom:352.346667pt;}
.y114{bottom:355.226667pt;}
.y19c{bottom:356.506667pt;}
.y22f{bottom:357.626667pt;}
.y280{bottom:357.946667pt;}
.y3f{bottom:358.906667pt;}
.y1e5{bottom:359.386667pt;}
.y157{bottom:360.346667pt;}
.y1b7{bottom:362.906667pt;}
.yfd{bottom:363.066667pt;}
.y71{bottom:363.226667pt;}
.y2a5{bottom:363.386667pt;}
.y189{bottom:364.506667pt;}
.y9f{bottom:365.466667pt;}
.y24d{bottom:365.626667pt;}
.ydb{bottom:366.426667pt;}
.yc2{bottom:366.586667pt;}
.y28{bottom:366.746667pt;}
.y1f6{bottom:367.226667pt;}
.y130{bottom:368.186667pt;}
.y113{bottom:371.066667pt;}
.y19b{bottom:372.346667pt;}
.y22e{bottom:373.466667pt;}
.y27f{bottom:373.786667pt;}
.y3e{bottom:374.746667pt;}
.y1e4{bottom:375.226667pt;}
.y156{bottom:376.186667pt;}
.y1b6{bottom:378.746667pt;}
.yfc{bottom:378.906667pt;}
.y70{bottom:379.066667pt;}
.y2a4{bottom:379.226667pt;}
.y188{bottom:380.346667pt;}
.y24c{bottom:381.466667pt;}
.yc1{bottom:382.426667pt;}
.y27{bottom:382.586667pt;}
.y12f{bottom:384.026667pt;}
.y112{bottom:386.906667pt;}
.y9e{bottom:389.466667pt;}
.y27e{bottom:389.626667pt;}
.y3d{bottom:390.586667pt;}
.y1e3{bottom:391.066667pt;}
.y155{bottom:392.066667pt;}
.yfb{bottom:394.786667pt;}
.y6f{bottom:394.946667pt;}
.y2a3{bottom:395.106667pt;}
.y187{bottom:396.386667pt;}
.y24b{bottom:397.506667pt;}
.yda{bottom:398.306667pt;}
.yc0{bottom:398.466667pt;}
.y26{bottom:398.626667pt;}
.y12e{bottom:400.066667pt;}
.y111{bottom:402.786667pt;}
.y9d{bottom:405.346667pt;}
.y27d{bottom:405.506667pt;}
.y3c{bottom:406.626667pt;}
.y1e2{bottom:406.946667pt;}
.y154{bottom:408.066667pt;}
.y1ca{bottom:410.626667pt;}
.y6e{bottom:410.786667pt;}
.y2a2{bottom:410.946667pt;}
.y186{bottom:412.226667pt;}
.yd9{bottom:414.146667pt;}
.ybf{bottom:414.306667pt;}
.y25{bottom:414.466667pt;}
.y12d{bottom:415.906667pt;}
.y1b5{bottom:418.626667pt;}
.y110{bottom:418.786667pt;}
.y9c{bottom:421.186667pt;}
.y27c{bottom:421.506667pt;}
.y3b{bottom:422.466667pt;}
.y24a{bottom:422.626667pt;}
.y1e1{bottom:422.946667pt;}
.y153{bottom:423.906667pt;}
.y6d{bottom:426.786667pt;}
.y185{bottom:428.066667pt;}
.y22d{bottom:429.186667pt;}
.yd8{bottom:429.986667pt;}
.ybe{bottom:430.146667pt;}
.y24{bottom:430.306667pt;}
.y12c{bottom:431.746667pt;}
.y1b4{bottom:434.466667pt;}
.yfa{bottom:434.626667pt;}
.y9b{bottom:437.026667pt;}
.y27b{bottom:437.346667pt;}
.y3a{bottom:438.306667pt;}
.y1f5{bottom:438.786667pt;}
.y6c{bottom:442.626667pt;}
.y2a1{bottom:442.786667pt;}
.y22c{bottom:445.026667pt;}
.yd7{bottom:445.826667pt;}
.ybd{bottom:445.986667pt;}
.y1e0{bottom:446.786667pt;}
.y152{bottom:447.426667pt;}
.y12b{bottom:447.586667pt;}
.y1b3{bottom:450.306667pt;}
.yf9{bottom:450.466667pt;}
.y184{bottom:451.586667pt;}
.y9a{bottom:452.866667pt;}
.y27a{bottom:453.186667pt;}
.y23{bottom:455.426667pt;}
.y6b{bottom:458.466667pt;}
.y2a0{bottom:458.626667pt;}
.y22b{bottom:460.866667pt;}
.ybc{bottom:461.826667pt;}
.y1df{bottom:462.626667pt;}
.y12a{bottom:463.426667pt;}
.y1b2{bottom:466.146667pt;}
.yf8{bottom:466.306667pt;}
.y99{bottom:468.866667pt;}
.y279{bottom:469.026667pt;}
.y151{bottom:471.266667pt;}
.y182{bottom:471.426667pt;}
.y6a{bottom:474.306667pt;}
.y29f{bottom:474.466667pt;}
.y22a{bottom:476.866667pt;}
.ybb{bottom:477.826667pt;}
.y1de{bottom:478.466667pt;}
.y20{bottom:478.946667pt;}
.y129{bottom:479.426667pt;}
.yf7{bottom:482.146667pt;}
.y2be{bottom:482.306667pt;}
.y98{bottom:484.706667pt;}
.y278{bottom:484.866667pt;}
.yd6{bottom:485.666667pt;}
.y10f{bottom:489.826667pt;}
.y69{bottom:490.146667pt;}
.y29e{bottom:490.306667pt;}
.y229{bottom:492.706667pt;}
.y17f{bottom:492.866667pt;}
.yba{bottom:493.666667pt;}
.y1f4{bottom:494.306667pt;}
.y128{bottom:495.266667pt;}
.y150{bottom:495.426667pt;}
.y1c9{bottom:497.986667pt;}
.yf6{bottom:498.146667pt;}
.y97{bottom:500.546667pt;}
.y277{bottom:500.866667pt;}
.yd5{bottom:501.506667pt;}
.y1dd{bottom:502.306667pt;}
.y1b1{bottom:505.986667pt;}
.y68{bottom:506.146667pt;}
.y228{bottom:508.546667pt;}
.yb9{bottom:509.506667pt;}
.y1f3{bottom:510.306667pt;}
.y127{bottom:511.106667pt;}
.y14f{bottom:511.426667pt;}
.y1c8{bottom:513.826667pt;}
.yf5{bottom:513.986667pt;}
.y10e{bottom:514.146667pt;}
.y96{bottom:516.386667pt;}
.y276{bottom:516.706667pt;}
.yd4{bottom:517.346667pt;}
.y1dc{bottom:518.306667pt;}
.y1b0{bottom:521.826667pt;}
.y67{bottom:521.986667pt;}
.y29d{bottom:522.146667pt;}
.y227{bottom:524.386667pt;}
.yb8{bottom:525.346667pt;}
.y12{bottom:525.666667pt;}
.y1f2{bottom:526.146667pt;}
.y126{bottom:526.946667pt;}
.y14e{bottom:527.266667pt;}
.y17d{bottom:529.666667pt;}
.yf4{bottom:529.826667pt;}
.y10d{bottom:529.986667pt;}
.y95{bottom:532.226667pt;}
.y275{bottom:532.546667pt;}
.y1db{bottom:534.146667pt;}
.y1af{bottom:537.666667pt;}
.y66{bottom:537.826667pt;}
.y29c{bottom:537.986667pt;}
.y226{bottom:540.226667pt;}
.yb7{bottom:541.186667pt;}
.y1f1{bottom:541.986667pt;}
.y125{bottom:542.786667pt;}
.y14d{bottom:543.106667pt;}
.yf3{bottom:545.666667pt;}
.y10c{bottom:545.826667pt;}
.y274{bottom:548.386667pt;}
.y1da{bottom:549.986667pt;}
.y2bd{bottom:553.346667pt;}
.y1ae{bottom:553.506667pt;}
.y65{bottom:553.666667pt;}
.y29b{bottom:553.826667pt;}
.y94{bottom:555.746667pt;}
.y225{bottom:556.066667pt;}
.y17c{bottom:556.866667pt;}
.yb6{bottom:557.026667pt;}
.y124{bottom:558.626667pt;}
.y14c{bottom:558.946667pt;}
.yf2{bottom:561.506667pt;}
.y10b{bottom:561.666667pt;}
.y273{bottom:564.226667pt;}
.y1f0{bottom:565.826667pt;}
.y1ad{bottom:569.346667pt;}
.y64{bottom:569.506667pt;}
.y29a{bottom:569.666667pt;}
.y224{bottom:572.066667pt;}
.y1d9{bottom:573.826667pt;}
.y123{bottom:574.626667pt;}
.y14b{bottom:574.786667pt;}
.y2bc{bottom:577.186667pt;}
.y249{bottom:577.346667pt;}
.y10a{bottom:577.506667pt;}
.y272{bottom:580.066667pt;}
.yb5{bottom:580.706667pt;}
.y93{bottom:581.346667pt;}
.y1ef{bottom:581.666667pt;}
.y17a{bottom:582.626667pt;}
.y63{bottom:585.346667pt;}
.y299{bottom:585.506667pt;}
.y223{bottom:587.906667pt;}
.y1d8{bottom:589.666667pt;}
.y122{bottom:590.466667pt;}
.y14a{bottom:590.626667pt;}
.y109{bottom:593.346667pt;}
.y271{bottom:596.066667pt;}
.y1ac{bottom:601.213333pt;}
.y62{bottom:601.373333pt;}
.yb4{bottom:601.853333pt;}
.y222{bottom:603.773333pt;}
.y1d7{bottom:605.533333pt;}
.y121{bottom:606.333333pt;}
.y149{bottom:606.653333pt;}
.y92{bottom:609.213333pt;}
.y108{bottom:609.373333pt;}
.y270{bottom:611.933333pt;}
.y177{bottom:616.893333pt;}
.y1c7{bottom:617.053333pt;}
.y61{bottom:617.213333pt;}
.y298{bottom:617.373333pt;}
.y221{bottom:619.613333pt;}
.yb3{bottom:621.213333pt;}
.y1d6{bottom:621.533333pt;}
.y148{bottom:622.493333pt;}
.y91{bottom:625.053333pt;}
.y107{bottom:625.213333pt;}
.y26f{bottom:627.773333pt;}
.y120{bottom:629.853333pt;}
.y1c6{bottom:632.893333pt;}
.y60{bottom:633.053333pt;}
.y297{bottom:633.213333pt;}
.y220{bottom:635.453333pt;}
.y1d5{bottom:637.373333pt;}
.y147{bottom:638.333333pt;}
.y1ab{bottom:640.893333pt;}
.y106{bottom:641.053333pt;}
.y26e{bottom:643.613333pt;}
.y5f{bottom:648.893333pt;}
.y296{bottom:649.053333pt;}
.y175{bottom:650.653333pt;}
.y1d4{bottom:653.213333pt;}
.y11f{bottom:654.013333pt;}
.y146{bottom:654.173333pt;}
.y1aa{bottom:656.733333pt;}
.y105{bottom:656.893333pt;}
.y21f{bottom:659.293333pt;}
.y26d{bottom:659.453333pt;}
.y5e{bottom:664.733333pt;}
.y295{bottom:664.893333pt;}
.y1d3{bottom:669.053333pt;}
.y11e{bottom:669.853333pt;}
.y145{bottom:670.013333pt;}
.y104{bottom:672.733333pt;}
.y21e{bottom:675.293333pt;}
.y172{bottom:676.413333pt;}
.y90{bottom:680.733333pt;}
.y1d2{bottom:684.893333pt;}
.y11d{bottom:685.853333pt;}
.y1a9{bottom:688.573333pt;}
.y5d{bottom:688.733333pt;}
.y21d{bottom:691.133333pt;}
.y26c{bottom:691.293333pt;}
.y8f{bottom:696.573333pt;}
.y294{bottom:696.733333pt;}
.y1ee{bottom:700.733333pt;}
.y144{bottom:701.853333pt;}
.y1a8{bottom:704.413333pt;}
.y5c{bottom:704.573333pt;}
.y21c{bottom:706.973333pt;}
.y26b{bottom:707.133333pt;}
.y1d1{bottom:708.733333pt;}
.y11c{bottom:709.373333pt;}
.y171{bottom:710.813333pt;}
.yf1{bottom:712.413333pt;}
.y293{bottom:712.573333pt;}
.y143{bottom:717.693333pt;}
.y8e{bottom:720.093333pt;}
.y1a7{bottom:720.253333pt;}
.y5b{bottom:720.413333pt;}
.y21b{bottom:722.813333pt;}
.y26a{bottom:722.973333pt;}
.y1d0{bottom:724.733333pt;}
.yf0{bottom:728.253333pt;}
.y292{bottom:728.413333pt;}
.y11b{bottom:733.533333pt;}
.y1a6{bottom:736.093333pt;}
.y5a{bottom:736.253333pt;}
.y21a{bottom:738.653333pt;}
.y269{bottom:738.813333pt;}
.y1cf{bottom:740.573333pt;}
.y248{bottom:743.773333pt;}
.yef{bottom:744.093333pt;}
.y8d{bottom:744.253333pt;}
.y16f{bottom:744.413333pt;}
.y11a{bottom:749.373333pt;}
.y1a5{bottom:751.933333pt;}
.y59{bottom:752.093333pt;}
.y11{bottom:753.533333pt;}
.y219{bottom:754.653333pt;}
.yee{bottom:759.933333pt;}
.y8c{bottom:760.093333pt;}
.y119{bottom:765.213333pt;}
.y1ce{bottom:767.293333pt;}
.y58{bottom:767.933333pt;}
.y218{bottom:770.493333pt;}
.y268{bottom:770.653333pt;}
.y16c{bottom:772.093333pt;}
.y8b{bottom:775.933333pt;}
.y10{bottom:777.533333pt;}
.y118{bottom:781.213333pt;}
.y57{bottom:783.933333pt;}
.y217{bottom:786.333333pt;}
.y267{bottom:786.493333pt;}
.y1a4{bottom:791.773333pt;}
.y8a{bottom:791.933333pt;}
.yf{bottom:793.373333pt;}
.y1cd{bottom:794.653333pt;}
.y204{bottom:796.800000pt;}
.y56{bottom:799.773333pt;}
.y216{bottom:802.173333pt;}
.y266{bottom:802.333333pt;}
.y117{bottom:804.733333pt;}
.y168{bottom:805.693333pt;}
.y1a3{bottom:807.613333pt;}
.y89{bottom:807.773333pt;}
.y55{bottom:815.653333pt;}
.ye{bottom:817.253333pt;}
.y265{bottom:818.213333pt;}
.y1c5{bottom:823.493333pt;}
.y88{bottom:823.653333pt;}
.y215{bottom:826.053333pt;}
.y116{bottom:826.853333pt;}
.y54{bottom:831.493333pt;}
.y264{bottom:834.053333pt;}
.yd{bottom:838.373333pt;}
.y1c4{bottom:839.333333pt;}
.y87{bottom:839.493333pt;}
.y214{bottom:841.893333pt;}
.y53{bottom:847.333333pt;}
.y263{bottom:849.893333pt;}
.y166{bottom:854.053333pt;}
.y86{bottom:855.333333pt;}
.yc{bottom:856.613333pt;}
.y213{bottom:857.893333pt;}
.y52{bottom:863.333333pt;}
.y262{bottom:865.893333pt;}
.y85{bottom:871.333333pt;}
.y212{bottom:873.733333pt;}
.y51{bottom:879.173333pt;}
.y163{bottom:880.453333pt;}
.y261{bottom:881.733333pt;}
.yb{bottom:883.173333pt;}
.y84{bottom:887.173333pt;}
.y211{bottom:889.573333pt;}
.yed{bottom:895.013333pt;}
.y260{bottom:897.573333pt;}
.y50{bottom:903.013333pt;}
.y210{bottom:905.413333pt;}
.ya{bottom:907.973333pt;}
.yec{bottom:910.853333pt;}
.y25f{bottom:913.413333pt;}
.y4f{bottom:918.853333pt;}
.y20f{bottom:921.253333pt;}
.yb2{bottom:926.693333pt;}
.y161{bottom:928.773333pt;}
.y25e{bottom:929.253333pt;}
.y4e{bottom:934.693333pt;}
.y20e{bottom:937.253333pt;}
.y9{bottom:939.493333pt;}
.y1c3{bottom:942.533333pt;}
.y4d{bottom:950.533333pt;}
.y20d{bottom:953.093333pt;}
.y25d{bottom:954.533333pt;}
.y15f{bottom:957.253333pt;}
.y1c2{bottom:958.533333pt;}
.y8{bottom:966.533333pt;}
.y20c{bottom:968.933333pt;}
.y1c1{bottom:974.373333pt;}
.y4c{bottom:982.373333pt;}
.y20b{bottom:984.773333pt;}
.y6{bottom:989.573333pt;}
.y1c0{bottom:990.213333pt;}
.y4b{bottom:998.213333pt;}
.y1bf{bottom:1006.053333pt;}
.y5{bottom:1006.693333pt;}
.y20a{bottom:1008.293333pt;}
.y4a{bottom:1014.053333pt;}
.y4{bottom:1023.040000pt;}
.y49{bottom:1029.920000pt;}
.y209{bottom:1033.920000pt;}
.y3{bottom:1036.640000pt;}
.y48{bottom:1045.920000pt;}
.y2{bottom:1050.240000pt;}
.y46{bottom:1063.200000pt;}
.y1{bottom:1063.840000pt;}
.h27{height:10.965000pt;}
.h22{height:20.786667pt;}
.h1f{height:25.106667pt;}
.h1c{height:25.120000pt;}
.h17{height:25.746667pt;}
.h20{height:26.386667pt;}
.h1a{height:26.880000pt;}
.h14{height:27.826667pt;}
.ha{height:31.406250pt;}
.h19{height:32.960000pt;}
.h1d{height:33.120000pt;}
.h1e{height:33.626667pt;}
.h1b{height:33.760000pt;}
.h21{height:36.146667pt;}
.hf{height:36.305625pt;}
.h23{height:39.562500pt;}
.h26{height:39.838667pt;}
.h5{height:42.084375pt;}
.h10{height:43.031250pt;}
.hd{height:45.906667pt;}
.h15{height:47.085938pt;}
.h6{height:47.109375pt;}
.h16{height:47.666667pt;}
.h18{height:47.700000pt;}
.h25{height:47.712000pt;}
.h2a{height:47.882812pt;}
.hb{height:48.375000pt;}
.h11{height:50.062500pt;}
.h24{height:52.510625pt;}
.h12{height:52.526250pt;}
.h9{height:53.370000pt;}
.h2{height:57.787500pt;}
.h4{height:58.563750pt;}
.h29{height:60.075000pt;}
.h7{height:61.920000pt;}
.h3{height:62.812500pt;}
.he{height:64.500000pt;}
.h8{height:75.465000pt;}
.h13{height:82.906667pt;}
.hc{height:222.266667pt;}
.h28{height:260.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:47.072000pt;}
.w3{width:51.826667pt;}
.w4{width:51.858667pt;}
.w6{width:53.760000pt;}
.wb{width:53.906667pt;}
.w5{width:62.720000pt;}
.w9{width:64.960000pt;}
.wc{width:65.586667pt;}
.wd{width:65.618667pt;}
.we{width:70.706667pt;}
.w8{width:161.297333pt;}
.w7{width:304.226667pt;}
.wf{width:511.200000pt;}
.w2{width:664.318667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.198667pt;}
.x18{left:18.066667pt;}
.x5{left:48.000000pt;}
.x8{left:57.440000pt;}
.x9{left:64.801333pt;}
.x2c{left:72.000000pt;}
.x6{left:79.712000pt;}
.xb{left:84.672000pt;}
.x1d{left:96.032000pt;}
.x2d{left:108.032000pt;}
.x21{left:130.281333pt;}
.x17{left:133.480000pt;}
.x28{left:139.840000pt;}
.x14{left:142.586667pt;}
.x2b{left:164.386667pt;}
.x2a{left:182.146667pt;}
.x19{left:186.120000pt;}
.xe{left:194.586667pt;}
.x29{left:195.746667pt;}
.x16{left:216.346667pt;}
.x1{left:233.466667pt;}
.x1a{left:238.626667pt;}
.x20{left:265.186667pt;}
.x2{left:272.706667pt;}
.x22{left:292.226667pt;}
.x1b{left:301.986667pt;}
.x4{left:302.946667pt;}
.x3{left:313.826667pt;}
.x1c{left:356.386667pt;}
.x23{left:357.826667pt;}
.x13{left:375.426667pt;}
.x24{left:405.706667pt;}
.xc{left:420.893333pt;}
.x10{left:444.893333pt;}
.xd{left:457.533333pt;}
.x25{left:460.266667pt;}
.x11{left:468.893333pt;}
.x1e{left:505.533333pt;}
.x26{left:526.506667pt;}
.x27{left:592.933333pt;}
.x12{left:631.333333pt;}
.x1f{left:653.893333pt;}
.x15{left:662.373333pt;}
.xf{left:731.040000pt;}
.x7{left:739.200000pt;}
}




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