
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_82fc26ef792c31d4df8ca987.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ba473b7a483b8951e786e923.woff2')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_6d94edbe331f95b98334dddf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8263cb656b78e7510d47e311.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_96469a329ed1f89bff801b61.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_84eda2bc239c76ab4d09f224.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_8abb410b4fe13894ddcc2291.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.061035;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_3b6f1a1707a20744ae20c05d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_208cc4282389d6c1dff89b00.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-76.320000px;}
.v5{vertical-align:-70.560000px;}
.v4{vertical-align:-60.480000px;}
.v3{vertical-align:-27.360000px;}
.v6{vertical-align:-12.960000px;}
.v8{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:4.320000px;}
.va{vertical-align:12.960000px;}
.ve{vertical-align:14.400000px;}
.vc{vertical-align:17.400000px;}
.vb{vertical-align:25.920000px;}
.v2{vertical-align:27.360000px;}
.v9{vertical-align:30.240000px;}
.v7{vertical-align:36.000000px;}
.ls10{letter-spacing:-1.908000px;}
.ls1c{letter-spacing:-1.458000px;}
.ls9{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-0.972000px;}
.ls25{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.630000px;}
.ls1a{letter-spacing:-0.507000px;}
.ls1b{letter-spacing:-0.466800px;}
.ls12{letter-spacing:-0.385800px;}
.ls6{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.089400px;}
.ls18{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.020160px;}
.ls2d{letter-spacing:0.154200px;}
.lsf{letter-spacing:0.266400px;}
.ls29{letter-spacing:0.324000px;}
.ls14{letter-spacing:0.449400px;}
.ls2e{letter-spacing:0.466560px;}
.ls11{letter-spacing:0.466800px;}
.ls21{letter-spacing:0.479520px;}
.ls19{letter-spacing:0.486600px;}
.ls1{letter-spacing:0.493920px;}
.lsa{letter-spacing:0.507000px;}
.ls1e{letter-spacing:0.509760px;}
.ls2f{letter-spacing:0.573000px;}
.ls7{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.900000px;}
.ls2b{letter-spacing:1.179360px;}
.ls26{letter-spacing:2.118240px;}
.lsc{letter-spacing:2.160000px;}
.ls24{letter-spacing:2.309760px;}
.ls27{letter-spacing:2.619360px;}
.ls16{letter-spacing:5.040000px;}
.ls2{letter-spacing:6.480000px;}
.ls13{letter-spacing:9.360000px;}
.ls17{letter-spacing:10.800000px;}
.ls15{letter-spacing:12.240000px;}
.ls23{letter-spacing:12.989280px;}
.ls22{letter-spacing:15.480000px;}
.lse{letter-spacing:16.306560px;}
.ls20{letter-spacing:16.741440px;}
.ls28{letter-spacing:16.885440px;}
.ls1f{letter-spacing:18.149760px;}
.ls2a{letter-spacing:29.748000px;}
.ls30{letter-spacing:46.546560px;}
.ls2c{letter-spacing:78.235680px;}
.ls1d{letter-spacing:1004.856000px;}
.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;}
}
.wsa{word-spacing:-15.627000px;}
.ws11{word-spacing:-15.606600px;}
.wsf{word-spacing:-15.586800px;}
.wsb{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws10{word-spacing:-15.099840px;}
.ws13{word-spacing:-14.653200px;}
.ws12{word-spacing:-14.613000px;}
.wse{word-spacing:-14.400000px;}
.ws4{word-spacing:-14.310000px;}
.wsc{word-spacing:-14.148000px;}
.ws5{word-spacing:-13.680000px;}
.ws14{word-spacing:-13.662000px;}
.wsd{word-spacing:-13.212000px;}
.ws7{word-spacing:-13.050000px;}
.ws8{word-spacing:-12.240000px;}
.ws2{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
._38{margin-left:-8.432640px;}
._35{margin-left:-5.302080px;}
._11{margin-left:-3.880320px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._7{width:4.559520px;}
._5{width:6.523200px;}
._6{width:7.940160px;}
._e{width:8.951040px;}
._a{width:9.982080px;}
._b{width:11.324160px;}
._12{width:12.563520px;}
._13{width:13.840320px;}
._16{width:15.552000px;}
._9{width:16.591680px;}
._d{width:17.844960px;}
._c{width:19.575360px;}
._3a{width:21.221760px;}
._14{width:22.919520px;}
._10{width:24.675840px;}
._f{width:25.704000px;}
._2b{width:27.216000px;}
._17{width:30.182400px;}
._36{width:31.536480px;}
._2d{width:33.042240px;}
._31{width:37.336320px;}
._1b{width:38.767680px;}
._1c{width:51.408000px;}
._2f{width:53.161920px;}
._33{width:55.439640px;}
._22{width:57.456000px;}
._19{width:64.512000px;}
._18{width:65.583360px;}
._15{width:67.746240px;}
._30{width:74.753280px;}
._24{width:79.320000px;}
._2e{width:83.401920px;}
._20{width:85.872960px;}
._28{width:87.696000px;}
._26{width:89.167680px;}
._1a{width:93.493440px;}
._21{width:97.816320px;}
._29{width:109.287360px;}
._1e{width:112.916160px;}
._23{width:119.407680px;}
._39{width:121.981440px;}
._2a{width:156.824640px;}
._1f{width:161.904960px;}
._1d{width:165.559680px;}
._37{width:185.880000px;}
._27{width:187.246080px;}
._34{width:201.000000px;}
._25{width:235.373280px;}
._32{width:437.271360px;}
._8{width:768.695040px;}
._2c{width:1992.907680px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs7{font-size:18.720000px;}
.fs3{font-size:24.480000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fsa{font-size:54.720000px;}
.fs4{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:83.520000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y56{bottom:3.235500px;}
.ya9{bottom:3.240000px;}
.yb3{bottom:3.585000px;}
.ybb{bottom:3.586500px;}
.ybf{bottom:3.595500px;}
.yac{bottom:3.600000px;}
.y12f{bottom:3.645000px;}
.yb7{bottom:3.945000px;}
.ye0{bottom:3.946500px;}
.ybd{bottom:3.955500px;}
.y5{bottom:3.960000px;}
.y1a1{bottom:3.975000px;}
.y1be{bottom:3.990000px;}
.y58{bottom:5.370000px;}
.y49{bottom:5.395500px;}
.y2{bottom:7.920000px;}
.y55{bottom:19.075500px;}
.yaa{bottom:19.800000px;}
.yb6{bottom:20.145000px;}
.yaf{bottom:20.160000px;}
.yb2{bottom:20.175000px;}
.y110{bottom:20.520000px;}
.y149{bottom:20.565000px;}
.yd3{bottom:20.880000px;}
.ydc{bottom:21.225000px;}
.y4{bottom:21.240000px;}
.yd9{bottom:21.255000px;}
.yf6{bottom:21.285000px;}
.y189{bottom:29.194500px;}
.y54{bottom:34.555500px;}
.y48{bottom:34.915500px;}
.y150{bottom:35.265000px;}
.y119{bottom:35.314500px;}
.yb1{bottom:36.375000px;}
.yb5{bottom:36.705000px;}
.yae{bottom:36.720000px;}
.ya7{bottom:37.125000px;}
.yd6{bottom:38.160000px;}
.yd8{bottom:38.175000px;}
.ydb{bottom:38.505000px;}
.y41{bottom:38.520000px;}
.y10e{bottom:38.565000px;}
.yd1{bottom:38.880000px;}
.y12d{bottom:38.925000px;}
.y3{bottom:44.280000px;}
.y53{bottom:51.871500px;}
.y40{bottom:55.800000px;}
.y47{bottom:56.191500px;}
.y7{bottom:57.636000px;}
.y52{bottom:67.714500px;}
.y46{bottom:69.154500px;}
.y3f{bottom:73.080000px;}
.y51{bottom:83.194500px;}
.y1ce{bottom:88.240500px;}
.ye3{bottom:88.600500px;}
.y3e{bottom:90.360000px;}
.y45{bottom:90.754500px;}
.yc0{bottom:90.760500px;}
.y42{bottom:91.120500px;}
.y13a{bottom:92.196000px;}
.y1d9{bottom:93.996000px;}
.y50{bottom:96.154500px;}
.y11b{bottom:96.516000px;}
.y4f{bottom:102.274500px;}
.y231{bottom:104.076000px;}
.y18b{bottom:104.796000px;}
.y139{bottom:106.240500px;}
.ye2{bottom:106.600500px;}
.y3d{bottom:107.280000px;}
.y170{bottom:107.316000px;}
.ybe{bottom:108.040500px;}
.y153{bottom:110.196000px;}
.y11a{bottom:110.560500px;}
.y1a8{bottom:110.916000px;}
.y1cd{bottom:111.280500px;}
.y1d8{bottom:117.756000px;}
.y4e{bottom:118.474500px;}
.y18a{bottom:118.840500px;}
.y230{bottom:121.356000px;}
.y16f{bottom:121.360500px;}
.y138{bottom:124.240500px;}
.ye1{bottom:124.600500px;}
.y3c{bottom:124.605000px;}
.ybc{bottom:124.960500px;}
.y204{bottom:126.036000px;}
.y152{bottom:127.476000px;}
.y1a7{bottom:128.196000px;}
.y118{bottom:128.560500px;}
.y4d{bottom:133.954500px;}
.y1cc{bottom:134.680500px;}
.y188{bottom:136.840500px;}
.y22f{bottom:138.636000px;}
.y1d7{bottom:139.356000px;}
.y16e{bottom:139.360500px;}
.y151{bottom:141.565500px;}
.y3b{bottom:141.885000px;}
.yba{bottom:142.285500px;}
.ydf{bottom:142.645500px;}
.y203{bottom:143.352000px;}
.y1a6{bottom:145.512000px;}
.y7e{bottom:148.752000px;}
.y4c{bottom:149.434500px;}
.y44{bottom:153.034500px;}
.y22e{bottom:155.955000px;}
.y1d6{bottom:156.315000px;}
.y1cb{bottom:158.130000px;}
.y3a{bottom:159.165000px;}
.yb9{bottom:159.210000px;}
.y14f{bottom:159.570000px;}
.y202{bottom:160.635000px;}
.yde{bottom:160.650000px;}
.y7d{bottom:162.435000px;}
.y1a5{bottom:162.795000px;}
.y43{bottom:163.834500px;}
.y4b{bottom:164.914500px;}
.y22d{bottom:173.235000px;}
.y1d5{bottom:173.595000px;}
.y137{bottom:173.610000px;}
.y39{bottom:176.445000px;}
.yb8{bottom:176.490000px;}
.y201{bottom:177.915000px;}
.y117{bottom:177.930000px;}
.ydd{bottom:178.650000px;}
.y1a4{bottom:179.715000px;}
.y4a{bottom:180.034500px;}
.y187{bottom:180.090000px;}
.y1ca{bottom:181.170000px;}
.y16d{bottom:188.730000px;}
.y22c{bottom:190.155000px;}
.y1d4{bottom:190.875000px;}
.y136{bottom:191.610000px;}
.y38{bottom:193.725000px;}
.y200{bottom:195.195000px;}
.y116{bottom:195.930000px;}
.y186{bottom:198.090000px;}
.y1a3{bottom:203.490000px;}
.y1c9{bottom:204.570000px;}
.y16c{bottom:206.730000px;}
.y22b{bottom:207.435000px;}
.y1d3{bottom:207.795000px;}
.y14e{bottom:208.890000px;}
.y135{bottom:209.610000px;}
.yb4{bottom:209.970000px;}
.y37{bottom:211.005000px;}
.y1ff{bottom:212.115000px;}
.yda{bottom:213.930000px;}
.y185{bottom:216.090000px;}
.y1a2{bottom:221.490000px;}
.y22a{bottom:224.715000px;}
.y16b{bottom:224.730000px;}
.y1d2{bottom:225.795000px;}
.y14d{bottom:226.890000px;}
.y134{bottom:227.610000px;}
.y36{bottom:228.285000px;}
.y1fe{bottom:230.115000px;}
.yfe{bottom:231.195000px;}
.y115{bottom:231.930000px;}
.y184{bottom:234.090000px;}
.y1d1{bottom:239.835000px;}
.y229{bottom:241.995000px;}
.y16a{bottom:242.730000px;}
.y14c{bottom:244.890000px;}
.yfd{bottom:245.250000px;}
.y35{bottom:245.565000px;}
.y133{bottom:245.610000px;}
.y1fd{bottom:247.035000px;}
.y114{bottom:249.930000px;}
.y1c8{bottom:251.010000px;}
.y183{bottom:252.090000px;}
.y228{bottom:259.275000px;}
.yb0{bottom:260.010000px;}
.y1fc{bottom:260.715000px;}
.y169{bottom:260.730000px;}
.y34{bottom:262.875000px;}
.y14b{bottom:262.890000px;}
.yfc{bottom:263.250000px;}
.yd7{bottom:266.490000px;}
.y1a0{bottom:270.810000px;}
.y1c7{bottom:274.425000px;}
.y227{bottom:276.585000px;}
.y33{bottom:280.155000px;}
.y132{bottom:280.905000px;}
.yfb{bottom:281.265000px;}
.y13{bottom:284.505000px;}
.y21{bottom:285.195000px;}
.y113{bottom:285.225000px;}
.y182{bottom:287.385000px;}
.y19f{bottom:288.825000px;}
.y226{bottom:293.865000px;}
.y168{bottom:296.025000px;}
.y32{bottom:297.075000px;}
.y1c6{bottom:297.465000px;}
.yfa{bottom:299.265000px;}
.y19e{bottom:306.825000px;}
.y20{bottom:309.315000px;}
.yad{bottom:309.705000px;}
.y225{bottom:311.145000px;}
.y131{bottom:316.185000px;}
.yf9{bottom:317.265000px;}
.yd5{bottom:319.065000px;}
.y112{bottom:320.505000px;}
.y1c5{bottom:320.865000px;}
.y181{bottom:322.665000px;}
.y31{bottom:323.355000px;}
.y19d{bottom:324.825000px;}
.y224{bottom:328.425000px;}
.y167{bottom:331.305000px;}
.y1f{bottom:333.435000px;}
.yf8{bottom:335.265000px;}
.y30{bottom:338.835000px;}
.y19c{bottom:342.825000px;}
.y223{bottom:345.705000px;}
.y1c4{bottom:347.505000px;}
.y130{bottom:351.465000px;}
.yf7{bottom:353.265000px;}
.y2f{bottom:354.315000px;}
.y111{bottom:355.785000px;}
.y1e{bottom:357.555000px;}
.y180{bottom:357.945000px;}
.yab{bottom:359.745000px;}
.y222{bottom:362.985000px;}
.y166{bottom:366.585000px;}
.y12c{bottom:369.465000px;}
.y2e{bottom:369.795000px;}
.y1c3{bottom:370.905000px;}
.yd4{bottom:371.265000px;}
.y10d{bottom:373.785000px;}
.y17e{bottom:375.945000px;}
.ya6{bottom:377.025000px;}
.y19b{bottom:378.105000px;}
.y221{bottom:379.905000px;}
.y1d{bottom:381.675000px;}
.y164{bottom:384.585000px;}
.y2d{bottom:385.305000px;}
.y14a{bottom:386.745000px;}
.yf5{bottom:388.545000px;}
.y1c2{bottom:395.745000px;}
.y220{bottom:397.185000px;}
.y2c{bottom:401.145000px;}
.y12e{bottom:404.745000px;}
.y1c{bottom:405.825000px;}
.yd0{bottom:406.590000px;}
.y10f{bottom:408.750000px;}
.ya8{bottom:410.550000px;}
.y17f{bottom:411.270000px;}
.y19a{bottom:413.430000px;}
.y21f{bottom:414.510000px;}
.y2b{bottom:416.625000px;}
.y165{bottom:419.550000px;}
.yf4{bottom:423.870000px;}
.y1c1{bottom:424.590000px;}
.y12b{bottom:426.390000px;}
.y1b{bottom:429.945000px;}
.ya5{bottom:431.070000px;}
.y21e{bottom:431.790000px;}
.y2a{bottom:432.105000px;}
.y17d{bottom:432.870000px;}
.y148{bottom:440.070000px;}
.y163{bottom:441.150000px;}
.yd2{bottom:441.870000px;}
.y29{bottom:447.585000px;}
.y10c{bottom:447.990000px;}
.y199{bottom:448.350000px;}
.ya4{bottom:448.710000px;}
.y21d{bottom:449.070000px;}
.y17c{bottom:450.510000px;}
.y12a{bottom:453.030000px;}
.y1a{bottom:454.425000px;}
.yf3{bottom:459.150000px;}
.y147{bottom:461.310000px;}
.y28{bottom:463.065000px;}
.ycf{bottom:463.470000px;}
.y10b{bottom:465.270000px;}
.ya3{bottom:465.990000px;}
.y197{bottom:466.350000px;}
.y162{bottom:467.790000px;}
.y129{bottom:470.310000px;}
.yf1{bottom:477.150000px;}
.y19{bottom:478.545000px;}
.y146{bottom:478.950000px;}
.y10a{bottom:482.550000px;}
.ya2{bottom:483.270000px;}
.y21c{bottom:483.630000px;}
.y161{bottom:485.070000px;}
.y128{bottom:487.230000px;}
.yce{bottom:490.110000px;}
.y1c0{bottom:492.270000px;}
.y7c{bottom:492.990000px;}
.y27{bottom:494.025000px;}
.y145{bottom:496.230000px;}
.y109{bottom:499.830000px;}
.ya1{bottom:500.550000px;}
.y21b{bottom:500.910000px;}
.y198{bottom:501.630000px;}
.y17b{bottom:501.990000px;}
.y160{bottom:502.350000px;}
.y18{bottom:502.665000px;}
.y127{bottom:504.510000px;}
.ycd{bottom:507.390000px;}
.y26{bottom:509.505000px;}
.y7b{bottom:510.270000px;}
.yf2{bottom:512.430000px;}
.y144{bottom:513.510000px;}
.y1bf{bottom:514.590000px;}
.y108{bottom:517.110000px;}
.ya0{bottom:517.830000px;}
.y21a{bottom:518.190000px;}
.y17a{bottom:519.270000px;}
.y15f{bottom:519.630000px;}
.y126{bottom:521.790000px;}
.y196{bottom:523.590000px;}
.ycc{bottom:524.670000px;}
.y25{bottom:525.030000px;}
.y17{bottom:526.830000px;}
.y7a{bottom:527.550000px;}
.y1fb{bottom:528.630000px;}
.y143{bottom:530.790000px;}
.yf0{bottom:534.030000px;}
.y107{bottom:534.390000px;}
.y9f{bottom:535.110000px;}
.y219{bottom:535.470000px;}
.y179{bottom:536.550000px;}
.y15e{bottom:536.910000px;}
.y125{bottom:539.100000px;}
.y24{bottom:540.870000px;}
.y195{bottom:541.260000px;}
.ycb{bottom:541.980000px;}
.y79{bottom:544.860000px;}
.y1fa{bottom:545.940000px;}
.y142{bottom:548.100000px;}
.y16{bottom:550.950000px;}
.y106{bottom:551.700000px;}
.y9e{bottom:552.420000px;}
.y218{bottom:552.780000px;}
.y178{bottom:553.860000px;}
.y15d{bottom:554.220000px;}
.y23{bottom:556.350000px;}
.y124{bottom:556.380000px;}
.y194{bottom:558.540000px;}
.yca{bottom:559.260000px;}
.yef{bottom:560.700000px;}
.y78{bottom:562.140000px;}
.y1f9{bottom:563.220000px;}
.y141{bottom:565.380000px;}
.y105{bottom:568.980000px;}
.y9d{bottom:569.340000px;}
.y217{bottom:570.060000px;}
.y177{bottom:571.140000px;}
.y15c{bottom:571.500000px;}
.y123{bottom:573.660000px;}
.y15{bottom:575.070000px;}
.y193{bottom:575.820000px;}
.yc9{bottom:576.540000px;}
.yee{bottom:577.980000px;}
.y77{bottom:579.420000px;}
.y1f8{bottom:580.500000px;}
.y1bd{bottom:581.580000px;}
.y140{bottom:582.660000px;}
.y104{bottom:586.260000px;}
.y22{bottom:586.950000px;}
.y9c{bottom:586.980000px;}
.y176{bottom:588.420000px;}
.y15b{bottom:588.780000px;}
.y237{bottom:589.500000px;}
.y122{bottom:590.940000px;}
.y192{bottom:593.100000px;}
.yc8{bottom:593.460000px;}
.yed{bottom:594.900000px;}
.y76{bottom:596.700000px;}
.y1f7{bottom:597.780000px;}
.y14{bottom:599.190000px;}
.y13f{bottom:599.940000px;}
.y103{bottom:603.180000px;}
.y1bc{bottom:603.900000px;}
.y216{bottom:604.260000px;}
.y9b{bottom:604.620000px;}
.y175{bottom:605.700000px;}
.y15a{bottom:606.060000px;}
.y121{bottom:608.220000px;}
.y191{bottom:610.380000px;}
.yc7{bottom:610.740000px;}
.yec{bottom:612.180000px;}
.y75{bottom:613.980000px;}
.y1f6{bottom:614.700000px;}
.y13e{bottom:616.860000px;}
.y102{bottom:620.460000px;}
.y215{bottom:621.540000px;}
.y9a{bottom:621.900000px;}
.y174{bottom:622.620000px;}
.y159{bottom:623.340000px;}
.y120{bottom:625.500000px;}
.y1bb{bottom:626.220000px;}
.y190{bottom:627.660000px;}
.yc6{bottom:628.020000px;}
.yeb{bottom:629.460000px;}
.y74{bottom:630.900000px;}
.y101{bottom:637.380000px;}
.y214{bottom:638.820000px;}
.y99{bottom:639.180000px;}
.y158{bottom:640.260000px;}
.y236{bottom:640.620000px;}
.y1f5{bottom:641.340000px;}
.y11f{bottom:642.420000px;}
.y13d{bottom:643.500000px;}
.y18f{bottom:644.940000px;}
.yc5{bottom:645.300000px;}
.yea{bottom:646.740000px;}
.y73{bottom:648.180000px;}
.y1ba{bottom:648.540000px;}
.y173{bottom:649.260000px;}
.y100{bottom:651.420000px;}
.y213{bottom:656.100000px;}
.y98{bottom:656.460000px;}
.y13c{bottom:657.180000px;}
.y157{bottom:657.540000px;}
.y235{bottom:657.900000px;}
.y1f4{bottom:658.980000px;}
.y18e{bottom:661.860000px;}
.yc4{bottom:662.220000px;}
.y172{bottom:663.300000px;}
.ye9{bottom:664.020000px;}
.y72{bottom:665.460000px;}
.y11e{bottom:669.090000px;}
.y212{bottom:673.410000px;}
.y97{bottom:673.770000px;}
.y234{bottom:675.210000px;}
.y1f3{bottom:676.290000px;}
.yc3{bottom:679.530000px;}
.ye8{bottom:681.330000px;}
.y71{bottom:682.770000px;}
.y11d{bottom:683.130000px;}
.y156{bottom:684.210000px;}
.y18d{bottom:688.530000px;}
.y211{bottom:690.690000px;}
.y96{bottom:691.050000px;}
.y1b9{bottom:691.770000px;}
.y233{bottom:692.130000px;}
.yc2{bottom:693.210000px;}
.y1f2{bottom:693.930000px;}
.y155{bottom:697.890000px;}
.ye7{bottom:698.250000px;}
.y70{bottom:699.690000px;}
.y18c{bottom:702.210000px;}
.y1f1{bottom:707.970000px;}
.y95{bottom:708.330000px;}
.y1b8{bottom:709.050000px;}
.y232{bottom:709.410000px;}
.y1ef{bottom:711.570000px;}
.y1f0{bottom:717.330000px;}
.ye6{bottom:724.530000px;}
.y94{bottom:725.250000px;}
.y1b7{bottom:726.330000px;}
.y6f{bottom:726.690000px;}
.y1ee{bottom:729.570000px;}
.ye5{bottom:738.210000px;}
.y93{bottom:742.530000px;}
.y1b6{bottom:743.610000px;}
.y6e{bottom:743.970000px;}
.y1ed{bottom:746.850000px;}
.y92{bottom:759.810000px;}
.y1b5{bottom:760.890000px;}
.y6d{bottom:761.250000px;}
.y1ec{bottom:763.770000px;}
.y210{bottom:776.730000px;}
.y91{bottom:777.090000px;}
.y1b4{bottom:778.170000px;}
.y6c{bottom:778.530000px;}
.y1eb{bottom:781.050000px;}
.y1d0{bottom:783.570000px;}
.y20f{bottom:794.010000px;}
.y90{bottom:794.370000px;}
.y1b3{bottom:795.450000px;}
.y6b{bottom:795.810000px;}
.y1ea{bottom:798.330000px;}
.y1cf{bottom:806.295000px;}
.y20e{bottom:811.335000px;}
.y8f{bottom:811.695000px;}
.y1b2{bottom:812.775000px;}
.y6a{bottom:813.135000px;}
.y1e9{bottom:815.655000px;}
.y20d{bottom:828.615000px;}
.y8e{bottom:828.975000px;}
.y1b1{bottom:830.055000px;}
.y69{bottom:830.415000px;}
.y1e8{bottom:832.575000px;}
.y8d{bottom:845.895000px;}
.y1b0{bottom:846.975000px;}
.y68{bottom:847.695000px;}
.y1e7{bottom:859.575000px;}
.y20c{bottom:863.175000px;}
.y8c{bottom:863.895000px;}
.y1af{bottom:864.255000px;}
.y67{bottom:864.975000px;}
.y1e6{bottom:877.215000px;}
.y171{bottom:879.375000px;}
.y20b{bottom:880.455000px;}
.y8b{bottom:881.175000px;}
.y1ae{bottom:881.535000px;}
.y66{bottom:882.255000px;}
.y13b{bottom:892.335000px;}
.y1e5{bottom:894.855000px;}
.y12{bottom:895.935000px;}
.y11c{bottom:896.655000px;}
.y20a{bottom:897.735000px;}
.y11{bottom:898.455000px;}
.yff{bottom:898.815000px;}
.y65{bottom:899.175000px;}
.y10{bottom:906.375000px;}
.yc1{bottom:910.335000px;}
.y154{bottom:911.415000px;}
.y1e4{bottom:912.495000px;}
.y209{bottom:914.655000px;}
.y8a{bottom:915.735000px;}
.y1ad{bottom:916.095000px;}
.y64{bottom:916.455000px;}
.ye4{bottom:919.335000px;}
.yf{bottom:923.655000px;}
.y1e3{bottom:928.695000px;}
.y89{bottom:933.045000px;}
.y1ac{bottom:933.405000px;}
.y63{bottom:933.765000px;}
.y1e2{bottom:936.285000px;}
.y208{bottom:941.325000px;}
.ye{bottom:947.805000px;}
.y88{bottom:950.325000px;}
.y1ab{bottom:950.685000px;}
.y62{bottom:951.045000px;}
.y1e1{bottom:957.885000px;}
.yd{bottom:958.245000px;}
.y207{bottom:958.605000px;}
.y87{bottom:967.605000px;}
.y1aa{bottom:967.965000px;}
.y61{bottom:968.325000px;}
.y1e0{bottom:975.165000px;}
.y206{bottom:975.525000px;}
.yc{bottom:982.365000px;}
.y86{bottom:984.525000px;}
.y1a9{bottom:985.245000px;}
.y60{bottom:985.605000px;}
.y1df{bottom:992.445000px;}
.y205{bottom:992.805000px;}
.y85{bottom:1002.525000px;}
.y5f{bottom:1002.885000px;}
.y1de{bottom:1009.725000px;}
.yb{bottom:1011.525000px;}
.y84{bottom:1019.805000px;}
.y5e{bottom:1020.165000px;}
.y1dd{bottom:1026.645000px;}
.ya{bottom:1036.005000px;}
.y83{bottom:1036.725000px;}
.y5d{bottom:1037.445000px;}
.y1dc{bottom:1053.645000px;}
.y82{bottom:1054.005000px;}
.y5c{bottom:1054.725000px;}
.y9{bottom:1060.485000px;}
.y1db{bottom:1070.970000px;}
.y81{bottom:1071.330000px;}
.y5b{bottom:1072.050000px;}
.y8{bottom:1088.250000px;}
.y80{bottom:1088.610000px;}
.y5a{bottom:1088.970000px;}
.y57{bottom:1091.520000px;}
.y7f{bottom:1105.530000px;}
.y1da{bottom:1105.890000px;}
.y59{bottom:1106.250000px;}
.y6{bottom:1121.730000px;}
.y1{bottom:1127.130000px;}
.hc{height:4.165313px;}
.h14{height:5.650313px;}
.h19{height:16.185000px;}
.h20{height:16.186500px;}
.h22{height:16.195500px;}
.h1f{height:16.545000px;}
.h21{height:16.591500px;}
.h30{height:16.905000px;}
.h24{height:17.265000px;}
.h2a{height:17.266500px;}
.h2c{height:17.275500px;}
.h2d{height:17.280000px;}
.h35{height:17.310000px;}
.h2b{height:17.311500px;}
.hb{height:18.372656px;}
.h3f{height:21.225000px;}
.h3b{height:21.240000px;}
.h39{height:21.276000px;}
.h3e{height:21.585000px;}
.h3c{height:21.600000px;}
.h3d{height:21.630000px;}
.h42{height:22.305000px;}
.h47{height:22.315500px;}
.h44{height:22.320000px;}
.h43{height:22.665000px;}
.h46{height:22.675500px;}
.h45{height:22.711500px;}
.h41{height:24.105000px;}
.h6{height:24.348516px;}
.h40{height:24.510000px;}
.h15{height:27.720000px;}
.h12{height:29.678906px;}
.h1e{height:32.745000px;}
.h1a{height:32.790000px;}
.h31{height:34.185000px;}
.h2f{height:34.230000px;}
.h25{height:34.545000px;}
.h32{height:34.560000px;}
.h26{height:34.590000px;}
.h4c{height:35.194219px;}
.h9{height:39.183750px;}
.hf{height:40.985156px;}
.he{height:42.086250px;}
.h38{height:42.229688px;}
.h37{height:42.511500px;}
.h36{height:48.585000px;}
.h33{height:48.631500px;}
.h1d{height:48.960000px;}
.h1c{height:49.305000px;}
.h18{height:49.710000px;}
.h27{height:51.465000px;}
.h28{height:51.480000px;}
.h29{height:51.825000px;}
.h2e{height:52.230000px;}
.h23{height:52.545000px;}
.h34{height:52.590000px;}
.h10{height:53.677969px;}
.h13{height:55.147500px;}
.h4b{height:55.290938px;}
.h1b{height:56.531250px;}
.h7{height:58.050000px;}
.h3a{height:59.328281px;}
.h5{height:59.357813px;}
.ha{height:60.952500px;}
.h4e{height:62.163910px;}
.h17{height:62.960625px;}
.h16{height:63.455625px;}
.h8{height:63.577969px;}
.h3{height:65.884219px;}
.h48{height:71.194219px;}
.h4d{height:73.757813px;}
.h2{height:81.390000px;}
.h49{height:89.597812px;}
.h4a{height:89.717813px;}
.h4{height:116.640000px;}
.h11{height:192.645000px;}
.hd{height:608.550000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w47{width:56.865000px;}
.w4c{width:56.901000px;}
.w48{width:56.910000px;}
.w4a{width:56.916000px;}
.w4d{width:57.240000px;}
.w49{width:57.270000px;}
.w3e{width:57.945000px;}
.w3c{width:57.990000px;}
.w39{width:58.305000px;}
.w3b{width:58.320000px;}
.w3f{width:58.341000px;}
.w35{width:58.350000px;}
.w3d{width:58.356000px;}
.w36{width:58.665000px;}
.w34{width:58.680000px;}
.w3a{width:58.701000px;}
.w37{width:58.710000px;}
.w38{width:58.716000px;}
.w4b{width:59.025000px;}
.wd{width:65.916000px;}
.w40{width:67.657500px;}
.w43{width:68.070000px;}
.w44{width:68.076000px;}
.w41{width:68.400000px;}
.w45{width:68.421000px;}
.w42{width:68.430000px;}
.wc{width:68.790000px;}
.w46{width:69.840000px;}
.w18{width:69.876000px;}
.w1a{width:74.505000px;}
.w19{width:75.981000px;}
.w16{width:75.990000px;}
.wf{width:77.025000px;}
.w1b{width:77.040000px;}
.w33{width:77.377500px;}
.w10{width:79.920000px;}
.w2d{width:81.030000px;}
.w22{width:82.110000px;}
.we{width:85.701000px;}
.w2e{width:85.716000px;}
.w17{width:86.430000px;}
.w23{width:86.796000px;}
.w30{width:91.080000px;}
.w25{width:92.160000px;}
.w2f{width:92.901000px;}
.w24{width:93.981000px;}
.w31{width:94.710000px;}
.w26{width:95.430000px;}
.wb{width:99.390000px;}
.w12{width:103.320000px;}
.w2{width:103.702500px;}
.w7{width:106.560000px;}
.w2c{width:117.390000px;}
.w21{width:118.830000px;}
.w28{width:126.405000px;}
.w1d{width:127.845000px;}
.w4{width:132.502500px;}
.w14{width:146.952000px;}
.w15{width:152.280000px;}
.w9{width:152.355000px;}
.wa{width:157.680000px;}
.w6{width:163.080000px;}
.w13{width:163.515000px;}
.w8{width:168.915000px;}
.w2a{width:179.355000px;}
.w1c{width:180.045000px;}
.w1f{width:181.515000px;}
.w2b{width:186.525000px;}
.w20{width:188.325000px;}
.w29{width:199.515000px;}
.w1e{width:201.675000px;}
.w11{width:207.045000px;}
.w32{width:244.530000px;}
.w27{width:247.410000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x17{left:8.266500px;}
.x4{left:13.305000px;}
.x1b{left:18.346500px;}
.x5{left:19.425000px;}
.x1d{left:29.146500px;}
.x16{left:31.666500px;}
.x19{left:35.295000px;}
.x11{left:43.906500px;}
.x1c{left:47.542500px;}
.x6{left:48.615000px;}
.x12{left:50.782500px;}
.x15{left:54.022500px;}
.x10{left:55.102500px;}
.x1{left:78.529500px;}
.x14{left:83.905500px;}
.x7{left:86.436000px;}
.xc{left:90.036000px;}
.x2{left:95.425500px;}
.x4b{left:99.769500px;}
.x1e{left:102.985500px;}
.x1a{left:106.945500px;}
.x20{left:113.436000px;}
.x6e{left:118.476000px;}
.x13{left:124.585500px;}
.x6f{left:136.512000px;}
.x5b{left:138.334500px;}
.x21{left:140.472000px;}
.xa{left:143.352000px;}
.x25{left:152.730000px;}
.x30{left:162.450000px;}
.x3{left:182.250000px;}
.x5c{left:206.370000px;}
.x18{left:218.970000px;}
.x53{left:220.410000px;}
.x64{left:222.945000px;}
.x39{left:224.385000px;}
.x4c{left:226.905000px;}
.x52{left:256.785000px;}
.x26{left:260.385000px;}
.x31{left:266.505000px;}
.x43{left:270.105000px;}
.x5d{left:275.145000px;}
.x54{left:279.465000px;}
.x40{left:281.265000px;}
.x48{left:290.265000px;}
.x38{left:292.425000px;}
.x46{left:310.830000px;}
.x6c{left:313.710000px;}
.x4a{left:318.030000px;}
.x49{left:320.910000px;}
.x63{left:324.150000px;}
.x71{left:328.830000px;}
.x2e{left:331.710000px;}
.x24{left:334.590000px;}
.x65{left:337.470000px;}
.x2f{left:338.550000px;}
.x33{left:343.590000px;}
.x4e{left:345.390000px;}
.x29{left:360.510000px;}
.x5a{left:393.990000px;}
.x55{left:397.230000px;}
.x23{left:407.700000px;}
.x5e{left:412.380000px;}
.x3a{left:426.780000px;}
.x27{left:430.020000px;}
.x66{left:452.340000px;}
.xb{left:456.660000px;}
.x5f{left:481.140000px;}
.x2a{left:496.665000px;}
.x34{left:501.705000px;}
.x67{left:509.625000px;}
.x3c{left:514.305000px;}
.x56{left:515.385000px;}
.x60{left:549.585000px;}
.x37{left:567.210000px;}
.x68{left:569.025000px;}
.x57{left:574.065000px;}
.x32{left:578.430000px;}
.x28{left:583.110000px;}
.x51{left:585.255000px;}
.x42{left:588.855000px;}
.x2d{left:591.735000px;}
.xd{left:596.055000px;}
.x45{left:603.255000px;}
.x4d{left:607.230000px;}
.x3b{left:609.030000px;}
.xe{left:610.815000px;}
.x3f{left:611.895000px;}
.x61{left:618.390000px;}
.x69{left:626.310000px;}
.x58{left:633.150000px;}
.x70{left:639.615000px;}
.x35{left:653.670000px;}
.x2b{left:660.870000px;}
.x6a{left:683.925000px;}
.x36{left:685.725000px;}
.x62{left:687.165000px;}
.x59{left:692.205000px;}
.x22{left:694.365000px;}
.x4f{left:699.045000px;}
.x3d{left:701.925000px;}
.x47{left:704.805000px;}
.x2c{left:708.765000px;}
.x41{left:714.525000px;}
.x44{left:720.645000px;}
.x50{left:723.525000px;}
.x3e{left:734.685000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.x6d{left:798.810000px;}
.xf{left:807.090000px;}
.x6b{left:808.890000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v5{vertical-align:-62.720000pt;}
.v4{vertical-align:-53.760000pt;}
.v3{vertical-align:-24.320000pt;}
.v6{vertical-align:-11.520000pt;}
.v8{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:3.840000pt;}
.va{vertical-align:11.520000pt;}
.ve{vertical-align:12.800000pt;}
.vc{vertical-align:15.466667pt;}
.vb{vertical-align:23.040000pt;}
.v2{vertical-align:24.320000pt;}
.v9{vertical-align:26.880000pt;}
.v7{vertical-align:32.000000pt;}
.ls10{letter-spacing:-1.696000pt;}
.ls1c{letter-spacing:-1.296000pt;}
.ls9{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.864000pt;}
.ls25{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.560000pt;}
.ls1a{letter-spacing:-0.450667pt;}
.ls1b{letter-spacing:-0.414933pt;}
.ls12{letter-spacing:-0.342933pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.079467pt;}
.ls18{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.017920pt;}
.ls2d{letter-spacing:0.137067pt;}
.lsf{letter-spacing:0.236800pt;}
.ls29{letter-spacing:0.288000pt;}
.ls14{letter-spacing:0.399467pt;}
.ls2e{letter-spacing:0.414720pt;}
.ls11{letter-spacing:0.414933pt;}
.ls21{letter-spacing:0.426240pt;}
.ls19{letter-spacing:0.432533pt;}
.ls1{letter-spacing:0.439040pt;}
.lsa{letter-spacing:0.450667pt;}
.ls1e{letter-spacing:0.453120pt;}
.ls2f{letter-spacing:0.509333pt;}
.ls7{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.800000pt;}
.ls2b{letter-spacing:1.048320pt;}
.ls26{letter-spacing:1.882880pt;}
.lsc{letter-spacing:1.920000pt;}
.ls24{letter-spacing:2.053120pt;}
.ls27{letter-spacing:2.328320pt;}
.ls16{letter-spacing:4.480000pt;}
.ls2{letter-spacing:5.760000pt;}
.ls13{letter-spacing:8.320000pt;}
.ls17{letter-spacing:9.600000pt;}
.ls15{letter-spacing:10.880000pt;}
.ls23{letter-spacing:11.546027pt;}
.ls22{letter-spacing:13.760000pt;}
.lse{letter-spacing:14.494720pt;}
.ls20{letter-spacing:14.881280pt;}
.ls28{letter-spacing:15.009280pt;}
.ls1f{letter-spacing:16.133120pt;}
.ls2a{letter-spacing:26.442667pt;}
.ls30{letter-spacing:41.374720pt;}
.ls2c{letter-spacing:69.542827pt;}
.ls1d{letter-spacing:893.205333pt;}
.wsa{word-spacing:-13.890667pt;}
.ws11{word-spacing:-13.872533pt;}
.wsf{word-spacing:-13.854933pt;}
.wsb{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws10{word-spacing:-13.422080pt;}
.ws13{word-spacing:-13.025067pt;}
.ws12{word-spacing:-12.989333pt;}
.wse{word-spacing:-12.800000pt;}
.ws4{word-spacing:-12.720000pt;}
.wsc{word-spacing:-12.576000pt;}
.ws5{word-spacing:-12.160000pt;}
.ws14{word-spacing:-12.144000pt;}
.wsd{word-spacing:-11.744000pt;}
.ws7{word-spacing:-11.600000pt;}
.ws8{word-spacing:-10.880000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
._38{margin-left:-7.495680pt;}
._35{margin-left:-4.712960pt;}
._11{margin-left:-3.449173pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._7{width:4.052907pt;}
._5{width:5.798400pt;}
._6{width:7.057920pt;}
._e{width:7.956480pt;}
._a{width:8.872960pt;}
._b{width:10.065920pt;}
._12{width:11.167573pt;}
._13{width:12.302507pt;}
._16{width:13.824000pt;}
._9{width:14.748160pt;}
._d{width:15.862187pt;}
._c{width:17.400320pt;}
._3a{width:18.863787pt;}
._14{width:20.372907pt;}
._10{width:21.934080pt;}
._f{width:22.848000pt;}
._2b{width:24.192000pt;}
._17{width:26.828800pt;}
._36{width:28.032427pt;}
._2d{width:29.370880pt;}
._31{width:33.187840pt;}
._1b{width:34.460160pt;}
._1c{width:45.696000pt;}
._2f{width:47.255040pt;}
._33{width:49.279680pt;}
._22{width:51.072000pt;}
._19{width:57.344000pt;}
._18{width:58.296320pt;}
._15{width:60.218880pt;}
._30{width:66.447360pt;}
._24{width:70.506667pt;}
._2e{width:74.135040pt;}
._20{width:76.331520pt;}
._28{width:77.952000pt;}
._26{width:79.260160pt;}
._1a{width:83.105280pt;}
._21{width:86.947840pt;}
._29{width:97.144320pt;}
._1e{width:100.369920pt;}
._23{width:106.140160pt;}
._39{width:108.427947pt;}
._2a{width:139.399680pt;}
._1f{width:143.915520pt;}
._1d{width:147.164160pt;}
._37{width:165.226667pt;}
._27{width:166.440960pt;}
._34{width:178.666667pt;}
._25{width:209.220693pt;}
._32{width:388.685653pt;}
._8{width:683.284480pt;}
._2c{width:1771.473493pt;}
.fs8{font-size:5.120000pt;}
.fs7{font-size:16.640000pt;}
.fs3{font-size:21.760000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fsa{font-size:48.640000pt;}
.fs4{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.240000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:2.876000pt;}
.ya9{bottom:2.880000pt;}
.yb3{bottom:3.186667pt;}
.ybb{bottom:3.188000pt;}
.ybf{bottom:3.196000pt;}
.yac{bottom:3.200000pt;}
.y12f{bottom:3.240000pt;}
.yb7{bottom:3.506667pt;}
.ye0{bottom:3.508000pt;}
.ybd{bottom:3.516000pt;}
.y5{bottom:3.520000pt;}
.y1a1{bottom:3.533333pt;}
.y1be{bottom:3.546667pt;}
.y58{bottom:4.773333pt;}
.y49{bottom:4.796000pt;}
.y2{bottom:7.040000pt;}
.y55{bottom:16.956000pt;}
.yaa{bottom:17.600000pt;}
.yb6{bottom:17.906667pt;}
.yaf{bottom:17.920000pt;}
.yb2{bottom:17.933333pt;}
.y110{bottom:18.240000pt;}
.y149{bottom:18.280000pt;}
.yd3{bottom:18.560000pt;}
.ydc{bottom:18.866667pt;}
.y4{bottom:18.880000pt;}
.yd9{bottom:18.893333pt;}
.yf6{bottom:18.920000pt;}
.y189{bottom:25.950667pt;}
.y54{bottom:30.716000pt;}
.y48{bottom:31.036000pt;}
.y150{bottom:31.346667pt;}
.y119{bottom:31.390667pt;}
.yb1{bottom:32.333333pt;}
.yb5{bottom:32.626667pt;}
.yae{bottom:32.640000pt;}
.ya7{bottom:33.000000pt;}
.yd6{bottom:33.920000pt;}
.yd8{bottom:33.933333pt;}
.ydb{bottom:34.226667pt;}
.y41{bottom:34.240000pt;}
.y10e{bottom:34.280000pt;}
.yd1{bottom:34.560000pt;}
.y12d{bottom:34.600000pt;}
.y3{bottom:39.360000pt;}
.y53{bottom:46.108000pt;}
.y40{bottom:49.600000pt;}
.y47{bottom:49.948000pt;}
.y7{bottom:51.232000pt;}
.y52{bottom:60.190667pt;}
.y46{bottom:61.470667pt;}
.y3f{bottom:64.960000pt;}
.y51{bottom:73.950667pt;}
.y1ce{bottom:78.436000pt;}
.ye3{bottom:78.756000pt;}
.y3e{bottom:80.320000pt;}
.y45{bottom:80.670667pt;}
.yc0{bottom:80.676000pt;}
.y42{bottom:80.996000pt;}
.y13a{bottom:81.952000pt;}
.y1d9{bottom:83.552000pt;}
.y50{bottom:85.470667pt;}
.y11b{bottom:85.792000pt;}
.y4f{bottom:90.910667pt;}
.y231{bottom:92.512000pt;}
.y18b{bottom:93.152000pt;}
.y139{bottom:94.436000pt;}
.ye2{bottom:94.756000pt;}
.y3d{bottom:95.360000pt;}
.y170{bottom:95.392000pt;}
.ybe{bottom:96.036000pt;}
.y153{bottom:97.952000pt;}
.y11a{bottom:98.276000pt;}
.y1a8{bottom:98.592000pt;}
.y1cd{bottom:98.916000pt;}
.y1d8{bottom:104.672000pt;}
.y4e{bottom:105.310667pt;}
.y18a{bottom:105.636000pt;}
.y230{bottom:107.872000pt;}
.y16f{bottom:107.876000pt;}
.y138{bottom:110.436000pt;}
.ye1{bottom:110.756000pt;}
.y3c{bottom:110.760000pt;}
.ybc{bottom:111.076000pt;}
.y204{bottom:112.032000pt;}
.y152{bottom:113.312000pt;}
.y1a7{bottom:113.952000pt;}
.y118{bottom:114.276000pt;}
.y4d{bottom:119.070667pt;}
.y1cc{bottom:119.716000pt;}
.y188{bottom:121.636000pt;}
.y22f{bottom:123.232000pt;}
.y1d7{bottom:123.872000pt;}
.y16e{bottom:123.876000pt;}
.y151{bottom:125.836000pt;}
.y3b{bottom:126.120000pt;}
.yba{bottom:126.476000pt;}
.ydf{bottom:126.796000pt;}
.y203{bottom:127.424000pt;}
.y1a6{bottom:129.344000pt;}
.y7e{bottom:132.224000pt;}
.y4c{bottom:132.830667pt;}
.y44{bottom:136.030667pt;}
.y22e{bottom:138.626667pt;}
.y1d6{bottom:138.946667pt;}
.y1cb{bottom:140.560000pt;}
.y3a{bottom:141.480000pt;}
.yb9{bottom:141.520000pt;}
.y14f{bottom:141.840000pt;}
.y202{bottom:142.786667pt;}
.yde{bottom:142.800000pt;}
.y7d{bottom:144.386667pt;}
.y1a5{bottom:144.706667pt;}
.y43{bottom:145.630667pt;}
.y4b{bottom:146.590667pt;}
.y22d{bottom:153.986667pt;}
.y1d5{bottom:154.306667pt;}
.y137{bottom:154.320000pt;}
.y39{bottom:156.840000pt;}
.yb8{bottom:156.880000pt;}
.y201{bottom:158.146667pt;}
.y117{bottom:158.160000pt;}
.ydd{bottom:158.800000pt;}
.y1a4{bottom:159.746667pt;}
.y4a{bottom:160.030667pt;}
.y187{bottom:160.080000pt;}
.y1ca{bottom:161.040000pt;}
.y16d{bottom:167.760000pt;}
.y22c{bottom:169.026667pt;}
.y1d4{bottom:169.666667pt;}
.y136{bottom:170.320000pt;}
.y38{bottom:172.200000pt;}
.y200{bottom:173.506667pt;}
.y116{bottom:174.160000pt;}
.y186{bottom:176.080000pt;}
.y1a3{bottom:180.880000pt;}
.y1c9{bottom:181.840000pt;}
.y16c{bottom:183.760000pt;}
.y22b{bottom:184.386667pt;}
.y1d3{bottom:184.706667pt;}
.y14e{bottom:185.680000pt;}
.y135{bottom:186.320000pt;}
.yb4{bottom:186.640000pt;}
.y37{bottom:187.560000pt;}
.y1ff{bottom:188.546667pt;}
.yda{bottom:190.160000pt;}
.y185{bottom:192.080000pt;}
.y1a2{bottom:196.880000pt;}
.y22a{bottom:199.746667pt;}
.y16b{bottom:199.760000pt;}
.y1d2{bottom:200.706667pt;}
.y14d{bottom:201.680000pt;}
.y134{bottom:202.320000pt;}
.y36{bottom:202.920000pt;}
.y1fe{bottom:204.546667pt;}
.yfe{bottom:205.506667pt;}
.y115{bottom:206.160000pt;}
.y184{bottom:208.080000pt;}
.y1d1{bottom:213.186667pt;}
.y229{bottom:215.106667pt;}
.y16a{bottom:215.760000pt;}
.y14c{bottom:217.680000pt;}
.yfd{bottom:218.000000pt;}
.y35{bottom:218.280000pt;}
.y133{bottom:218.320000pt;}
.y1fd{bottom:219.586667pt;}
.y114{bottom:222.160000pt;}
.y1c8{bottom:223.120000pt;}
.y183{bottom:224.080000pt;}
.y228{bottom:230.466667pt;}
.yb0{bottom:231.120000pt;}
.y1fc{bottom:231.746667pt;}
.y169{bottom:231.760000pt;}
.y34{bottom:233.666667pt;}
.y14b{bottom:233.680000pt;}
.yfc{bottom:234.000000pt;}
.yd7{bottom:236.880000pt;}
.y1a0{bottom:240.720000pt;}
.y1c7{bottom:243.933333pt;}
.y227{bottom:245.853333pt;}
.y33{bottom:249.026667pt;}
.y132{bottom:249.693333pt;}
.yfb{bottom:250.013333pt;}
.y13{bottom:252.893333pt;}
.y21{bottom:253.506667pt;}
.y113{bottom:253.533333pt;}
.y182{bottom:255.453333pt;}
.y19f{bottom:256.733333pt;}
.y226{bottom:261.213333pt;}
.y168{bottom:263.133333pt;}
.y32{bottom:264.066667pt;}
.y1c6{bottom:264.413333pt;}
.yfa{bottom:266.013333pt;}
.y19e{bottom:272.733333pt;}
.y20{bottom:274.946667pt;}
.yad{bottom:275.293333pt;}
.y225{bottom:276.573333pt;}
.y131{bottom:281.053333pt;}
.yf9{bottom:282.013333pt;}
.yd5{bottom:283.613333pt;}
.y112{bottom:284.893333pt;}
.y1c5{bottom:285.213333pt;}
.y181{bottom:286.813333pt;}
.y31{bottom:287.426667pt;}
.y19d{bottom:288.733333pt;}
.y224{bottom:291.933333pt;}
.y167{bottom:294.493333pt;}
.y1f{bottom:296.386667pt;}
.yf8{bottom:298.013333pt;}
.y30{bottom:301.186667pt;}
.y19c{bottom:304.733333pt;}
.y223{bottom:307.293333pt;}
.y1c4{bottom:308.893333pt;}
.y130{bottom:312.413333pt;}
.yf7{bottom:314.013333pt;}
.y2f{bottom:314.946667pt;}
.y111{bottom:316.253333pt;}
.y1e{bottom:317.826667pt;}
.y180{bottom:318.173333pt;}
.yab{bottom:319.773333pt;}
.y222{bottom:322.653333pt;}
.y166{bottom:325.853333pt;}
.y12c{bottom:328.413333pt;}
.y2e{bottom:328.706667pt;}
.y1c3{bottom:329.693333pt;}
.yd4{bottom:330.013333pt;}
.y10d{bottom:332.253333pt;}
.y17e{bottom:334.173333pt;}
.ya6{bottom:335.133333pt;}
.y19b{bottom:336.093333pt;}
.y221{bottom:337.693333pt;}
.y1d{bottom:339.266667pt;}
.y164{bottom:341.853333pt;}
.y2d{bottom:342.493333pt;}
.y14a{bottom:343.773333pt;}
.yf5{bottom:345.373333pt;}
.y1c2{bottom:351.773333pt;}
.y220{bottom:353.053333pt;}
.y2c{bottom:356.573333pt;}
.y12e{bottom:359.773333pt;}
.y1c{bottom:360.733333pt;}
.yd0{bottom:361.413333pt;}
.y10f{bottom:363.333333pt;}
.ya8{bottom:364.933333pt;}
.y17f{bottom:365.573333pt;}
.y19a{bottom:367.493333pt;}
.y21f{bottom:368.453333pt;}
.y2b{bottom:370.333333pt;}
.y165{bottom:372.933333pt;}
.yf4{bottom:376.773333pt;}
.y1c1{bottom:377.413333pt;}
.y12b{bottom:379.013333pt;}
.y1b{bottom:382.173333pt;}
.ya5{bottom:383.173333pt;}
.y21e{bottom:383.813333pt;}
.y2a{bottom:384.093333pt;}
.y17d{bottom:384.773333pt;}
.y148{bottom:391.173333pt;}
.y163{bottom:392.133333pt;}
.yd2{bottom:392.773333pt;}
.y29{bottom:397.853333pt;}
.y10c{bottom:398.213333pt;}
.y199{bottom:398.533333pt;}
.ya4{bottom:398.853333pt;}
.y21d{bottom:399.173333pt;}
.y17c{bottom:400.453333pt;}
.y12a{bottom:402.693333pt;}
.y1a{bottom:403.933333pt;}
.yf3{bottom:408.133333pt;}
.y147{bottom:410.053333pt;}
.y28{bottom:411.613333pt;}
.ycf{bottom:411.973333pt;}
.y10b{bottom:413.573333pt;}
.ya3{bottom:414.213333pt;}
.y197{bottom:414.533333pt;}
.y162{bottom:415.813333pt;}
.y129{bottom:418.053333pt;}
.yf1{bottom:424.133333pt;}
.y19{bottom:425.373333pt;}
.y146{bottom:425.733333pt;}
.y10a{bottom:428.933333pt;}
.ya2{bottom:429.573333pt;}
.y21c{bottom:429.893333pt;}
.y161{bottom:431.173333pt;}
.y128{bottom:433.093333pt;}
.yce{bottom:435.653333pt;}
.y1c0{bottom:437.573333pt;}
.y7c{bottom:438.213333pt;}
.y27{bottom:439.133333pt;}
.y145{bottom:441.093333pt;}
.y109{bottom:444.293333pt;}
.ya1{bottom:444.933333pt;}
.y21b{bottom:445.253333pt;}
.y198{bottom:445.893333pt;}
.y17b{bottom:446.213333pt;}
.y160{bottom:446.533333pt;}
.y18{bottom:446.813333pt;}
.y127{bottom:448.453333pt;}
.ycd{bottom:451.013333pt;}
.y26{bottom:452.893333pt;}
.y7b{bottom:453.573333pt;}
.yf2{bottom:455.493333pt;}
.y144{bottom:456.453333pt;}
.y1bf{bottom:457.413333pt;}
.y108{bottom:459.653333pt;}
.ya0{bottom:460.293333pt;}
.y21a{bottom:460.613333pt;}
.y17a{bottom:461.573333pt;}
.y15f{bottom:461.893333pt;}
.y126{bottom:463.813333pt;}
.y196{bottom:465.413333pt;}
.ycc{bottom:466.373333pt;}
.y25{bottom:466.693333pt;}
.y17{bottom:468.293333pt;}
.y7a{bottom:468.933333pt;}
.y1fb{bottom:469.893333pt;}
.y143{bottom:471.813333pt;}
.yf0{bottom:474.693333pt;}
.y107{bottom:475.013333pt;}
.y9f{bottom:475.653333pt;}
.y219{bottom:475.973333pt;}
.y179{bottom:476.933333pt;}
.y15e{bottom:477.253333pt;}
.y125{bottom:479.200000pt;}
.y24{bottom:480.773333pt;}
.y195{bottom:481.120000pt;}
.ycb{bottom:481.760000pt;}
.y79{bottom:484.320000pt;}
.y1fa{bottom:485.280000pt;}
.y142{bottom:487.200000pt;}
.y16{bottom:489.733333pt;}
.y106{bottom:490.400000pt;}
.y9e{bottom:491.040000pt;}
.y218{bottom:491.360000pt;}
.y178{bottom:492.320000pt;}
.y15d{bottom:492.640000pt;}
.y23{bottom:494.533333pt;}
.y124{bottom:494.560000pt;}
.y194{bottom:496.480000pt;}
.yca{bottom:497.120000pt;}
.yef{bottom:498.400000pt;}
.y78{bottom:499.680000pt;}
.y1f9{bottom:500.640000pt;}
.y141{bottom:502.560000pt;}
.y105{bottom:505.760000pt;}
.y9d{bottom:506.080000pt;}
.y217{bottom:506.720000pt;}
.y177{bottom:507.680000pt;}
.y15c{bottom:508.000000pt;}
.y123{bottom:509.920000pt;}
.y15{bottom:511.173333pt;}
.y193{bottom:511.840000pt;}
.yc9{bottom:512.480000pt;}
.yee{bottom:513.760000pt;}
.y77{bottom:515.040000pt;}
.y1f8{bottom:516.000000pt;}
.y1bd{bottom:516.960000pt;}
.y140{bottom:517.920000pt;}
.y104{bottom:521.120000pt;}
.y22{bottom:521.733333pt;}
.y9c{bottom:521.760000pt;}
.y176{bottom:523.040000pt;}
.y15b{bottom:523.360000pt;}
.y237{bottom:524.000000pt;}
.y122{bottom:525.280000pt;}
.y192{bottom:527.200000pt;}
.yc8{bottom:527.520000pt;}
.yed{bottom:528.800000pt;}
.y76{bottom:530.400000pt;}
.y1f7{bottom:531.360000pt;}
.y14{bottom:532.613333pt;}
.y13f{bottom:533.280000pt;}
.y103{bottom:536.160000pt;}
.y1bc{bottom:536.800000pt;}
.y216{bottom:537.120000pt;}
.y9b{bottom:537.440000pt;}
.y175{bottom:538.400000pt;}
.y15a{bottom:538.720000pt;}
.y121{bottom:540.640000pt;}
.y191{bottom:542.560000pt;}
.yc7{bottom:542.880000pt;}
.yec{bottom:544.160000pt;}
.y75{bottom:545.760000pt;}
.y1f6{bottom:546.400000pt;}
.y13e{bottom:548.320000pt;}
.y102{bottom:551.520000pt;}
.y215{bottom:552.480000pt;}
.y9a{bottom:552.800000pt;}
.y174{bottom:553.440000pt;}
.y159{bottom:554.080000pt;}
.y120{bottom:556.000000pt;}
.y1bb{bottom:556.640000pt;}
.y190{bottom:557.920000pt;}
.yc6{bottom:558.240000pt;}
.yeb{bottom:559.520000pt;}
.y74{bottom:560.800000pt;}
.y101{bottom:566.560000pt;}
.y214{bottom:567.840000pt;}
.y99{bottom:568.160000pt;}
.y158{bottom:569.120000pt;}
.y236{bottom:569.440000pt;}
.y1f5{bottom:570.080000pt;}
.y11f{bottom:571.040000pt;}
.y13d{bottom:572.000000pt;}
.y18f{bottom:573.280000pt;}
.yc5{bottom:573.600000pt;}
.yea{bottom:574.880000pt;}
.y73{bottom:576.160000pt;}
.y1ba{bottom:576.480000pt;}
.y173{bottom:577.120000pt;}
.y100{bottom:579.040000pt;}
.y213{bottom:583.200000pt;}
.y98{bottom:583.520000pt;}
.y13c{bottom:584.160000pt;}
.y157{bottom:584.480000pt;}
.y235{bottom:584.800000pt;}
.y1f4{bottom:585.760000pt;}
.y18e{bottom:588.320000pt;}
.yc4{bottom:588.640000pt;}
.y172{bottom:589.600000pt;}
.ye9{bottom:590.240000pt;}
.y72{bottom:591.520000pt;}
.y11e{bottom:594.746667pt;}
.y212{bottom:598.586667pt;}
.y97{bottom:598.906667pt;}
.y234{bottom:600.186667pt;}
.y1f3{bottom:601.146667pt;}
.yc3{bottom:604.026667pt;}
.ye8{bottom:605.626667pt;}
.y71{bottom:606.906667pt;}
.y11d{bottom:607.226667pt;}
.y156{bottom:608.186667pt;}
.y18d{bottom:612.026667pt;}
.y211{bottom:613.946667pt;}
.y96{bottom:614.266667pt;}
.y1b9{bottom:614.906667pt;}
.y233{bottom:615.226667pt;}
.yc2{bottom:616.186667pt;}
.y1f2{bottom:616.826667pt;}
.y155{bottom:620.346667pt;}
.ye7{bottom:620.666667pt;}
.y70{bottom:621.946667pt;}
.y18c{bottom:624.186667pt;}
.y1f1{bottom:629.306667pt;}
.y95{bottom:629.626667pt;}
.y1b8{bottom:630.266667pt;}
.y232{bottom:630.586667pt;}
.y1ef{bottom:632.506667pt;}
.y1f0{bottom:637.626667pt;}
.ye6{bottom:644.026667pt;}
.y94{bottom:644.666667pt;}
.y1b7{bottom:645.626667pt;}
.y6f{bottom:645.946667pt;}
.y1ee{bottom:648.506667pt;}
.ye5{bottom:656.186667pt;}
.y93{bottom:660.026667pt;}
.y1b6{bottom:660.986667pt;}
.y6e{bottom:661.306667pt;}
.y1ed{bottom:663.866667pt;}
.y92{bottom:675.386667pt;}
.y1b5{bottom:676.346667pt;}
.y6d{bottom:676.666667pt;}
.y1ec{bottom:678.906667pt;}
.y210{bottom:690.426667pt;}
.y91{bottom:690.746667pt;}
.y1b4{bottom:691.706667pt;}
.y6c{bottom:692.026667pt;}
.y1eb{bottom:694.266667pt;}
.y1d0{bottom:696.506667pt;}
.y20f{bottom:705.786667pt;}
.y90{bottom:706.106667pt;}
.y1b3{bottom:707.066667pt;}
.y6b{bottom:707.386667pt;}
.y1ea{bottom:709.626667pt;}
.y1cf{bottom:716.706667pt;}
.y20e{bottom:721.186667pt;}
.y8f{bottom:721.506667pt;}
.y1b2{bottom:722.466667pt;}
.y6a{bottom:722.786667pt;}
.y1e9{bottom:725.026667pt;}
.y20d{bottom:736.546667pt;}
.y8e{bottom:736.866667pt;}
.y1b1{bottom:737.826667pt;}
.y69{bottom:738.146667pt;}
.y1e8{bottom:740.066667pt;}
.y8d{bottom:751.906667pt;}
.y1b0{bottom:752.866667pt;}
.y68{bottom:753.506667pt;}
.y1e7{bottom:764.066667pt;}
.y20c{bottom:767.266667pt;}
.y8c{bottom:767.906667pt;}
.y1af{bottom:768.226667pt;}
.y67{bottom:768.866667pt;}
.y1e6{bottom:779.746667pt;}
.y171{bottom:781.666667pt;}
.y20b{bottom:782.626667pt;}
.y8b{bottom:783.266667pt;}
.y1ae{bottom:783.586667pt;}
.y66{bottom:784.226667pt;}
.y13b{bottom:793.186667pt;}
.y1e5{bottom:795.426667pt;}
.y12{bottom:796.386667pt;}
.y11c{bottom:797.026667pt;}
.y20a{bottom:797.986667pt;}
.y11{bottom:798.626667pt;}
.yff{bottom:798.946667pt;}
.y65{bottom:799.266667pt;}
.y10{bottom:805.666667pt;}
.yc1{bottom:809.186667pt;}
.y154{bottom:810.146667pt;}
.y1e4{bottom:811.106667pt;}
.y209{bottom:813.026667pt;}
.y8a{bottom:813.986667pt;}
.y1ad{bottom:814.306667pt;}
.y64{bottom:814.626667pt;}
.ye4{bottom:817.186667pt;}
.yf{bottom:821.026667pt;}
.y1e3{bottom:825.506667pt;}
.y89{bottom:829.373333pt;}
.y1ac{bottom:829.693333pt;}
.y63{bottom:830.013333pt;}
.y1e2{bottom:832.253333pt;}
.y208{bottom:836.733333pt;}
.ye{bottom:842.493333pt;}
.y88{bottom:844.733333pt;}
.y1ab{bottom:845.053333pt;}
.y62{bottom:845.373333pt;}
.y1e1{bottom:851.453333pt;}
.yd{bottom:851.773333pt;}
.y207{bottom:852.093333pt;}
.y87{bottom:860.093333pt;}
.y1aa{bottom:860.413333pt;}
.y61{bottom:860.733333pt;}
.y1e0{bottom:866.813333pt;}
.y206{bottom:867.133333pt;}
.yc{bottom:873.213333pt;}
.y86{bottom:875.133333pt;}
.y1a9{bottom:875.773333pt;}
.y60{bottom:876.093333pt;}
.y1df{bottom:882.173333pt;}
.y205{bottom:882.493333pt;}
.y85{bottom:891.133333pt;}
.y5f{bottom:891.453333pt;}
.y1de{bottom:897.533333pt;}
.yb{bottom:899.133333pt;}
.y84{bottom:906.493333pt;}
.y5e{bottom:906.813333pt;}
.y1dd{bottom:912.573333pt;}
.ya{bottom:920.893333pt;}
.y83{bottom:921.533333pt;}
.y5d{bottom:922.173333pt;}
.y1dc{bottom:936.573333pt;}
.y82{bottom:936.893333pt;}
.y5c{bottom:937.533333pt;}
.y9{bottom:942.653333pt;}
.y1db{bottom:951.973333pt;}
.y81{bottom:952.293333pt;}
.y5b{bottom:952.933333pt;}
.y8{bottom:967.333333pt;}
.y80{bottom:967.653333pt;}
.y5a{bottom:967.973333pt;}
.y57{bottom:970.240000pt;}
.y7f{bottom:982.693333pt;}
.y1da{bottom:983.013333pt;}
.y59{bottom:983.333333pt;}
.y6{bottom:997.093333pt;}
.y1{bottom:1001.893333pt;}
.hc{height:3.702500pt;}
.h14{height:5.022500pt;}
.h19{height:14.386667pt;}
.h20{height:14.388000pt;}
.h22{height:14.396000pt;}
.h1f{height:14.706667pt;}
.h21{height:14.748000pt;}
.h30{height:15.026667pt;}
.h24{height:15.346667pt;}
.h2a{height:15.348000pt;}
.h2c{height:15.356000pt;}
.h2d{height:15.360000pt;}
.h35{height:15.386667pt;}
.h2b{height:15.388000pt;}
.hb{height:16.331250pt;}
.h3f{height:18.866667pt;}
.h3b{height:18.880000pt;}
.h39{height:18.912000pt;}
.h3e{height:19.186667pt;}
.h3c{height:19.200000pt;}
.h3d{height:19.226667pt;}
.h42{height:19.826667pt;}
.h47{height:19.836000pt;}
.h44{height:19.840000pt;}
.h43{height:20.146667pt;}
.h46{height:20.156000pt;}
.h45{height:20.188000pt;}
.h41{height:21.426667pt;}
.h6{height:21.643125pt;}
.h40{height:21.786667pt;}
.h15{height:24.640000pt;}
.h12{height:26.381250pt;}
.h1e{height:29.106667pt;}
.h1a{height:29.146667pt;}
.h31{height:30.386667pt;}
.h2f{height:30.426667pt;}
.h25{height:30.706667pt;}
.h32{height:30.720000pt;}
.h26{height:30.746667pt;}
.h4c{height:31.283750pt;}
.h9{height:34.830000pt;}
.hf{height:36.431250pt;}
.he{height:37.410000pt;}
.h38{height:37.537500pt;}
.h37{height:37.788000pt;}
.h36{height:43.186667pt;}
.h33{height:43.228000pt;}
.h1d{height:43.520000pt;}
.h1c{height:43.826667pt;}
.h18{height:44.186667pt;}
.h27{height:45.746667pt;}
.h28{height:45.760000pt;}
.h29{height:46.066667pt;}
.h2e{height:46.426667pt;}
.h23{height:46.706667pt;}
.h34{height:46.746667pt;}
.h10{height:47.713750pt;}
.h13{height:49.020000pt;}
.h4b{height:49.147500pt;}
.h1b{height:50.250000pt;}
.h7{height:51.600000pt;}
.h3a{height:52.736250pt;}
.h5{height:52.762500pt;}
.ha{height:54.180000pt;}
.h4e{height:55.256809pt;}
.h17{height:55.965000pt;}
.h16{height:56.405000pt;}
.h8{height:56.513750pt;}
.h3{height:58.563750pt;}
.h48{height:63.283750pt;}
.h4d{height:65.562500pt;}
.h2{height:72.346667pt;}
.h49{height:79.642500pt;}
.h4a{height:79.749167pt;}
.h4{height:103.680000pt;}
.h11{height:171.240000pt;}
.hd{height:540.933333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w47{width:50.546667pt;}
.w4c{width:50.578667pt;}
.w48{width:50.586667pt;}
.w4a{width:50.592000pt;}
.w4d{width:50.880000pt;}
.w49{width:50.906667pt;}
.w3e{width:51.506667pt;}
.w3c{width:51.546667pt;}
.w39{width:51.826667pt;}
.w3b{width:51.840000pt;}
.w3f{width:51.858667pt;}
.w35{width:51.866667pt;}
.w3d{width:51.872000pt;}
.w36{width:52.146667pt;}
.w34{width:52.160000pt;}
.w3a{width:52.178667pt;}
.w37{width:52.186667pt;}
.w38{width:52.192000pt;}
.w4b{width:52.466667pt;}
.wd{width:58.592000pt;}
.w40{width:60.140000pt;}
.w43{width:60.506667pt;}
.w44{width:60.512000pt;}
.w41{width:60.800000pt;}
.w45{width:60.818667pt;}
.w42{width:60.826667pt;}
.wc{width:61.146667pt;}
.w46{width:62.080000pt;}
.w18{width:62.112000pt;}
.w1a{width:66.226667pt;}
.w19{width:67.538667pt;}
.w16{width:67.546667pt;}
.wf{width:68.466667pt;}
.w1b{width:68.480000pt;}
.w33{width:68.780000pt;}
.w10{width:71.040000pt;}
.w2d{width:72.026667pt;}
.w22{width:72.986667pt;}
.we{width:76.178667pt;}
.w2e{width:76.192000pt;}
.w17{width:76.826667pt;}
.w23{width:77.152000pt;}
.w30{width:80.960000pt;}
.w25{width:81.920000pt;}
.w2f{width:82.578667pt;}
.w24{width:83.538667pt;}
.w31{width:84.186667pt;}
.w26{width:84.826667pt;}
.wb{width:88.346667pt;}
.w12{width:91.840000pt;}
.w2{width:92.180000pt;}
.w7{width:94.720000pt;}
.w2c{width:104.346667pt;}
.w21{width:105.626667pt;}
.w28{width:112.360000pt;}
.w1d{width:113.640000pt;}
.w4{width:117.780000pt;}
.w14{width:130.624000pt;}
.w15{width:135.360000pt;}
.w9{width:135.426667pt;}
.wa{width:140.160000pt;}
.w6{width:144.960000pt;}
.w13{width:145.346667pt;}
.w8{width:150.146667pt;}
.w2a{width:159.426667pt;}
.w1c{width:160.040000pt;}
.w1f{width:161.346667pt;}
.w2b{width:165.800000pt;}
.w20{width:167.400000pt;}
.w29{width:177.346667pt;}
.w1e{width:179.266667pt;}
.w11{width:184.040000pt;}
.w32{width:217.360000pt;}
.w27{width:219.920000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x17{left:7.348000pt;}
.x4{left:11.826667pt;}
.x1b{left:16.308000pt;}
.x5{left:17.266667pt;}
.x1d{left:25.908000pt;}
.x16{left:28.148000pt;}
.x19{left:31.373333pt;}
.x11{left:39.028000pt;}
.x1c{left:42.260000pt;}
.x6{left:43.213333pt;}
.x12{left:45.140000pt;}
.x15{left:48.020000pt;}
.x10{left:48.980000pt;}
.x1{left:69.804000pt;}
.x14{left:74.582667pt;}
.x7{left:76.832000pt;}
.xc{left:80.032000pt;}
.x2{left:84.822667pt;}
.x4b{left:88.684000pt;}
.x1e{left:91.542667pt;}
.x1a{left:95.062667pt;}
.x20{left:100.832000pt;}
.x6e{left:105.312000pt;}
.x13{left:110.742667pt;}
.x6f{left:121.344000pt;}
.x5b{left:122.964000pt;}
.x21{left:124.864000pt;}
.xa{left:127.424000pt;}
.x25{left:135.760000pt;}
.x30{left:144.400000pt;}
.x3{left:162.000000pt;}
.x5c{left:183.440000pt;}
.x18{left:194.640000pt;}
.x53{left:195.920000pt;}
.x64{left:198.173333pt;}
.x39{left:199.453333pt;}
.x4c{left:201.693333pt;}
.x52{left:228.253333pt;}
.x26{left:231.453333pt;}
.x31{left:236.893333pt;}
.x43{left:240.093333pt;}
.x5d{left:244.573333pt;}
.x54{left:248.413333pt;}
.x40{left:250.013333pt;}
.x48{left:258.013333pt;}
.x38{left:259.933333pt;}
.x46{left:276.293333pt;}
.x6c{left:278.853333pt;}
.x4a{left:282.693333pt;}
.x49{left:285.253333pt;}
.x63{left:288.133333pt;}
.x71{left:292.293333pt;}
.x2e{left:294.853333pt;}
.x24{left:297.413333pt;}
.x65{left:299.973333pt;}
.x2f{left:300.933333pt;}
.x33{left:305.413333pt;}
.x4e{left:307.013333pt;}
.x29{left:320.453333pt;}
.x5a{left:350.213333pt;}
.x55{left:353.093333pt;}
.x23{left:362.400000pt;}
.x5e{left:366.560000pt;}
.x3a{left:379.360000pt;}
.x27{left:382.240000pt;}
.x66{left:402.080000pt;}
.xb{left:405.920000pt;}
.x5f{left:427.680000pt;}
.x2a{left:441.480000pt;}
.x34{left:445.960000pt;}
.x67{left:453.000000pt;}
.x3c{left:457.160000pt;}
.x56{left:458.120000pt;}
.x60{left:488.520000pt;}
.x37{left:504.186667pt;}
.x68{left:505.800000pt;}
.x57{left:510.280000pt;}
.x32{left:514.160000pt;}
.x28{left:518.320000pt;}
.x51{left:520.226667pt;}
.x42{left:523.426667pt;}
.x2d{left:525.986667pt;}
.xd{left:529.826667pt;}
.x45{left:536.226667pt;}
.x4d{left:539.760000pt;}
.x3b{left:541.360000pt;}
.xe{left:542.946667pt;}
.x3f{left:543.906667pt;}
.x61{left:549.680000pt;}
.x69{left:556.720000pt;}
.x58{left:562.800000pt;}
.x70{left:568.546667pt;}
.x35{left:581.040000pt;}
.x2b{left:587.440000pt;}
.x6a{left:607.933333pt;}
.x36{left:609.533333pt;}
.x62{left:610.813333pt;}
.x59{left:615.293333pt;}
.x22{left:617.213333pt;}
.x4f{left:621.373333pt;}
.x3d{left:623.933333pt;}
.x47{left:626.493333pt;}
.x2c{left:630.013333pt;}
.x41{left:635.133333pt;}
.x44{left:640.573333pt;}
.x50{left:643.133333pt;}
.x3e{left:653.053333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.x6d{left:710.053333pt;}
.xf{left:717.413333pt;}
.x6b{left:719.013333pt;}
}




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