
    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_01fe8b05793bc4191f3486a4.woff2')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_4b2c192c794b9b7f76ee1d94.woff2')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_809c4c7eeb2c07e24be3b5e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4907303c552819c2bebca463.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a0b648f17067bfd81c09db48.woff2')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_f4185b15dbe36e288253d4df.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b66099a5e25a4da7ff04f573.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_da3a5631b8a18d9dcab803d6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2cb286f1977970a720a6bd56.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.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);}
.v6{vertical-align:-61.920000px;}
.v4{vertical-align:-57.720010px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls1a{letter-spacing:-1.800000px;}
.ls2e{letter-spacing:-1.662000px;}
.ls2a{letter-spacing:-0.990000px;}
.ls1f{letter-spacing:-0.584400px;}
.lsc{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls2f{letter-spacing:-0.269400px;}
.ls2b{letter-spacing:-0.243600px;}
.ls11{letter-spacing:-0.223800px;}
.ls13{letter-spacing:-0.028800px;}
.lse{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls23{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.108000px;}
.ls20{letter-spacing:0.135600px;}
.ls2c{letter-spacing:0.156000px;}
.ls3{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.181200px;}
.ls28{letter-spacing:0.206400px;}
.ls22{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls30{letter-spacing:0.269400px;}
.ls21{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.315360px;}
.ls1e{letter-spacing:0.324000px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.493800px;}
.ls19{letter-spacing:0.666000px;}
.ls9{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.811200px;}
.ls26{letter-spacing:0.900000px;}
.ls29{letter-spacing:1.080000px;}
.ls25{letter-spacing:1.620000px;}
.ls24{letter-spacing:2.340000px;}
.ls6{letter-spacing:3.060000px;}
.ls27{letter-spacing:3.240000px;}
.ls1c{letter-spacing:4.500000px;}
.ls15{letter-spacing:5.400000px;}
.ls2d{letter-spacing:9.509760px;}
.ls1d{letter-spacing:10.260000px;}
.ls16{letter-spacing:12.420000px;}
.ls31{letter-spacing:45.540000px;}
.ls4{letter-spacing:62.640000px;}
.ls5{letter-spacing:63.360000px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.wse{word-spacing:-16.865400px;}
.ws17{word-spacing:-15.606000px;}
.ws14{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.238800px;}
.ws16{word-spacing:-15.199800px;}
.ws1b{word-spacing:-15.146400px;}
.ws11{word-spacing:-15.046800px;}
.ws19{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws0{word-spacing:-13.860000px;}
.ws1a{word-spacing:-13.824000px;}
.wsc{word-spacing:-13.608000px;}
.wsd{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.140000px;}
.ws4{word-spacing:-12.420000px;}
.ws20{word-spacing:-12.329400px;}
.ws15{word-spacing:-12.241200px;}
.ws8{word-spacing:-12.060000px;}
.ws13{word-spacing:-11.836200px;}
.ws1f{word-spacing:-11.790600px;}
.ws7{word-spacing:-11.700000px;}
.ws3{word-spacing:-11.160000px;}
.ws1c{word-spacing:-11.070000px;}
.ws2{word-spacing:-10.933800px;}
.ws1{word-spacing:-10.440000px;}
.ws1e{word-spacing:-10.398000px;}
.wsa{word-spacing:-9.720000px;}
.wsb{word-spacing:-7.560000px;}
.ws1d{word-spacing:-7.316400px;}
.ws12{word-spacing:0.000000px;}
.ws9{word-spacing:52.968960px;}
._17{margin-left:-5.677200px;}
._18{margin-left:-4.601520px;}
._19{margin-left:-3.406320px;}
._1{margin-left:-1.480560px;}
._0{width:1.085760px;}
._6{width:2.820240px;}
._9{width:3.889680px;}
._b{width:5.400000px;}
._a{width:6.642000px;}
._4{width:7.695360px;}
._7{width:8.835120px;}
._8{width:9.936000px;}
._c{width:11.502000px;}
._13{width:13.371840px;}
._25{width:14.990640px;}
._16{width:16.039920px;}
._15{width:17.077920px;}
._14{width:18.322800px;}
._e{width:20.088000px;}
._d{width:21.438000px;}
._24{width:22.706160px;}
._2d{width:30.246480px;}
._2c{width:31.389360px;}
._3{width:32.464800px;}
._1d{width:34.009200px;}
._1e{width:35.830800px;}
._2f{width:36.839760px;}
._10{width:37.996560px;}
._f{width:39.144000px;}
._28{width:42.837120px;}
._2a{width:44.592240px;}
._29{width:46.020960px;}
._30{width:47.874000px;}
._2b{width:59.769360px;}
._5{width:61.538880px;}
._2e{width:70.044480px;}
._27{width:81.208080px;}
._26{width:82.644000px;}
._1f{width:95.611680px;}
._20{width:96.962400px;}
._21{width:106.161360px;}
._1b{width:176.268960px;}
._1c{width:177.701280px;}
._11{width:190.060557px;}
._22{width:198.902400px;}
._23{width:200.027520px;}
._12{width:1834.296000px;}
._1a{width:2005.836000px;}
._2{width:2055.987840px;}
.fcc{color:rgb(83,100,121);}
.fcb{color:rgb(5,99,193);}
.fc8{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc6{color:rgb(3,50,255);}
.fc3{color:rgb(255,0,0);}
.fca{color:rgb(85,85,85);}
.fc9{color:rgb(34,34,34);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fsb{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fsf{font-size:54.144000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fse{font-size:84.240000px;}
.fsd{font-size:95.760000px;}
.fs8{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y17e{bottom:3.240000px;}
.y181{bottom:3.420000px;}
.ye2{bottom:3.585000px;}
.yc6{bottom:3.600000px;}
.ye6{bottom:3.765000px;}
.yca{bottom:3.780000px;}
.yf6{bottom:3.810000px;}
.y119{bottom:3.960000px;}
.y114{bottom:4.140000px;}
.y45{bottom:4.320000px;}
.y11e{bottom:4.860000px;}
.ydd{bottom:5.220000px;}
.y110{bottom:5.400000px;}
.y1a9{bottom:5.565000px;}
.y30{bottom:5.580000px;}
.y120{bottom:5.940000px;}
.yed{bottom:6.105000px;}
.yf8{bottom:6.120000px;}
.ycb{bottom:6.300000px;}
.yd3{bottom:6.480000px;}
.ye7{bottom:6.645000px;}
.yc8{bottom:6.660000px;}
.yeb{bottom:7.005000px;}
.yc4{bottom:7.020000px;}
.yf1{bottom:7.185000px;}
.ydc{bottom:7.200000px;}
.y136{bottom:7.365000px;}
.y142{bottom:7.380000px;}
.yd8{bottom:7.560000px;}
.yc0{bottom:7.740000px;}
.ye4{bottom:7.905000px;}
.y140{bottom:8.085000px;}
.y13a{bottom:8.265000px;}
.ycf{bottom:8.280000px;}
.y13c{bottom:8.445000px;}
.y163{bottom:8.805000px;}
.y168{bottom:8.820000px;}
.y166{bottom:8.850000px;}
.y138{bottom:9.345000px;}
.y144{bottom:9.360000px;}
.y17a{bottom:9.540000px;}
.y16a{bottom:9.900000px;}
.y184{bottom:11.340000px;}
.yff{bottom:12.780000px;}
.y12c{bottom:13.140000px;}
.y10b{bottom:14.625000px;}
.y133{bottom:14.925000px;}
.y1b0{bottom:15.825000px;}
.y1a6{bottom:15.840000px;}
.ycd{bottom:17.280000px;}
.yda{bottom:17.460000px;}
.y44{bottom:18.180000px;}
.yd1{bottom:18.360000px;}
.y83{bottom:18.900000px;}
.y2f{bottom:19.440000px;}
.y3{bottom:19.800000px;}
.y49{bottom:19.980000px;}
.y11c{bottom:25.020000px;}
.y1ac{bottom:26.265000px;}
.yef{bottom:27.345000px;}
.ye9{bottom:27.525000px;}
.y191{bottom:27.720000px;}
.yd5{bottom:28.980000px;}
.y2e{bottom:29.340000px;}
.y12b{bottom:30.420000px;}
.y2{bottom:33.840000px;}
.y116{bottom:35.460000px;}
.y17c{bottom:36.000000px;}
.yf4{bottom:36.360000px;}
.y48{bottom:39.960000px;}
.y11b{bottom:42.300000px;}
.y10e{bottom:45.540000px;}
.y1{bottom:46.620000px;}
.y19b{bottom:46.980000px;}
.y2d{bottom:47.340000px;}
.yc2{bottom:48.630000px;}
.ydf{bottom:50.025000px;}
.y123{bottom:53.280000px;}
.y2c{bottom:65.160000px;}
.y102{bottom:66.780000px;}
.y122{bottom:70.560000px;}
.y146{bottom:74.340000px;}
.yfa{bottom:76.680000px;}
.yba{bottom:80.100000px;}
.y16b{bottom:82.080000px;}
.y2b{bottom:82.980000px;}
.y1ba{bottom:84.240000px;}
.y145{bottom:86.040000px;}
.y1ff{bottom:86.400000px;}
.y80{bottom:89.100000px;}
.y42{bottom:90.000000px;}
.y169{bottom:93.780000px;}
.y2a6{bottom:93.960000px;}
.yf9{bottom:95.760000px;}
.y1b5{bottom:95.940000px;}
.y278{bottom:98.100000px;}
.yb9{bottom:99.900000px;}
.y1fe{bottom:100.260000px;}
.y2a{bottom:100.800000px;}
.y23b{bottom:101.160000px;}
.yf3{bottom:107.460000px;}
.y7f{bottom:108.900000px;}
.y2a5{bottom:109.440000px;}
.y41{bottom:109.800000px;}
.y277{bottom:111.960000px;}
.y143{bottom:112.320000px;}
.y1fd{bottom:114.120000px;}
.y23a{bottom:114.840000px;}
.y1b9{bottom:116.640000px;}
.y29{bottom:118.620000px;}
.yb8{bottom:119.700000px;}
.y167{bottom:120.060000px;}
.y2a4{bottom:124.920000px;}
.yf7{bottom:125.460000px;}
.y1fc{bottom:127.800000px;}
.y7e{bottom:128.700000px;}
.y40{bottom:129.600000px;}
.y16d{bottom:130.065000px;}
.y276{bottom:131.760000px;}
.y28{bottom:136.440000px;}
.y1b8{bottom:137.340000px;}
.y141{bottom:138.600000px;}
.yb7{bottom:139.500000px;}
.y2a3{bottom:140.400000px;}
.y165{bottom:144.360000px;}
.y275{bottom:145.440000px;}
.y1fb{bottom:147.600000px;}
.y7d{bottom:148.140000px;}
.y1c2{bottom:148.500000px;}
.y3f{bottom:149.616000px;}
.y16e{bottom:153.645000px;}
.y27{bottom:154.440000px;}
.y2a2{bottom:156.090000px;}
.y1b7{bottom:158.085000px;}
.yb6{bottom:159.330000px;}
.y1fa{bottom:161.490000px;}
.y13f{bottom:161.505000px;}
.y239{bottom:162.390000px;}
.yf5{bottom:166.185000px;}
.y7c{bottom:167.970000px;}
.y1c1{bottom:168.330000px;}
.y164{bottom:168.885000px;}
.y3e{bottom:169.410000px;}
.y2a1{bottom:171.570000px;}
.y26{bottom:172.260000px;}
.y178{bottom:173.805000px;}
.y238{bottom:176.070000px;}
.y16f{bottom:177.195000px;}
.y1b6{bottom:178.785000px;}
.y274{bottom:179.130000px;}
.yb5{bottom:179.310000px;}
.y1f9{bottom:181.290000px;}
.y13e{bottom:186.525000px;}
.y2a0{bottom:187.050000px;}
.y7b{bottom:188.310000px;}
.y3d{bottom:189.210000px;}
.y237{bottom:189.930000px;}
.y25{bottom:190.080000px;}
.yee{bottom:190.845000px;}
.y273{bottom:192.990000px;}
.y162{bottom:193.185000px;}
.y1f8{bottom:195.150000px;}
.yb4{bottom:199.110000px;}
.y1b2{bottom:199.485000px;}
.y170{bottom:200.775000px;}
.y29f{bottom:202.530000px;}
.y272{bottom:206.670000px;}
.y24{bottom:207.900000px;}
.y7a{bottom:208.110000px;}
.y3c{bottom:209.010000px;}
.y236{bottom:209.730000px;}
.y13d{bottom:210.825000px;}
.y1f7{bottom:212.070000px;}
.yf2{bottom:213.525000px;}
.y29e{bottom:218.190000px;}
.y161{bottom:218.385000px;}
.yb3{bottom:218.550000px;}
.y1ce{bottom:218.910000px;}
.y32{bottom:219.420000px;}
.y1b4{bottom:220.185000px;}
.y235{bottom:223.590000px;}
.y171{bottom:224.355000px;}
.y23{bottom:225.720000px;}
.y271{bottom:226.470000px;}
.y79{bottom:227.910000px;}
.y3b{bottom:228.810000px;}
.y1f6{bottom:231.510000px;}
.yf0{bottom:231.525000px;}
.y13b{bottom:236.925000px;}
.y234{bottom:237.270000px;}
.yb2{bottom:238.350000px;}
.y1cd{bottom:238.710000px;}
.y270{bottom:240.330000px;}
.y1b3{bottom:240.885000px;}
.y22{bottom:243.720000px;}
.y78{bottom:247.710000px;}
.y172{bottom:247.935000px;}
.y3a{bottom:248.790000px;}
.y29d{bottom:249.150000px;}
.y160{bottom:249.510000px;}
.y233{bottom:251.130000px;}
.y1f5{bottom:253.830000px;}
.ye8{bottom:256.185000px;}
.yb1{bottom:258.510000px;}
.y26f{bottom:260.130000px;}
.y139{bottom:261.225000px;}
.y21{bottom:261.570000px;}
.y1af{bottom:261.585000px;}
.y29c{bottom:264.630000px;}
.y232{bottom:264.990000px;}
.y77{bottom:267.510000px;}
.y39{bottom:268.590000px;}
.y173{bottom:271.515000px;}
.y15f{bottom:271.650000px;}
.y26e{bottom:273.990000px;}
.yb0{bottom:278.490000px;}
.yec{bottom:279.045000px;}
.y20{bottom:279.390000px;}
.y1f4{bottom:279.570000px;}
.y1b1{bottom:282.285000px;}
.y231{bottom:284.790000px;}
.y137{bottom:285.525000px;}
.y29b{bottom:286.230000px;}
.y76{bottom:287.490000px;}
.y26d{bottom:287.670000px;}
.y38{bottom:288.390000px;}
.y174{bottom:295.050000px;}
.yea{bottom:297.045000px;}
.y1f{bottom:297.210000px;}
.yaf{bottom:298.290000px;}
.y230{bottom:298.470000px;}
.y1f3{bottom:299.010000px;}
.y1ab{bottom:302.985000px;}
.y75{bottom:307.290000px;}
.y26c{bottom:307.470000px;}
.y29a{bottom:307.650000px;}
.y37{bottom:308.190000px;}
.y135{bottom:311.625000px;}
.y1e{bottom:315.030000px;}
.y15e{bottom:317.010000px;}
.yae{bottom:318.090000px;}
.y22f{bottom:318.270000px;}
.y175{bottom:318.630000px;}
.y1f2{bottom:318.810000px;}
.y26b{bottom:321.330000px;}
.yde{bottom:321.705000px;}
.y1ae{bottom:323.685000px;}
.y74{bottom:326.730000px;}
.y1c0{bottom:327.090000px;}
.y36{bottom:327.990000px;}
.y299{bottom:329.250000px;}
.y22e{bottom:332.130000px;}
.y1d{bottom:332.850000px;}
.y134{bottom:334.665000px;}
.y15d{bottom:336.810000px;}
.yad{bottom:337.890000px;}
.y1f1{bottom:338.970000px;}
.y26a{bottom:341.130000px;}
.y176{bottom:342.210000px;}
.y1ad{bottom:344.385000px;}
.ye5{bottom:345.465000px;}
.y22d{bottom:345.990000px;}
.y73{bottom:346.530000px;}
.y1bf{bottom:346.890000px;}
.y35{bottom:347.970000px;}
.y1c{bottom:350.850000px;}
.y269{bottom:354.990000px;}
.y15c{bottom:356.610000px;}
.yac{bottom:357.690000px;}
.y1f0{bottom:358.410000px;}
.y132{bottom:359.685000px;}
.ye3{bottom:363.465000px;}
.y1aa{bottom:365.085000px;}
.y177{bottom:365.790000px;}
.y72{bottom:366.690000px;}
.y34{bottom:367.410000px;}
.y1b{bottom:368.670000px;}
.y298{bottom:372.270000px;}
.y268{bottom:374.790000px;}
.y15b{bottom:376.590000px;}
.yab{bottom:377.670000px;}
.y1ef{bottom:378.390000px;}
.y22c{bottom:379.470000px;}
.y1a8{bottom:385.785000px;}
.y1a{bottom:386.490000px;}
.y71{bottom:386.670000px;}
.y33{bottom:387.570000px;}
.y267{bottom:388.470000px;}
.ye1{bottom:389.745000px;}
.y22b{bottom:393.330000px;}
.y297{bottom:393.870000px;}
.y15a{bottom:396.390000px;}
.yaa{bottom:397.470000px;}
.y1ee{bottom:398.595000px;}
.y17{bottom:401.295000px;}
.y19{bottom:404.310000px;}
.y131{bottom:404.895000px;}
.y70{bottom:406.155000px;}
.y1a5{bottom:406.515000px;}
.ye0{bottom:407.775000px;}
.y266{bottom:408.315000px;}
.y22a{bottom:413.175000px;}
.y296{bottom:415.335000px;}
.y159{bottom:416.235000px;}
.ya9{bottom:416.955000px;}
.y1cc{bottom:417.315000px;}
.y1ed{bottom:418.395000px;}
.y265{bottom:422.175000px;}
.y130{bottom:424.875000px;}
.y6f{bottom:425.955000px;}
.y18{bottom:426.270000px;}
.y1be{bottom:426.315000px;}
.y229{bottom:427.035000px;}
.y1a7{bottom:427.215000px;}
.yd9{bottom:432.435000px;}
.y158{bottom:435.675000px;}
.ya8{bottom:436.755000px;}
.y295{bottom:436.935000px;}
.y1cb{bottom:437.115000px;}
.y1ec{bottom:437.835000px;}
.y31{bottom:438.870000px;}
.y264{bottom:441.975000px;}
.y6e{bottom:445.755000px;}
.y1bd{bottom:446.115000px;}
.y228{bottom:446.835000px;}
.y1a0{bottom:447.915000px;}
.y12f{bottom:448.455000px;}
.ydb{bottom:453.315000px;}
.y157{bottom:455.835000px;}
.ya7{bottom:456.555000px;}
.y1ca{bottom:456.915000px;}
.y1eb{bottom:457.635000px;}
.y294{bottom:458.535000px;}
.y227{bottom:460.515000px;}
.y6d{bottom:465.555000px;}
.y1bc{bottom:465.915000px;}
.y1a4{bottom:468.615000px;}
.y12a{bottom:470.955000px;}
.y263{bottom:475.635000px;}
.y156{bottom:475.815000px;}
.ya6{bottom:476.535000px;}
.y1c9{bottom:476.895000px;}
.yd4{bottom:477.975000px;}
.y293{bottom:479.955000px;}
.y226{bottom:480.315000px;}
.y6c{bottom:485.895000px;}
.y12e{bottom:488.955000px;}
.y1a3{bottom:489.315000px;}
.y225{bottom:494.175000px;}
.y155{bottom:495.615000px;}
.ya5{bottom:496.695000px;}
.y1ea{bottom:497.775000px;}
.y292{bottom:501.555000px;}
.yd7{bottom:503.715000px;}
.y6b{bottom:505.695000px;}
.y12d{bottom:506.955000px;}
.y224{bottom:508.035000px;}
.y262{bottom:509.115000px;}
.y1a2{bottom:510.015000px;}
.y154{bottom:515.415000px;}
.ya4{bottom:516.495000px;}
.y1e9{bottom:517.575000px;}
.yd6{bottom:521.715000px;}
.y261{bottom:522.975000px;}
.y121{bottom:524.955000px;}
.y6a{bottom:525.495000px;}
.y223{bottom:527.835000px;}
.y1a1{bottom:530.715000px;}
.y153{bottom:535.215000px;}
.ya3{bottom:536.295000px;}
.y1e8{bottom:537.375000px;}
.y222{bottom:541.515000px;}
.y260{bottom:542.775000px;}
.y129{bottom:542.955000px;}
.y291{bottom:544.575000px;}
.y69{bottom:545.295000px;}
.yd0{bottom:546.375000px;}
.y19a{bottom:551.415000px;}
.y152{bottom:555.015000px;}
.ya2{bottom:556.095000px;}
.y25f{bottom:556.635000px;}
.y1e7{bottom:557.175000px;}
.y221{bottom:561.315000px;}
.y128{bottom:563.295000px;}
.y68{bottom:565.095000px;}
.y290{bottom:565.995000px;}
.yd2{bottom:569.775000px;}
.y25e{bottom:570.315000px;}
.y19f{bottom:572.115000px;}
.y151{bottom:574.995000px;}
.y220{bottom:575.175000px;}
.ya1{bottom:575.715000px;}
.y1c8{bottom:576.075000px;}
.y1e6{bottom:576.615000px;}
.y127{bottom:583.455000px;}
.y67{bottom:585.075000px;}
.y28f{bottom:587.595000px;}
.y25d{bottom:590.115000px;}
.y19e{bottom:592.815000px;}
.ycc{bottom:593.535000px;}
.y150{bottom:594.795000px;}
.y21f{bottom:594.975000px;}
.ya0{bottom:595.515000px;}
.y1c7{bottom:595.875000px;}
.y1e5{bottom:596.595000px;}
.y126{bottom:601.635000px;}
.y25c{bottom:603.975000px;}
.y66{bottom:604.875000px;}
.y21e{bottom:608.835000px;}
.y28e{bottom:609.195000px;}
.yce{bottom:611.535000px;}
.y19d{bottom:613.515000px;}
.y14f{bottom:614.235000px;}
.y9f{bottom:615.675000px;}
.y1e4{bottom:616.755000px;}
.y125{bottom:619.635000px;}
.y25b{bottom:623.775000px;}
.y65{bottom:624.675000px;}
.y21d{bottom:628.635000px;}
.y28d{bottom:630.615000px;}
.y14e{bottom:634.035000px;}
.y19c{bottom:634.215000px;}
.y9e{bottom:635.475000px;}
.y1e3{bottom:636.555000px;}
.y124{bottom:637.635000px;}
.yc1{bottom:638.535000px;}
.y21c{bottom:642.315000px;}
.y64{bottom:644.475000px;}
.y25a{bottom:651.345000px;}
.y28c{bottom:652.245000px;}
.y14d{bottom:654.225000px;}
.y199{bottom:654.945000px;}
.y9d{bottom:655.305000px;}
.y1e2{bottom:656.025000px;}
.y11a{bottom:659.085000px;}
.yc9{bottom:661.785000px;}
.y21b{bottom:662.145000px;}
.y63{bottom:664.305000px;}
.y259{bottom:671.145000px;}
.y28b{bottom:673.665000px;}
.y14c{bottom:674.205000px;}
.y9c{bottom:675.285000px;}
.y1e1{bottom:675.825000px;}
.y21a{bottom:676.005000px;}
.yc7{bottom:679.785000px;}
.y11f{bottom:681.405000px;}
.y198{bottom:681.765000px;}
.y62{bottom:684.285000px;}
.y258{bottom:685.005000px;}
.y14b{bottom:694.005000px;}
.y9b{bottom:695.085000px;}
.y28a{bottom:695.265000px;}
.y219{bottom:695.805000px;}
.y1e0{bottom:696.165000px;}
.y11d{bottom:699.405000px;}
.y197{bottom:701.565000px;}
.yc5{bottom:703.725000px;}
.y61{bottom:704.085000px;}
.y257{bottom:704.805000px;}
.y218{bottom:709.665000px;}
.y14a{bottom:713.445000px;}
.y9a{bottom:714.885000px;}
.y1df{bottom:715.605000px;}
.y289{bottom:716.685000px;}
.y256{bottom:718.665000px;}
.y115{bottom:719.565000px;}
.yc3{bottom:721.725000px;}
.y196{bottom:721.905000px;}
.y60{bottom:723.885000px;}
.y217{bottom:729.465000px;}
.y99{bottom:734.685000px;}
.y1de{bottom:735.405000px;}
.y149{bottom:735.765000px;}
.y288{bottom:738.285000px;}
.y255{bottom:738.465000px;}
.y195{bottom:742.065000px;}
.y118{bottom:743.145000px;}
.y5f{bottom:743.685000px;}
.ybf{bottom:746.385000px;}
.y254{bottom:752.145000px;}
.y190{bottom:753.765000px;}
.y98{bottom:754.485000px;}
.y1dd{bottom:755.205000px;}
.y287{bottom:759.885000px;}
.y148{bottom:760.785000px;}
.y117{bottom:761.325000px;}
.y216{bottom:762.945000px;}
.y5e{bottom:763.485000px;}
.y194{bottom:769.965000px;}
.y253{bottom:771.945000px;}
.y97{bottom:774.465000px;}
.y147{bottom:775.725000px;}
.y1dc{bottom:776.445000px;}
.y215{bottom:776.805000px;}
.y16c{bottom:777.600000px;}
.ybe{bottom:779.505000px;}
.y286{bottom:781.305000px;}
.y5d{bottom:783.465000px;}
.y10d{bottom:783.825000px;}
.y252{bottom:785.805000px;}
.y193{bottom:786.345000px;}
.y96{bottom:794.265000px;}
.y214{bottom:796.605000px;}
.y1db{bottom:799.305000px;}
.ybd{bottom:800.205000px;}
.y192{bottom:802.545000px;}
.y5c{bottom:803.265000px;}
.y113{bottom:805.425000px;}
.y251{bottom:805.605000px;}
.y213{bottom:810.285000px;}
.y95{bottom:814.065000px;}
.y285{bottom:816.405000px;}
.y18d{bottom:818.925000px;}
.y1da{bottom:819.105000px;}
.y250{bottom:819.285000px;}
.y5b{bottom:823.065000px;}
.y112{bottom:824.325000px;}
.y212{bottom:830.085000px;}
.y24f{bottom:833.145000px;}
.y94{bottom:833.505000px;}
.y1c6{bottom:833.865000px;}
.y18f{bottom:835.125000px;}
.y1d9{bottom:838.905000px;}
.y5a{bottom:842.865000px;}
.y211{bottom:843.945000px;}
.y111{bottom:845.745000px;}
.y16{bottom:846.105000px;}
.y284{bottom:849.885000px;}
.y18e{bottom:851.325000px;}
.y24e{bottom:852.945000px;}
.y93{bottom:853.305000px;}
.y1c5{bottom:853.665000px;}
.y1d8{bottom:858.705000px;}
.y59{bottom:862.665000px;}
.y210{bottom:863.745000px;}
.y10f{bottom:863.925000px;}
.y15{bottom:865.005000px;}
.y24d{bottom:866.805000px;}
.y18b{bottom:867.705000px;}
.y92{bottom:873.645000px;}
.y14{bottom:877.245000px;}
.y20f{bottom:877.605000px;}
.y1d7{bottom:878.685000px;}
.y58{bottom:882.645000px;}
.y283{bottom:883.545000px;}
.y18c{bottom:883.905000px;}
.y10a{bottom:885.345000px;}
.y24c{bottom:886.605000px;}
.y13{bottom:888.045000px;}
.y20e{bottom:891.285000px;}
.y91{bottom:893.445000px;}
.y282{bottom:897.450000px;}
.y1d6{bottom:898.530000px;}
.y188{bottom:900.330000px;}
.y12{bottom:901.950000px;}
.y57{bottom:902.490000px;}
.y10c{bottom:906.810000px;}
.y20d{bottom:911.130000px;}
.y90{bottom:913.290000px;}
.y24b{bottom:914.190000px;}
.y11{bottom:915.810000px;}
.y18a{bottom:916.530000px;}
.y281{bottom:917.250000px;}
.y1d5{bottom:918.330000px;}
.y56{bottom:922.290000px;}
.y10{bottom:924.270000px;}
.y101{bottom:924.810000px;}
.y20c{bottom:924.990000px;}
.y280{bottom:930.930000px;}
.y189{bottom:932.730000px;}
.y8f{bottom:933.090000px;}
.y24a{bottom:933.990000px;}
.yf{bottom:937.230000px;}
.y1d4{bottom:938.130000px;}
.y55{bottom:942.090000px;}
.y109{bottom:942.810000px;}
.y20b{bottom:944.790000px;}
.y249{bottom:947.850000px;}
.y186{bottom:949.110000px;}
.y8e{bottom:952.890000px;}
.y1d3{bottom:957.930000px;}
.y20a{bottom:958.650000px;}
.ye{bottom:958.830000px;}
.y108{bottom:960.810000px;}
.y54{bottom:961.890000px;}
.y27f{bottom:964.590000px;}
.y187{bottom:965.310000px;}
.y248{bottom:967.650000px;}
.y8d{bottom:972.870000px;}
.y1d2{bottom:977.910000px;}
.y209{bottom:978.450000px;}
.y107{bottom:978.810000px;}
.yd{bottom:980.250000px;}
.y247{bottom:981.330000px;}
.y183{bottom:981.690000px;}
.y53{bottom:981.870000px;}
.y208{bottom:992.130000px;}
.y8c{bottom:992.670000px;}
.y246{bottom:995.190000px;}
.y106{bottom:996.810000px;}
.y1d1{bottom:997.710000px;}
.y185{bottom:997.890000px;}
.y27e{bottom:998.250000px;}
.yc{bottom:1000.770000px;}
.y52{bottom:1001.670000px;}
.y207{bottom:1005.990000px;}
.y27d{bottom:1011.930000px;}
.y8b{bottom:1012.470000px;}
.y17b{bottom:1014.090000px;}
.y105{bottom:1014.810000px;}
.y245{bottom:1014.990000px;}
.y1d0{bottom:1017.150000px;}
.y51{bottom:1021.470000px;}
.y206{bottom:1025.790000px;}
.y244{bottom:1028.850000px;}
.y182{bottom:1030.470000px;}
.y27c{bottom:1031.730000px;}
.y8a{bottom:1032.270000px;}
.y104{bottom:1032.810000px;}
.yb{bottom:1035.330000px;}
.y1cf{bottom:1038.210000px;}
.y205{bottom:1039.650000px;}
.y50{bottom:1041.270000px;}
.y27b{bottom:1045.590000px;}
.y180{bottom:1046.670000px;}
.y243{bottom:1048.650000px;}
.y103{bottom:1050.810000px;}
.y89{bottom:1051.710000px;}
.y1c4{bottom:1052.070000px;}
.y204{bottom:1059.450000px;}
.ybc{bottom:1060.710000px;}
.y4f{bottom:1061.070000px;}
.y242{bottom:1062.330000px;}
.y17f{bottom:1063.050000px;}
.yfe{bottom:1068.810000px;}
.ya{bottom:1069.890000px;}
.y88{bottom:1071.690000px;}
.y1c3{bottom:1072.050000px;}
.y203{bottom:1073.130000px;}
.y17d{bottom:1079.250000px;}
.ybb{bottom:1080.690000px;}
.y4e{bottom:1081.050000px;}
.y241{bottom:1082.130000px;}
.y100{bottom:1086.810000px;}
.y202{bottom:1086.990000px;}
.y87{bottom:1091.850000px;}
.y27a{bottom:1092.930000px;}
.y179{bottom:1095.630000px;}
.y240{bottom:1095.990000px;}
.y4d{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.yfd{bottom:1104.810000px;}
.y201{bottom:1106.790000px;}
.y86{bottom:1111.650000px;}
.y43{bottom:1112.730000px;}
.y23f{bottom:1115.790000px;}
.y8{bottom:1117.950000px;}
.y4c{bottom:1120.650000px;}
.y279{bottom:1126.590000px;}
.y23e{bottom:1129.650000px;}
.y85{bottom:1131.450000px;}
.yfc{bottom:1134.330000px;}
.y4b{bottom:1140.450000px;}
.y23d{bottom:1149.480000px;}
.y84{bottom:1151.280000px;}
.yfb{bottom:1151.460000px;}
.y200{bottom:1154.160000px;}
.y7{bottom:1155.960000px;}
.y1bb{bottom:1159.920000px;}
.y4a{bottom:1160.280000px;}
.y23c{bottom:1163.160000px;}
.y6{bottom:1167.480000px;}
.y82{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y47{bottom:1178.460000px;}
.y81{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y46{bottom:1197.720000px;}
.h6{height:5.650313px;}
.he{height:12.012891px;}
.h57{height:15.465000px;}
.h5e{height:15.480000px;}
.h5d{height:15.502500px;}
.h58{height:15.645000px;}
.h60{height:15.660000px;}
.h30{height:17.085000px;}
.h35{height:17.098500px;}
.h1c{height:17.100000px;}
.h2d{height:17.121000px;}
.h22{height:17.265000px;}
.h1e{height:17.280000px;}
.h33{height:17.316000px;}
.h46{height:17.445000px;}
.h3c{height:17.460000px;}
.h3d{height:18.000000px;}
.h11{height:18.140625px;}
.h47{height:19.425000px;}
.h42{height:19.440000px;}
.h65{height:19.965000px;}
.h6c{height:19.978500px;}
.h62{height:19.980000px;}
.h68{height:20.001000px;}
.h64{height:20.010000px;}
.h6b{height:20.016000px;}
.h2a{height:20.145000px;}
.h3b{height:20.700000px;}
.h39{height:20.722500px;}
.h45{height:20.730000px;}
.h43{height:21.600000px;}
.h3f{height:21.780000px;}
.h31{height:21.945000px;}
.h34{height:21.958500px;}
.h4e{height:22.176000px;}
.h4c{height:22.305000px;}
.h25{height:22.485000px;}
.h1f{height:22.530000px;}
.h40{height:22.860000px;}
.h24{height:23.025000px;}
.h1d{height:23.220000px;}
.h2c{height:23.745000px;}
.h27{height:23.925000px;}
.h1b{height:23.940000px;}
.h4b{height:24.285000px;}
.h52{height:24.298500px;}
.h51{height:24.516000px;}
.h28{height:25.005000px;}
.h2e{height:25.365000px;}
.h21{height:26.085000px;}
.h19{height:26.100000px;}
.h4f{height:26.278500px;}
.h13{height:27.705000px;}
.h55{height:28.965000px;}
.hd{height:29.664141px;}
.hc{height:30.476250px;}
.h59{height:31.665000px;}
.h5c{height:31.702500px;}
.h5a{height:31.845000px;}
.h36{height:35.265000px;}
.h4a{height:38.325000px;}
.h38{height:38.722500px;}
.h67{height:40.665000px;}
.h3{height:40.985156px;}
.h14{height:42.922699px;}
.h17{height:43.215117px;}
.h20{height:44.085000px;}
.h29{height:44.805000px;}
.h23{height:46.425000px;}
.h7{height:47.344922px;}
.h5b{height:48.045000px;}
.h5f{height:48.060000px;}
.h4{height:48.616875px;}
.h6d{height:50.558906px;}
.h2{height:52.998047px;}
.h54{height:53.139375px;}
.h48{height:53.265000px;}
.h8{height:54.421875px;}
.h4d{height:58.621992px;}
.hf{height:58.651172px;}
.h41{height:59.760000px;}
.h9{height:60.226875px;}
.h69{height:61.365000px;}
.h3e{height:63.540000px;}
.h61{height:64.260000px;}
.h2f{height:64.605000px;}
.h16{height:65.518594px;}
.h18{height:65.638594px;}
.h6e{height:65.884219px;}
.hb{height:66.543750px;}
.h12{height:66.757500px;}
.h26{height:67.665000px;}
.h15{height:70.664062px;}
.h5{height:72.562500px;}
.h56{height:80.625000px;}
.h32{height:82.656000px;}
.h50{height:84.898125px;}
.h49{height:93.983203px;}
.h3a{height:100.800000px;}
.h66{height:102.765000px;}
.h63{height:102.810000px;}
.h6a{height:102.816000px;}
.h1a{height:107.130000px;}
.h2b{height:109.821000px;}
.ha{height:121.179375px;}
.h44{height:133.410000px;}
.h37{height:143.265000px;}
.h53{height:396.360000px;}
.h10{height:438.870000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w11{width:76.485000px;}
.w12{width:85.890000px;}
.wc{width:94.530000px;}
.w3{width:101.730000px;}
.w10{width:108.201000px;}
.w14{width:110.916000px;}
.wb{width:114.645000px;}
.w17{width:115.410000px;}
.w16{width:120.405000px;}
.wf{width:121.845000px;}
.w7{width:125.121000px;}
.we{width:130.536000px;}
.w1c{width:143.130000px;}
.w1a{width:144.576000px;}
.w1b{width:145.641000px;}
.w15{width:146.901000px;}
.w8{width:147.990000px;}
.w6{width:150.870000px;}
.w20{width:161.670000px;}
.w9{width:170.659500px;}
.w1f{width:183.075000px;}
.w1e{width:183.270000px;}
.w1d{width:203.239500px;}
.wd{width:207.739500px;}
.w4{width:232.050000px;}
.w13{width:236.719500px;}
.w19{width:292.159500px;}
.w5{width:302.959500px;}
.wa{width:351.075000px;}
.w2{width:640.890000px;}
.w18{width:730.080000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xa{left:-20.700000px;}
.x0{left:0.000000px;}
.x10{left:8.089500px;}
.x9{left:10.650000px;}
.x20{left:11.880000px;}
.x3b{left:15.228000px;}
.x28{left:16.365000px;}
.x2e{left:17.640000px;}
.x2a{left:19.800000px;}
.x2f{left:21.240000px;}
.x1e{left:23.040000px;}
.x32{left:25.020000px;}
.x8{left:26.850000px;}
.x13{left:28.425000px;}
.x22{left:30.270000px;}
.x2c{left:31.860000px;}
.x24{left:34.050000px;}
.x31{left:36.570000px;}
.x15{left:38.700000px;}
.x3f{left:41.385000px;}
.x7{left:42.510000px;}
.x37{left:43.740000px;}
.x19{left:45.390000px;}
.x2d{left:47.685000px;}
.x21{left:49.680000px;}
.x30{left:51.465000px;}
.x23{left:53.280000px;}
.x16{left:55.110000px;}
.x18{left:57.060000px;}
.x6{left:58.710000px;}
.x17{left:60.840000px;}
.x39{left:63.165000px;}
.x1a{left:64.620000px;}
.x3a{left:67.104000px;}
.x5{left:78.150000px;}
.x1b{left:79.246500px;}
.x2{left:81.036000px;}
.xb{left:108.036000px;}
.x44{left:135.036000px;}
.x45{left:158.250000px;}
.x3c{left:214.890000px;}
.x1c{left:249.915000px;}
.x41{left:284.295000px;}
.x25{left:288.795000px;}
.x34{left:317.775000px;}
.xd{left:359.715000px;}
.x3d{left:371.415000px;}
.x11{left:384.015000px;}
.xf{left:401.115000px;}
.x26{left:419.340000px;}
.x35{left:428.700000px;}
.xe{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x42{left:467.580000px;}
.x3e{left:516.000000px;}
.x12{left:534.900000px;}
.x27{left:541.200000px;}
.x36{left:575.610000px;}
.xc{left:590.370000px;}
.x1d{left:600.990000px;}
.x29{left:649.410000px;}
.x43{left:650.670000px;}
.x14{left:660.030000px;}
.x40{left:661.650000px;}
.x38{left:696.030000px;}
.x1f{left:715.650000px;}
.x4{left:721.950000px;}
.x2b{left:725.910000px;}
.x33{left:814.680000px;}
@media print{
.v6{vertical-align:-55.040000pt;}
.v4{vertical-align:-51.306676pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls1a{letter-spacing:-1.600000pt;}
.ls2e{letter-spacing:-1.477333pt;}
.ls2a{letter-spacing:-0.880000pt;}
.ls1f{letter-spacing:-0.519467pt;}
.lsc{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls2f{letter-spacing:-0.239467pt;}
.ls2b{letter-spacing:-0.216533pt;}
.ls11{letter-spacing:-0.198933pt;}
.ls13{letter-spacing:-0.025600pt;}
.lse{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls23{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.096000pt;}
.ls20{letter-spacing:0.120533pt;}
.ls2c{letter-spacing:0.138667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.161067pt;}
.ls28{letter-spacing:0.183467pt;}
.ls22{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls30{letter-spacing:0.239467pt;}
.ls21{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.280320pt;}
.ls1e{letter-spacing:0.288000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.438933pt;}
.ls19{letter-spacing:0.592000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.721067pt;}
.ls26{letter-spacing:0.800000pt;}
.ls29{letter-spacing:0.960000pt;}
.ls25{letter-spacing:1.440000pt;}
.ls24{letter-spacing:2.080000pt;}
.ls6{letter-spacing:2.720000pt;}
.ls27{letter-spacing:2.880000pt;}
.ls1c{letter-spacing:4.000000pt;}
.ls15{letter-spacing:4.800000pt;}
.ls2d{letter-spacing:8.453120pt;}
.ls1d{letter-spacing:9.120000pt;}
.ls16{letter-spacing:11.040000pt;}
.ls31{letter-spacing:40.480000pt;}
.ls4{letter-spacing:55.680000pt;}
.ls5{letter-spacing:56.320000pt;}
.ws5{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.991467pt;}
.ws17{word-spacing:-13.872000pt;}
.ws14{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.545600pt;}
.ws16{word-spacing:-13.510933pt;}
.ws1b{word-spacing:-13.463467pt;}
.ws11{word-spacing:-13.374933pt;}
.ws19{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws1a{word-spacing:-12.288000pt;}
.wsc{word-spacing:-12.096000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.680000pt;}
.ws4{word-spacing:-11.040000pt;}
.ws20{word-spacing:-10.959467pt;}
.ws15{word-spacing:-10.881067pt;}
.ws8{word-spacing:-10.720000pt;}
.ws13{word-spacing:-10.521067pt;}
.ws1f{word-spacing:-10.480533pt;}
.ws7{word-spacing:-10.400000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws1c{word-spacing:-9.840000pt;}
.ws2{word-spacing:-9.718933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws1e{word-spacing:-9.242667pt;}
.wsa{word-spacing:-8.640000pt;}
.wsb{word-spacing:-6.720000pt;}
.ws1d{word-spacing:-6.503467pt;}
.ws12{word-spacing:0.000000pt;}
.ws9{word-spacing:47.083520pt;}
._17{margin-left:-5.046400pt;}
._18{margin-left:-4.090240pt;}
._19{margin-left:-3.027840pt;}
._1{margin-left:-1.316053pt;}
._0{width:0.965120pt;}
._6{width:2.506880pt;}
._9{width:3.457493pt;}
._b{width:4.800000pt;}
._a{width:5.904000pt;}
._4{width:6.840320pt;}
._7{width:7.853440pt;}
._8{width:8.832000pt;}
._c{width:10.224000pt;}
._13{width:11.886080pt;}
._25{width:13.325013pt;}
._16{width:14.257707pt;}
._15{width:15.180373pt;}
._14{width:16.286933pt;}
._e{width:17.856000pt;}
._d{width:19.056000pt;}
._24{width:20.183253pt;}
._2d{width:26.885760pt;}
._2c{width:27.901653pt;}
._3{width:28.857600pt;}
._1d{width:30.230400pt;}
._1e{width:31.849600pt;}
._2f{width:32.746453pt;}
._10{width:33.774720pt;}
._f{width:34.794667pt;}
._28{width:38.077440pt;}
._2a{width:39.637547pt;}
._29{width:40.907520pt;}
._30{width:42.554667pt;}
._2b{width:53.128320pt;}
._5{width:54.701227pt;}
._2e{width:62.261760pt;}
._27{width:72.184960pt;}
._26{width:73.461333pt;}
._1f{width:84.988160pt;}
._20{width:86.188800pt;}
._21{width:94.365653pt;}
._1b{width:156.683520pt;}
._1c{width:157.956693pt;}
._11{width:168.942717pt;}
._22{width:176.802133pt;}
._23{width:177.802240pt;}
._12{width:1630.485333pt;}
._1a{width:1782.965333pt;}
._2{width:1827.544747pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fsf{font-size:48.128000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fse{font-size:74.880000pt;}
.fsd{font-size:85.120000pt;}
.fs8{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y17e{bottom:2.880000pt;}
.y181{bottom:3.040000pt;}
.ye2{bottom:3.186667pt;}
.yc6{bottom:3.200000pt;}
.ye6{bottom:3.346667pt;}
.yca{bottom:3.360000pt;}
.yf6{bottom:3.386667pt;}
.y119{bottom:3.520000pt;}
.y114{bottom:3.680000pt;}
.y45{bottom:3.840000pt;}
.y11e{bottom:4.320000pt;}
.ydd{bottom:4.640000pt;}
.y110{bottom:4.800000pt;}
.y1a9{bottom:4.946667pt;}
.y30{bottom:4.960000pt;}
.y120{bottom:5.280000pt;}
.yed{bottom:5.426667pt;}
.yf8{bottom:5.440000pt;}
.ycb{bottom:5.600000pt;}
.yd3{bottom:5.760000pt;}
.ye7{bottom:5.906667pt;}
.yc8{bottom:5.920000pt;}
.yeb{bottom:6.226667pt;}
.yc4{bottom:6.240000pt;}
.yf1{bottom:6.386667pt;}
.ydc{bottom:6.400000pt;}
.y136{bottom:6.546667pt;}
.y142{bottom:6.560000pt;}
.yd8{bottom:6.720000pt;}
.yc0{bottom:6.880000pt;}
.ye4{bottom:7.026667pt;}
.y140{bottom:7.186667pt;}
.y13a{bottom:7.346667pt;}
.ycf{bottom:7.360000pt;}
.y13c{bottom:7.506667pt;}
.y163{bottom:7.826667pt;}
.y168{bottom:7.840000pt;}
.y166{bottom:7.866667pt;}
.y138{bottom:8.306667pt;}
.y144{bottom:8.320000pt;}
.y17a{bottom:8.480000pt;}
.y16a{bottom:8.800000pt;}
.y184{bottom:10.080000pt;}
.yff{bottom:11.360000pt;}
.y12c{bottom:11.680000pt;}
.y10b{bottom:13.000000pt;}
.y133{bottom:13.266667pt;}
.y1b0{bottom:14.066667pt;}
.y1a6{bottom:14.080000pt;}
.ycd{bottom:15.360000pt;}
.yda{bottom:15.520000pt;}
.y44{bottom:16.160000pt;}
.yd1{bottom:16.320000pt;}
.y83{bottom:16.800000pt;}
.y2f{bottom:17.280000pt;}
.y3{bottom:17.600000pt;}
.y49{bottom:17.760000pt;}
.y11c{bottom:22.240000pt;}
.y1ac{bottom:23.346667pt;}
.yef{bottom:24.306667pt;}
.ye9{bottom:24.466667pt;}
.y191{bottom:24.640000pt;}
.yd5{bottom:25.760000pt;}
.y2e{bottom:26.080000pt;}
.y12b{bottom:27.040000pt;}
.y2{bottom:30.080000pt;}
.y116{bottom:31.520000pt;}
.y17c{bottom:32.000000pt;}
.yf4{bottom:32.320000pt;}
.y48{bottom:35.520000pt;}
.y11b{bottom:37.600000pt;}
.y10e{bottom:40.480000pt;}
.y1{bottom:41.440000pt;}
.y19b{bottom:41.760000pt;}
.y2d{bottom:42.080000pt;}
.yc2{bottom:43.226667pt;}
.ydf{bottom:44.466667pt;}
.y123{bottom:47.360000pt;}
.y2c{bottom:57.920000pt;}
.y102{bottom:59.360000pt;}
.y122{bottom:62.720000pt;}
.y146{bottom:66.080000pt;}
.yfa{bottom:68.160000pt;}
.yba{bottom:71.200000pt;}
.y16b{bottom:72.960000pt;}
.y2b{bottom:73.760000pt;}
.y1ba{bottom:74.880000pt;}
.y145{bottom:76.480000pt;}
.y1ff{bottom:76.800000pt;}
.y80{bottom:79.200000pt;}
.y42{bottom:80.000000pt;}
.y169{bottom:83.360000pt;}
.y2a6{bottom:83.520000pt;}
.yf9{bottom:85.120000pt;}
.y1b5{bottom:85.280000pt;}
.y278{bottom:87.200000pt;}
.yb9{bottom:88.800000pt;}
.y1fe{bottom:89.120000pt;}
.y2a{bottom:89.600000pt;}
.y23b{bottom:89.920000pt;}
.yf3{bottom:95.520000pt;}
.y7f{bottom:96.800000pt;}
.y2a5{bottom:97.280000pt;}
.y41{bottom:97.600000pt;}
.y277{bottom:99.520000pt;}
.y143{bottom:99.840000pt;}
.y1fd{bottom:101.440000pt;}
.y23a{bottom:102.080000pt;}
.y1b9{bottom:103.680000pt;}
.y29{bottom:105.440000pt;}
.yb8{bottom:106.400000pt;}
.y167{bottom:106.720000pt;}
.y2a4{bottom:111.040000pt;}
.yf7{bottom:111.520000pt;}
.y1fc{bottom:113.600000pt;}
.y7e{bottom:114.400000pt;}
.y40{bottom:115.200000pt;}
.y16d{bottom:115.613333pt;}
.y276{bottom:117.120000pt;}
.y28{bottom:121.280000pt;}
.y1b8{bottom:122.080000pt;}
.y141{bottom:123.200000pt;}
.yb7{bottom:124.000000pt;}
.y2a3{bottom:124.800000pt;}
.y165{bottom:128.320000pt;}
.y275{bottom:129.280000pt;}
.y1fb{bottom:131.200000pt;}
.y7d{bottom:131.680000pt;}
.y1c2{bottom:132.000000pt;}
.y3f{bottom:132.992000pt;}
.y16e{bottom:136.573333pt;}
.y27{bottom:137.280000pt;}
.y2a2{bottom:138.746667pt;}
.y1b7{bottom:140.520000pt;}
.yb6{bottom:141.626667pt;}
.y1fa{bottom:143.546667pt;}
.y13f{bottom:143.560000pt;}
.y239{bottom:144.346667pt;}
.yf5{bottom:147.720000pt;}
.y7c{bottom:149.306667pt;}
.y1c1{bottom:149.626667pt;}
.y164{bottom:150.120000pt;}
.y3e{bottom:150.586667pt;}
.y2a1{bottom:152.506667pt;}
.y26{bottom:153.120000pt;}
.y178{bottom:154.493333pt;}
.y238{bottom:156.506667pt;}
.y16f{bottom:157.506667pt;}
.y1b6{bottom:158.920000pt;}
.y274{bottom:159.226667pt;}
.yb5{bottom:159.386667pt;}
.y1f9{bottom:161.146667pt;}
.y13e{bottom:165.800000pt;}
.y2a0{bottom:166.266667pt;}
.y7b{bottom:167.386667pt;}
.y3d{bottom:168.186667pt;}
.y237{bottom:168.826667pt;}
.y25{bottom:168.960000pt;}
.yee{bottom:169.640000pt;}
.y273{bottom:171.546667pt;}
.y162{bottom:171.720000pt;}
.y1f8{bottom:173.466667pt;}
.yb4{bottom:176.986667pt;}
.y1b2{bottom:177.320000pt;}
.y170{bottom:178.466667pt;}
.y29f{bottom:180.026667pt;}
.y272{bottom:183.706667pt;}
.y24{bottom:184.800000pt;}
.y7a{bottom:184.986667pt;}
.y3c{bottom:185.786667pt;}
.y236{bottom:186.426667pt;}
.y13d{bottom:187.400000pt;}
.y1f7{bottom:188.506667pt;}
.yf2{bottom:189.800000pt;}
.y29e{bottom:193.946667pt;}
.y161{bottom:194.120000pt;}
.yb3{bottom:194.266667pt;}
.y1ce{bottom:194.586667pt;}
.y32{bottom:195.040000pt;}
.y1b4{bottom:195.720000pt;}
.y235{bottom:198.746667pt;}
.y171{bottom:199.426667pt;}
.y23{bottom:200.640000pt;}
.y271{bottom:201.306667pt;}
.y79{bottom:202.586667pt;}
.y3b{bottom:203.386667pt;}
.y1f6{bottom:205.786667pt;}
.yf0{bottom:205.800000pt;}
.y13b{bottom:210.600000pt;}
.y234{bottom:210.906667pt;}
.yb2{bottom:211.866667pt;}
.y1cd{bottom:212.186667pt;}
.y270{bottom:213.626667pt;}
.y1b3{bottom:214.120000pt;}
.y22{bottom:216.640000pt;}
.y78{bottom:220.186667pt;}
.y172{bottom:220.386667pt;}
.y3a{bottom:221.146667pt;}
.y29d{bottom:221.466667pt;}
.y160{bottom:221.786667pt;}
.y233{bottom:223.226667pt;}
.y1f5{bottom:225.626667pt;}
.ye8{bottom:227.720000pt;}
.yb1{bottom:229.786667pt;}
.y26f{bottom:231.226667pt;}
.y139{bottom:232.200000pt;}
.y21{bottom:232.506667pt;}
.y1af{bottom:232.520000pt;}
.y29c{bottom:235.226667pt;}
.y232{bottom:235.546667pt;}
.y77{bottom:237.786667pt;}
.y39{bottom:238.746667pt;}
.y173{bottom:241.346667pt;}
.y15f{bottom:241.466667pt;}
.y26e{bottom:243.546667pt;}
.yb0{bottom:247.546667pt;}
.yec{bottom:248.040000pt;}
.y20{bottom:248.346667pt;}
.y1f4{bottom:248.506667pt;}
.y1b1{bottom:250.920000pt;}
.y231{bottom:253.146667pt;}
.y137{bottom:253.800000pt;}
.y29b{bottom:254.426667pt;}
.y76{bottom:255.546667pt;}
.y26d{bottom:255.706667pt;}
.y38{bottom:256.346667pt;}
.y174{bottom:262.266667pt;}
.yea{bottom:264.040000pt;}
.y1f{bottom:264.186667pt;}
.yaf{bottom:265.146667pt;}
.y230{bottom:265.306667pt;}
.y1f3{bottom:265.786667pt;}
.y1ab{bottom:269.320000pt;}
.y75{bottom:273.146667pt;}
.y26c{bottom:273.306667pt;}
.y29a{bottom:273.466667pt;}
.y37{bottom:273.946667pt;}
.y135{bottom:277.000000pt;}
.y1e{bottom:280.026667pt;}
.y15e{bottom:281.786667pt;}
.yae{bottom:282.746667pt;}
.y22f{bottom:282.906667pt;}
.y175{bottom:283.226667pt;}
.y1f2{bottom:283.386667pt;}
.y26b{bottom:285.626667pt;}
.yde{bottom:285.960000pt;}
.y1ae{bottom:287.720000pt;}
.y74{bottom:290.426667pt;}
.y1c0{bottom:290.746667pt;}
.y36{bottom:291.546667pt;}
.y299{bottom:292.666667pt;}
.y22e{bottom:295.226667pt;}
.y1d{bottom:295.866667pt;}
.y134{bottom:297.480000pt;}
.y15d{bottom:299.386667pt;}
.yad{bottom:300.346667pt;}
.y1f1{bottom:301.306667pt;}
.y26a{bottom:303.226667pt;}
.y176{bottom:304.186667pt;}
.y1ad{bottom:306.120000pt;}
.ye5{bottom:307.080000pt;}
.y22d{bottom:307.546667pt;}
.y73{bottom:308.026667pt;}
.y1bf{bottom:308.346667pt;}
.y35{bottom:309.306667pt;}
.y1c{bottom:311.866667pt;}
.y269{bottom:315.546667pt;}
.y15c{bottom:316.986667pt;}
.yac{bottom:317.946667pt;}
.y1f0{bottom:318.586667pt;}
.y132{bottom:319.720000pt;}
.ye3{bottom:323.080000pt;}
.y1aa{bottom:324.520000pt;}
.y177{bottom:325.146667pt;}
.y72{bottom:325.946667pt;}
.y34{bottom:326.586667pt;}
.y1b{bottom:327.706667pt;}
.y298{bottom:330.906667pt;}
.y268{bottom:333.146667pt;}
.y15b{bottom:334.746667pt;}
.yab{bottom:335.706667pt;}
.y1ef{bottom:336.346667pt;}
.y22c{bottom:337.306667pt;}
.y1a8{bottom:342.920000pt;}
.y1a{bottom:343.546667pt;}
.y71{bottom:343.706667pt;}
.y33{bottom:344.506667pt;}
.y267{bottom:345.306667pt;}
.ye1{bottom:346.440000pt;}
.y22b{bottom:349.626667pt;}
.y297{bottom:350.106667pt;}
.y15a{bottom:352.346667pt;}
.yaa{bottom:353.306667pt;}
.y1ee{bottom:354.306667pt;}
.y17{bottom:356.706667pt;}
.y19{bottom:359.386667pt;}
.y131{bottom:359.906667pt;}
.y70{bottom:361.026667pt;}
.y1a5{bottom:361.346667pt;}
.ye0{bottom:362.466667pt;}
.y266{bottom:362.946667pt;}
.y22a{bottom:367.266667pt;}
.y296{bottom:369.186667pt;}
.y159{bottom:369.986667pt;}
.ya9{bottom:370.626667pt;}
.y1cc{bottom:370.946667pt;}
.y1ed{bottom:371.906667pt;}
.y265{bottom:375.266667pt;}
.y130{bottom:377.666667pt;}
.y6f{bottom:378.626667pt;}
.y18{bottom:378.906667pt;}
.y1be{bottom:378.946667pt;}
.y229{bottom:379.586667pt;}
.y1a7{bottom:379.746667pt;}
.yd9{bottom:384.386667pt;}
.y158{bottom:387.266667pt;}
.ya8{bottom:388.226667pt;}
.y295{bottom:388.386667pt;}
.y1cb{bottom:388.546667pt;}
.y1ec{bottom:389.186667pt;}
.y31{bottom:390.106667pt;}
.y264{bottom:392.866667pt;}
.y6e{bottom:396.226667pt;}
.y1bd{bottom:396.546667pt;}
.y228{bottom:397.186667pt;}
.y1a0{bottom:398.146667pt;}
.y12f{bottom:398.626667pt;}
.ydb{bottom:402.946667pt;}
.y157{bottom:405.186667pt;}
.ya7{bottom:405.826667pt;}
.y1ca{bottom:406.146667pt;}
.y1eb{bottom:406.786667pt;}
.y294{bottom:407.586667pt;}
.y227{bottom:409.346667pt;}
.y6d{bottom:413.826667pt;}
.y1bc{bottom:414.146667pt;}
.y1a4{bottom:416.546667pt;}
.y12a{bottom:418.626667pt;}
.y263{bottom:422.786667pt;}
.y156{bottom:422.946667pt;}
.ya6{bottom:423.586667pt;}
.y1c9{bottom:423.906667pt;}
.yd4{bottom:424.866667pt;}
.y293{bottom:426.626667pt;}
.y226{bottom:426.946667pt;}
.y6c{bottom:431.906667pt;}
.y12e{bottom:434.626667pt;}
.y1a3{bottom:434.946667pt;}
.y225{bottom:439.266667pt;}
.y155{bottom:440.546667pt;}
.ya5{bottom:441.506667pt;}
.y1ea{bottom:442.466667pt;}
.y292{bottom:445.826667pt;}
.yd7{bottom:447.746667pt;}
.y6b{bottom:449.506667pt;}
.y12d{bottom:450.626667pt;}
.y224{bottom:451.586667pt;}
.y262{bottom:452.546667pt;}
.y1a2{bottom:453.346667pt;}
.y154{bottom:458.146667pt;}
.ya4{bottom:459.106667pt;}
.y1e9{bottom:460.066667pt;}
.yd6{bottom:463.746667pt;}
.y261{bottom:464.866667pt;}
.y121{bottom:466.626667pt;}
.y6a{bottom:467.106667pt;}
.y223{bottom:469.186667pt;}
.y1a1{bottom:471.746667pt;}
.y153{bottom:475.746667pt;}
.ya3{bottom:476.706667pt;}
.y1e8{bottom:477.666667pt;}
.y222{bottom:481.346667pt;}
.y260{bottom:482.466667pt;}
.y129{bottom:482.626667pt;}
.y291{bottom:484.066667pt;}
.y69{bottom:484.706667pt;}
.yd0{bottom:485.666667pt;}
.y19a{bottom:490.146667pt;}
.y152{bottom:493.346667pt;}
.ya2{bottom:494.306667pt;}
.y25f{bottom:494.786667pt;}
.y1e7{bottom:495.266667pt;}
.y221{bottom:498.946667pt;}
.y128{bottom:500.706667pt;}
.y68{bottom:502.306667pt;}
.y290{bottom:503.106667pt;}
.yd2{bottom:506.466667pt;}
.y25e{bottom:506.946667pt;}
.y19f{bottom:508.546667pt;}
.y151{bottom:511.106667pt;}
.y220{bottom:511.266667pt;}
.ya1{bottom:511.746667pt;}
.y1c8{bottom:512.066667pt;}
.y1e6{bottom:512.546667pt;}
.y127{bottom:518.626667pt;}
.y67{bottom:520.066667pt;}
.y28f{bottom:522.306667pt;}
.y25d{bottom:524.546667pt;}
.y19e{bottom:526.946667pt;}
.ycc{bottom:527.586667pt;}
.y150{bottom:528.706667pt;}
.y21f{bottom:528.866667pt;}
.ya0{bottom:529.346667pt;}
.y1c7{bottom:529.666667pt;}
.y1e5{bottom:530.306667pt;}
.y126{bottom:534.786667pt;}
.y25c{bottom:536.866667pt;}
.y66{bottom:537.666667pt;}
.y21e{bottom:541.186667pt;}
.y28e{bottom:541.506667pt;}
.yce{bottom:543.586667pt;}
.y19d{bottom:545.346667pt;}
.y14f{bottom:545.986667pt;}
.y9f{bottom:547.266667pt;}
.y1e4{bottom:548.226667pt;}
.y125{bottom:550.786667pt;}
.y25b{bottom:554.466667pt;}
.y65{bottom:555.266667pt;}
.y21d{bottom:558.786667pt;}
.y28d{bottom:560.546667pt;}
.y14e{bottom:563.586667pt;}
.y19c{bottom:563.746667pt;}
.y9e{bottom:564.866667pt;}
.y1e3{bottom:565.826667pt;}
.y124{bottom:566.786667pt;}
.yc1{bottom:567.586667pt;}
.y21c{bottom:570.946667pt;}
.y64{bottom:572.866667pt;}
.y25a{bottom:578.973333pt;}
.y28c{bottom:579.773333pt;}
.y14d{bottom:581.533333pt;}
.y199{bottom:582.173333pt;}
.y9d{bottom:582.493333pt;}
.y1e2{bottom:583.133333pt;}
.y11a{bottom:585.853333pt;}
.yc9{bottom:588.253333pt;}
.y21b{bottom:588.573333pt;}
.y63{bottom:590.493333pt;}
.y259{bottom:596.573333pt;}
.y28b{bottom:598.813333pt;}
.y14c{bottom:599.293333pt;}
.y9c{bottom:600.253333pt;}
.y1e1{bottom:600.733333pt;}
.y21a{bottom:600.893333pt;}
.yc7{bottom:604.253333pt;}
.y11f{bottom:605.693333pt;}
.y198{bottom:606.013333pt;}
.y62{bottom:608.253333pt;}
.y258{bottom:608.893333pt;}
.y14b{bottom:616.893333pt;}
.y9b{bottom:617.853333pt;}
.y28a{bottom:618.013333pt;}
.y219{bottom:618.493333pt;}
.y1e0{bottom:618.813333pt;}
.y11d{bottom:621.693333pt;}
.y197{bottom:623.613333pt;}
.yc5{bottom:625.533333pt;}
.y61{bottom:625.853333pt;}
.y257{bottom:626.493333pt;}
.y218{bottom:630.813333pt;}
.y14a{bottom:634.173333pt;}
.y9a{bottom:635.453333pt;}
.y1df{bottom:636.093333pt;}
.y289{bottom:637.053333pt;}
.y256{bottom:638.813333pt;}
.y115{bottom:639.613333pt;}
.yc3{bottom:641.533333pt;}
.y196{bottom:641.693333pt;}
.y60{bottom:643.453333pt;}
.y217{bottom:648.413333pt;}
.y99{bottom:653.053333pt;}
.y1de{bottom:653.693333pt;}
.y149{bottom:654.013333pt;}
.y288{bottom:656.253333pt;}
.y255{bottom:656.413333pt;}
.y195{bottom:659.613333pt;}
.y118{bottom:660.573333pt;}
.y5f{bottom:661.053333pt;}
.ybf{bottom:663.453333pt;}
.y254{bottom:668.573333pt;}
.y190{bottom:670.013333pt;}
.y98{bottom:670.653333pt;}
.y1dd{bottom:671.293333pt;}
.y287{bottom:675.453333pt;}
.y148{bottom:676.253333pt;}
.y117{bottom:676.733333pt;}
.y216{bottom:678.173333pt;}
.y5e{bottom:678.653333pt;}
.y194{bottom:684.413333pt;}
.y253{bottom:686.173333pt;}
.y97{bottom:688.413333pt;}
.y147{bottom:689.533333pt;}
.y1dc{bottom:690.173333pt;}
.y215{bottom:690.493333pt;}
.y16c{bottom:691.200000pt;}
.ybe{bottom:692.893333pt;}
.y286{bottom:694.493333pt;}
.y5d{bottom:696.413333pt;}
.y10d{bottom:696.733333pt;}
.y252{bottom:698.493333pt;}
.y193{bottom:698.973333pt;}
.y96{bottom:706.013333pt;}
.y214{bottom:708.093333pt;}
.y1db{bottom:710.493333pt;}
.ybd{bottom:711.293333pt;}
.y192{bottom:713.373333pt;}
.y5c{bottom:714.013333pt;}
.y113{bottom:715.933333pt;}
.y251{bottom:716.093333pt;}
.y213{bottom:720.253333pt;}
.y95{bottom:723.613333pt;}
.y285{bottom:725.693333pt;}
.y18d{bottom:727.933333pt;}
.y1da{bottom:728.093333pt;}
.y250{bottom:728.253333pt;}
.y5b{bottom:731.613333pt;}
.y112{bottom:732.733333pt;}
.y212{bottom:737.853333pt;}
.y24f{bottom:740.573333pt;}
.y94{bottom:740.893333pt;}
.y1c6{bottom:741.213333pt;}
.y18f{bottom:742.333333pt;}
.y1d9{bottom:745.693333pt;}
.y5a{bottom:749.213333pt;}
.y211{bottom:750.173333pt;}
.y111{bottom:751.773333pt;}
.y16{bottom:752.093333pt;}
.y284{bottom:755.453333pt;}
.y18e{bottom:756.733333pt;}
.y24e{bottom:758.173333pt;}
.y93{bottom:758.493333pt;}
.y1c5{bottom:758.813333pt;}
.y1d8{bottom:763.293333pt;}
.y59{bottom:766.813333pt;}
.y210{bottom:767.773333pt;}
.y10f{bottom:767.933333pt;}
.y15{bottom:768.893333pt;}
.y24d{bottom:770.493333pt;}
.y18b{bottom:771.293333pt;}
.y92{bottom:776.573333pt;}
.y14{bottom:779.773333pt;}
.y20f{bottom:780.093333pt;}
.y1d7{bottom:781.053333pt;}
.y58{bottom:784.573333pt;}
.y283{bottom:785.373333pt;}
.y18c{bottom:785.693333pt;}
.y10a{bottom:786.973333pt;}
.y24c{bottom:788.093333pt;}
.y13{bottom:789.373333pt;}
.y20e{bottom:792.253333pt;}
.y91{bottom:794.173333pt;}
.y282{bottom:797.733333pt;}
.y1d6{bottom:798.693333pt;}
.y188{bottom:800.293333pt;}
.y12{bottom:801.733333pt;}
.y57{bottom:802.213333pt;}
.y10c{bottom:806.053333pt;}
.y20d{bottom:809.893333pt;}
.y90{bottom:811.813333pt;}
.y24b{bottom:812.613333pt;}
.y11{bottom:814.053333pt;}
.y18a{bottom:814.693333pt;}
.y281{bottom:815.333333pt;}
.y1d5{bottom:816.293333pt;}
.y56{bottom:819.813333pt;}
.y10{bottom:821.573333pt;}
.y101{bottom:822.053333pt;}
.y20c{bottom:822.213333pt;}
.y280{bottom:827.493333pt;}
.y189{bottom:829.093333pt;}
.y8f{bottom:829.413333pt;}
.y24a{bottom:830.213333pt;}
.yf{bottom:833.093333pt;}
.y1d4{bottom:833.893333pt;}
.y55{bottom:837.413333pt;}
.y109{bottom:838.053333pt;}
.y20b{bottom:839.813333pt;}
.y249{bottom:842.533333pt;}
.y186{bottom:843.653333pt;}
.y8e{bottom:847.013333pt;}
.y1d3{bottom:851.493333pt;}
.y20a{bottom:852.133333pt;}
.ye{bottom:852.293333pt;}
.y108{bottom:854.053333pt;}
.y54{bottom:855.013333pt;}
.y27f{bottom:857.413333pt;}
.y187{bottom:858.053333pt;}
.y248{bottom:860.133333pt;}
.y8d{bottom:864.773333pt;}
.y1d2{bottom:869.253333pt;}
.y209{bottom:869.733333pt;}
.y107{bottom:870.053333pt;}
.yd{bottom:871.333333pt;}
.y247{bottom:872.293333pt;}
.y183{bottom:872.613333pt;}
.y53{bottom:872.773333pt;}
.y208{bottom:881.893333pt;}
.y8c{bottom:882.373333pt;}
.y246{bottom:884.613333pt;}
.y106{bottom:886.053333pt;}
.y1d1{bottom:886.853333pt;}
.y185{bottom:887.013333pt;}
.y27e{bottom:887.333333pt;}
.yc{bottom:889.573333pt;}
.y52{bottom:890.373333pt;}
.y207{bottom:894.213333pt;}
.y27d{bottom:899.493333pt;}
.y8b{bottom:899.973333pt;}
.y17b{bottom:901.413333pt;}
.y105{bottom:902.053333pt;}
.y245{bottom:902.213333pt;}
.y1d0{bottom:904.133333pt;}
.y51{bottom:907.973333pt;}
.y206{bottom:911.813333pt;}
.y244{bottom:914.533333pt;}
.y182{bottom:915.973333pt;}
.y27c{bottom:917.093333pt;}
.y8a{bottom:917.573333pt;}
.y104{bottom:918.053333pt;}
.yb{bottom:920.293333pt;}
.y1cf{bottom:922.853333pt;}
.y205{bottom:924.133333pt;}
.y50{bottom:925.573333pt;}
.y27b{bottom:929.413333pt;}
.y180{bottom:930.373333pt;}
.y243{bottom:932.133333pt;}
.y103{bottom:934.053333pt;}
.y89{bottom:934.853333pt;}
.y1c4{bottom:935.173333pt;}
.y204{bottom:941.733333pt;}
.ybc{bottom:942.853333pt;}
.y4f{bottom:943.173333pt;}
.y242{bottom:944.293333pt;}
.y17f{bottom:944.933333pt;}
.yfe{bottom:950.053333pt;}
.ya{bottom:951.013333pt;}
.y88{bottom:952.613333pt;}
.y1c3{bottom:952.933333pt;}
.y203{bottom:953.893333pt;}
.y17d{bottom:959.333333pt;}
.ybb{bottom:960.613333pt;}
.y4e{bottom:960.933333pt;}
.y241{bottom:961.893333pt;}
.y100{bottom:966.053333pt;}
.y202{bottom:966.213333pt;}
.y87{bottom:970.533333pt;}
.y27a{bottom:971.493333pt;}
.y179{bottom:973.893333pt;}
.y240{bottom:974.213333pt;}
.y4d{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.yfd{bottom:982.053333pt;}
.y201{bottom:983.813333pt;}
.y86{bottom:988.133333pt;}
.y43{bottom:989.093333pt;}
.y23f{bottom:991.813333pt;}
.y8{bottom:993.733333pt;}
.y4c{bottom:996.133333pt;}
.y279{bottom:1001.413333pt;}
.y23e{bottom:1004.133333pt;}
.y85{bottom:1005.733333pt;}
.yfc{bottom:1008.293333pt;}
.y4b{bottom:1013.733333pt;}
.y23d{bottom:1021.760000pt;}
.y84{bottom:1023.360000pt;}
.yfb{bottom:1023.520000pt;}
.y200{bottom:1025.920000pt;}
.y7{bottom:1027.520000pt;}
.y1bb{bottom:1031.040000pt;}
.y4a{bottom:1031.360000pt;}
.y23c{bottom:1033.920000pt;}
.y6{bottom:1037.760000pt;}
.y82{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y47{bottom:1047.520000pt;}
.y81{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y46{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.he{height:10.678125pt;}
.h57{height:13.746667pt;}
.h5e{height:13.760000pt;}
.h5d{height:13.780000pt;}
.h58{height:13.906667pt;}
.h60{height:13.920000pt;}
.h30{height:15.186667pt;}
.h35{height:15.198667pt;}
.h1c{height:15.200000pt;}
.h2d{height:15.218667pt;}
.h22{height:15.346667pt;}
.h1e{height:15.360000pt;}
.h33{height:15.392000pt;}
.h46{height:15.506667pt;}
.h3c{height:15.520000pt;}
.h3d{height:16.000000pt;}
.h11{height:16.125000pt;}
.h47{height:17.266667pt;}
.h42{height:17.280000pt;}
.h65{height:17.746667pt;}
.h6c{height:17.758667pt;}
.h62{height:17.760000pt;}
.h68{height:17.778667pt;}
.h64{height:17.786667pt;}
.h6b{height:17.792000pt;}
.h2a{height:17.906667pt;}
.h3b{height:18.400000pt;}
.h39{height:18.420000pt;}
.h45{height:18.426667pt;}
.h43{height:19.200000pt;}
.h3f{height:19.360000pt;}
.h31{height:19.506667pt;}
.h34{height:19.518667pt;}
.h4e{height:19.712000pt;}
.h4c{height:19.826667pt;}
.h25{height:19.986667pt;}
.h1f{height:20.026667pt;}
.h40{height:20.320000pt;}
.h24{height:20.466667pt;}
.h1d{height:20.640000pt;}
.h2c{height:21.106667pt;}
.h27{height:21.266667pt;}
.h1b{height:21.280000pt;}
.h4b{height:21.586667pt;}
.h52{height:21.598667pt;}
.h51{height:21.792000pt;}
.h28{height:22.226667pt;}
.h2e{height:22.546667pt;}
.h21{height:23.186667pt;}
.h19{height:23.200000pt;}
.h4f{height:23.358667pt;}
.h13{height:24.626667pt;}
.h55{height:25.746667pt;}
.hd{height:26.368125pt;}
.hc{height:27.090000pt;}
.h59{height:28.146667pt;}
.h5c{height:28.180000pt;}
.h5a{height:28.306667pt;}
.h36{height:31.346667pt;}
.h4a{height:34.066667pt;}
.h38{height:34.420000pt;}
.h67{height:36.146667pt;}
.h3{height:36.431250pt;}
.h14{height:38.153511pt;}
.h17{height:38.413438pt;}
.h20{height:39.186667pt;}
.h29{height:39.826667pt;}
.h23{height:41.266667pt;}
.h7{height:42.084375pt;}
.h5b{height:42.706667pt;}
.h5f{height:42.720000pt;}
.h4{height:43.215000pt;}
.h6d{height:44.941250pt;}
.h2{height:47.109375pt;}
.h54{height:47.235000pt;}
.h48{height:47.346667pt;}
.h8{height:48.375000pt;}
.h4d{height:52.108438pt;}
.hf{height:52.134375pt;}
.h41{height:53.120000pt;}
.h9{height:53.535000pt;}
.h69{height:54.546667pt;}
.h3e{height:56.480000pt;}
.h61{height:57.120000pt;}
.h2f{height:57.426667pt;}
.h16{height:58.238750pt;}
.h18{height:58.345417pt;}
.h6e{height:58.563750pt;}
.hb{height:59.150000pt;}
.h12{height:59.340000pt;}
.h26{height:60.146667pt;}
.h15{height:62.812500pt;}
.h5{height:64.500000pt;}
.h56{height:71.666667pt;}
.h32{height:73.472000pt;}
.h50{height:75.465000pt;}
.h49{height:83.540625pt;}
.h3a{height:89.600000pt;}
.h66{height:91.346667pt;}
.h63{height:91.386667pt;}
.h6a{height:91.392000pt;}
.h1a{height:95.226667pt;}
.h2b{height:97.618667pt;}
.ha{height:107.715000pt;}
.h44{height:118.586667pt;}
.h37{height:127.346667pt;}
.h53{height:352.320000pt;}
.h10{height:390.106667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w11{width:67.986667pt;}
.w12{width:76.346667pt;}
.wc{width:84.026667pt;}
.w3{width:90.426667pt;}
.w10{width:96.178667pt;}
.w14{width:98.592000pt;}
.wb{width:101.906667pt;}
.w17{width:102.586667pt;}
.w16{width:107.026667pt;}
.wf{width:108.306667pt;}
.w7{width:111.218667pt;}
.we{width:116.032000pt;}
.w1c{width:127.226667pt;}
.w1a{width:128.512000pt;}
.w1b{width:129.458667pt;}
.w15{width:130.578667pt;}
.w8{width:131.546667pt;}
.w6{width:134.106667pt;}
.w20{width:143.706667pt;}
.w9{width:151.697333pt;}
.w1f{width:162.733333pt;}
.w1e{width:162.906667pt;}
.w1d{width:180.657333pt;}
.wd{width:184.657333pt;}
.w4{width:206.266667pt;}
.w13{width:210.417333pt;}
.w19{width:259.697333pt;}
.w5{width:269.297333pt;}
.wa{width:312.066667pt;}
.w2{width:569.680000pt;}
.w18{width:648.960000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xa{left:-18.400000pt;}
.x0{left:0.000000pt;}
.x10{left:7.190667pt;}
.x9{left:9.466667pt;}
.x20{left:10.560000pt;}
.x3b{left:13.536000pt;}
.x28{left:14.546667pt;}
.x2e{left:15.680000pt;}
.x2a{left:17.600000pt;}
.x2f{left:18.880000pt;}
.x1e{left:20.480000pt;}
.x32{left:22.240000pt;}
.x8{left:23.866667pt;}
.x13{left:25.266667pt;}
.x22{left:26.906667pt;}
.x2c{left:28.320000pt;}
.x24{left:30.266667pt;}
.x31{left:32.506667pt;}
.x15{left:34.400000pt;}
.x3f{left:36.786667pt;}
.x7{left:37.786667pt;}
.x37{left:38.880000pt;}
.x19{left:40.346667pt;}
.x2d{left:42.386667pt;}
.x21{left:44.160000pt;}
.x30{left:45.746667pt;}
.x23{left:47.360000pt;}
.x16{left:48.986667pt;}
.x18{left:50.720000pt;}
.x6{left:52.186667pt;}
.x17{left:54.080000pt;}
.x39{left:56.146667pt;}
.x1a{left:57.440000pt;}
.x3a{left:59.648000pt;}
.x5{left:69.466667pt;}
.x1b{left:70.441333pt;}
.x2{left:72.032000pt;}
.xb{left:96.032000pt;}
.x44{left:120.032000pt;}
.x45{left:140.666667pt;}
.x3c{left:191.013333pt;}
.x1c{left:222.146667pt;}
.x41{left:252.706667pt;}
.x25{left:256.706667pt;}
.x34{left:282.466667pt;}
.xd{left:319.746667pt;}
.x3d{left:330.146667pt;}
.x11{left:341.346667pt;}
.xf{left:356.546667pt;}
.x26{left:372.746667pt;}
.x35{left:381.066667pt;}
.xe{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x42{left:415.626667pt;}
.x3e{left:458.666667pt;}
.x12{left:475.466667pt;}
.x27{left:481.066667pt;}
.x36{left:511.653333pt;}
.xc{left:524.773333pt;}
.x1d{left:534.213333pt;}
.x29{left:577.253333pt;}
.x43{left:578.373333pt;}
.x14{left:586.693333pt;}
.x40{left:588.133333pt;}
.x38{left:618.693333pt;}
.x1f{left:636.133333pt;}
.x4{left:641.733333pt;}
.x2b{left:645.253333pt;}
.x33{left:724.160000pt;}
}




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