
    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_79af53df04fd0b67b1d5d6fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f6ecd93242a3fb579d077b61.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_20bcd610e8307da7c0aab0d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.401855;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_63e7af7c1cc9a476dc6ea300.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_9b6fb1d38ba6c74d92d11505.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3e9194229a67b165b20adc29.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_95f696240b2d8cf86af22cb2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c548f9ad26bc567f954a9bb4.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_90f95451b614b15aa758ff23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.904297;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_0544d194dd7fca0f7823b899.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e96474447a8e4665563781d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_36a0e98a3ba392bbe04cd0b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8b482bd3dc378bc7bc849ad6.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.904297;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_509d451a6af3bfb8343b0090.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.861328;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c138aa021e2278d79e27f5a4.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_38171cbe66957d4b803d3888.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-95.040000px;}
.v4{vertical-align:-33.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:30.240000px;}
.v1{vertical-align:33.120000px;}
.ls34{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.463800px;}
.lsc{letter-spacing:-0.371400px;}
.ls1b{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.346200px;}
.ls21{letter-spacing:-0.292200px;}
.ls12{letter-spacing:-0.288600px;}
.ls1c{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.268800px;}
.ls2a{letter-spacing:-0.246000px;}
.ls2e{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.214800px;}
.ls10{letter-spacing:-0.172200px;}
.ls2{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.143400px;}
.ls1f{letter-spacing:-0.132600px;}
.ls11{letter-spacing:-0.058320px;}
.ls1e{letter-spacing:-0.054720px;}
.lse{letter-spacing:-0.041040px;}
.ls1d{letter-spacing:-0.037440px;}
.lsf{letter-spacing:-0.025920px;}
.ls0{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.007200px;}
.ls26{letter-spacing:0.022320px;}
.ls29{letter-spacing:0.067200px;}
.ls2f{letter-spacing:0.072000px;}
.ls31{letter-spacing:0.120000px;}
.ls24{letter-spacing:0.121680px;}
.ls20{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.172800px;}
.ls3{letter-spacing:0.180000px;}
.ls22{letter-spacing:0.209400px;}
.ls8{letter-spacing:0.256200px;}
.ls1a{letter-spacing:0.256320px;}
.ls30{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.300000px;}
.ls15{letter-spacing:0.330000px;}
.ls27{letter-spacing:0.358560px;}
.ls1{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.433440px;}
.ls18{letter-spacing:0.479520px;}
.ls35{letter-spacing:0.567600px;}
.ls14{letter-spacing:0.599520px;}
.ls16{letter-spacing:0.660000px;}
.ls19{letter-spacing:0.661680px;}
.ls7{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.792000px;}
.ls32{letter-spacing:0.864000px;}
.lsd{letter-spacing:0.936000px;}
.ls2d{letter-spacing:1.080000px;}
.ls2c{letter-spacing:10.800000px;}
.ls5{letter-spacing:18.900000px;}
.ls6{letter-spacing:19.440000px;}
.ls9{letter-spacing:1255.260000px;}
.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:-66.240000px;}
.wse{word-spacing:-59.760000px;}
.ws9{word-spacing:-18.936000px;}
.ws28{word-spacing:-18.864000px;}
.ws3{word-spacing:-18.792000px;}
.ws27{word-spacing:-18.288000px;}
.ws29{word-spacing:-18.144000px;}
.ws26{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.856000px;}
.ws2a{word-spacing:-17.784000px;}
.ws18{word-spacing:-17.712000px;}
.ws2d{word-spacing:-17.127600px;}
.ws2c{word-spacing:-16.560000px;}
.ws2b{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.226440px;}
.ws6{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.944320px;}
.ws19{word-spacing:-14.932800px;}
.ws1a{word-spacing:-14.915520px;}
.ws1b{word-spacing:-14.837640px;}
.ws8{word-spacing:-14.598840px;}
.ws7{word-spacing:-14.506440px;}
.ws1c{word-spacing:-14.319360px;}
.ws13{word-spacing:-14.165760px;}
.ws12{word-spacing:-13.835760px;}
.ws1e{word-spacing:-13.715160px;}
.ws20{word-spacing:-13.572960px;}
.wsd{word-spacing:-13.505760px;}
.wsa{word-spacing:-13.464720px;}
.wsf{word-spacing:-13.447440px;}
.ws11{word-spacing:-13.362360px;}
.wsc{word-spacing:-13.333560px;}
.ws1f{word-spacing:-13.290960px;}
.ws21{word-spacing:-13.259760px;}
.ws22{word-spacing:-13.236960px;}
.ws10{word-spacing:-13.217160px;}
.ws14{word-spacing:-13.159560px;}
.ws25{word-spacing:-13.140000px;}
.ws16{word-spacing:-12.420000px;}
.ws15{word-spacing:-12.060000px;}
.ws17{word-spacing:-11.700000px;}
.ws23{word-spacing:-10.924560px;}
.ws24{word-spacing:-10.902240px;}
.ws1d{word-spacing:-9.145560px;}
.ws1{word-spacing:0.000000px;}
._d{margin-left:-2.316000px;}
._0{margin-left:-1.296000px;}
._1{width:1.008000px;}
._c{width:2.592000px;}
._f{width:4.128000px;}
._5{width:5.952000px;}
._4{width:7.200000px;}
._e{width:10.164000px;}
._b{width:11.460000px;}
._a{width:12.672000px;}
._9{width:19.128000px;}
._8{width:20.160000px;}
._3{width:34.128000px;}
._2{width:35.712000px;}
._7{width:37.728000px;}
._6{width:39.312000px;}
._11{width:133.176000px;}
._10{width:194.376000px;}
.fc6{color:rgb(75,172,198);}
.fc5{color:rgb(31,73,125);}
.fc3{color:rgb(79,129,189);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(255,0,0);}
.fc4{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y81{bottom:-4.335000px;}
.y9e{bottom:-4.320000px;}
.y8b{bottom:-4.147500px;}
.y93{bottom:-4.140000px;}
.y0{bottom:0.000000px;}
.y177{bottom:3.945000px;}
.y156{bottom:3.960000px;}
.y175{bottom:4.125000px;}
.y152{bottom:4.140000px;}
.y14f{bottom:4.320000px;}
.ybd{bottom:4.672500px;}
.yc1{bottom:4.680000px;}
.y80{bottom:5.745000px;}
.y5b{bottom:5.760000px;}
.y8a{bottom:5.926500px;}
.y92{bottom:5.940000px;}
.y86{bottom:6.105000px;}
.y5f{bottom:6.120000px;}
.yb4{bottom:6.150000px;}
.yd3{bottom:6.165000px;}
.y83{bottom:6.285000px;}
.y68{bottom:6.300000px;}
.y10b{bottom:6.480000px;}
.y116{bottom:6.660000px;}
.y120{bottom:6.840000px;}
.y1a6{bottom:7.380000px;}
.y87{bottom:7.545000px;}
.y1a1{bottom:7.552500px;}
.y60{bottom:7.560000px;}
.yb5{bottom:7.590000px;}
.y113{bottom:7.605000px;}
.y84{bottom:7.725000px;}
.y62{bottom:7.740000px;}
.ya8{bottom:7.770000px;}
.yd4{bottom:7.785000px;}
.y117{bottom:8.100000px;}
.y10d{bottom:8.280000px;}
.y114{bottom:8.325000px;}
.y131{bottom:8.640000px;}
.y118{bottom:9.360000px;}
.y126{bottom:10.620000px;}
.y153{bottom:13.140000px;}
.y168{bottom:13.170000px;}
.y173{bottom:13.305000px;}
.y15f{bottom:13.320000px;}
.y14c{bottom:14.040000px;}
.ybb{bottom:14.572500px;}
.y1d3{bottom:14.580000px;}
.y1d0{bottom:14.760000px;}
.yc2{bottom:14.790000px;}
.ybe{bottom:16.186500px;}
.yc3{bottom:16.410000px;}
.y13c{bottom:17.820000px;}
.y11e{bottom:18.000000px;}
.y109{bottom:18.540000px;}
.y151{bottom:22.320000px;}
.y167{bottom:22.350000px;}
.y15a{bottom:22.365000px;}
.y174{bottom:22.485000px;}
.y160{bottom:22.500000px;}
.y1ce{bottom:22.680000px;}
.y14d{bottom:23.580000px;}
.ybc{bottom:24.646500px;}
.yc0{bottom:24.870000px;}
.y13b{bottom:27.720000px;}
.y146{bottom:27.900000px;}
.y147{bottom:29.340000px;}
.y15b{bottom:31.545000px;}
.y17a{bottom:32.400000px;}
.y14b{bottom:33.300000px;}
.y159{bottom:40.725000px;}
.y14e{bottom:42.840000px;}
.y145{bottom:51.120000px;}
.y158{bottom:59.085000px;}
.y2{bottom:75.456000px;}
.y1b{bottom:75.636000px;}
.y1{bottom:113.616000px;}
.y1a{bottom:113.796000px;}
.yba{bottom:135.403500px;}
.y1a0{bottom:138.283500px;}
.y249{bottom:138.456000px;}
.y201{bottom:142.956000px;}
.y76{bottom:146.203500px;}
.y1ed{bottom:146.736000px;}
.y9{bottom:149.076000px;}
.y77{bottom:156.811500px;}
.y20a{bottom:158.070000px;}
.y19f{bottom:160.785000px;}
.y89{bottom:169.425000px;}
.yb9{bottom:177.165000px;}
.y8{bottom:180.030000px;}
.y200{bottom:184.530000px;}
.y19e{bottom:184.725000px;}
.y1ec{bottom:188.130000px;}
.y248{bottom:192.630000px;}
.y88{bottom:192.645000px;}
.y209{bottom:199.470000px;}
.y178{bottom:199.485000px;}
.yb8{bottom:200.205000px;}
.y19d{bottom:207.225000px;}
.y7{bottom:211.170000px;}
.y22e{bottom:212.250000px;}
.y85{bottom:215.865000px;}
.y176{bottom:217.845000px;}
.yb7{bottom:223.425000px;}
.y1ff{bottom:225.930000px;}
.y104{bottom:227.910000px;}
.y1eb{bottom:229.530000px;}
.y19c{bottom:229.725000px;}
.y247{bottom:230.790000px;}
.y172{bottom:236.025000px;}
.y5d{bottom:237.810000px;}
.y82{bottom:238.905000px;}
.y215{bottom:240.870000px;}
.y6{bottom:241.770000px;}
.yb6{bottom:246.645000px;}
.y22d{bottom:250.230000px;}
.y103{bottom:251.670000px;}
.yc6{bottom:251.820000px;}
.y19b{bottom:252.225000px;}
.y149{bottom:253.155000px;}
.y208{bottom:255.630000px;}
.y7f{bottom:262.125000px;}
.y19{bottom:266.250000px;}
.y1fe{bottom:267.330000px;}
.y246{bottom:268.590000px;}
.yb3{bottom:270.585000px;}
.y1ea{bottom:270.930000px;}
.yc5{bottom:271.845000px;}
.y171{bottom:272.775000px;}
.y19a{bottom:274.755000px;}
.y102{bottom:275.475000px;}
.y43{bottom:277.635000px;}
.y148{bottom:277.815000px;}
.y1c7{bottom:281.415000px;}
.y214{bottom:282.315000px;}
.y7e{bottom:285.375000px;}
.y5{bottom:287.895000px;}
.y22c{bottom:288.255000px;}
.y170{bottom:291.855000px;}
.yb2{bottom:293.655000px;}
.y199{bottom:297.255000px;}
.y18{bottom:297.435000px;}
.y101{bottom:299.235000px;}
.y144{bottom:302.475000px;}
.y245{bottom:306.615000px;}
.y4{bottom:307.875000px;}
.y42{bottom:308.595000px;}
.y1fd{bottom:308.775000px;}
.y16f{bottom:310.035000px;}
.y1e9{bottom:312.375000px;}
.yb1{bottom:316.875000px;}
.y100{bottom:317.595000px;}
.y1c6{bottom:319.575000px;}
.y198{bottom:319.755000px;}
.y213{bottom:323.715000px;}
.y22b{bottom:326.235000px;}
.y17{bottom:328.395000px;}
.y26{bottom:330.375000px;}
.y7d{bottom:331.635000px;}
.y53{bottom:336.855000px;}
.y1c5{bottom:337.395000px;}
.y207{bottom:338.655000px;}
.y41{bottom:340.095000px;}
.yff{bottom:341.535000px;}
.y197{bottom:342.255000px;}
.y244{bottom:344.595000px;}
.y16e{bottom:346.755000px;}
.y1fc{bottom:350.175000px;}
.y1e8{bottom:353.775000px;}
.y7c{bottom:354.855000px;}
.y16{bottom:359.355000px;}
.y1c4{bottom:359.895000px;}
.yb0{bottom:363.315000px;}
.yfe{bottom:364.035000px;}
.y212{bottom:365.115000px;}
.y196{bottom:366.195000px;}
.y52{bottom:367.635000px;}
.y143{bottom:369.075000px;}
.y40{bottom:370.695000px;}
.y25{bottom:376.815000px;}
.y7b{bottom:378.075000px;}
.y45{bottom:378.435000px;}
.y206{bottom:380.055000px;}
.y1c3{bottom:382.395000px;}
.y243{bottom:382.575000px;}
.y16d{bottom:383.295000px;}
.yfd{bottom:386.535000px;}
.yaf{bottom:387.255000px;}
.y195{bottom:388.695000px;}
.y15{bottom:390.135000px;}
.y1fb{bottom:391.395000px;}
.y142{bottom:392.865000px;}
.y51{bottom:394.635000px;}
.y1e7{bottom:395.175000px;}
.y7a{bottom:401.295000px;}
.y16c{bottom:401.655000px;}
.y3f{bottom:401.835000px;}
.y22a{bottom:402.015000px;}
.y1c2{bottom:404.895000px;}
.y211{bottom:406.515000px;}
.y24{bottom:407.775000px;}
.y44{bottom:409.035000px;}
.yae{bottom:410.295000px;}
.y1d5{bottom:410.865000px;}
.y194{bottom:411.195000px;}
.y141{bottom:417.525000px;}
.y242{bottom:420.555000px;}
.y205{bottom:421.455000px;}
.y79{bottom:424.335000px;}
.y14{bottom:425.055000px;}
.y1c1{bottom:427.395000px;}
.y57{bottom:428.475000px;}
.yfc{bottom:431.535000px;}
.y3e{bottom:432.795000px;}
.yad{bottom:433.515000px;}
.y193{bottom:433.695000px;}
.y217{bottom:436.035000px;}
.y1e6{bottom:436.395000px;}
.y16b{bottom:438.375000px;}
.y23{bottom:438.915000px;}
.y229{bottom:439.995000px;}
.y140{bottom:440.745000px;}
.y1d4{bottom:442.545000px;}
.y78{bottom:447.555000px;}
.y210{bottom:447.915000px;}
.y1c0{bottom:449.895000px;}
.y56{bottom:452.415000px;}
.yfb{bottom:455.475000px;}
.y192{bottom:456.195000px;}
.yac{bottom:456.735000px;}
.y241{bottom:458.355000px;}
.y204{bottom:462.855000px;}
.y3d{bottom:463.935000px;}
.y13f{bottom:463.965000px;}
.y22{bottom:469.875000px;}
.y5c{bottom:472.215000px;}
.y1bf{bottom:472.395000px;}
.y1d2{bottom:472.785000px;}
.y16a{bottom:474.915000px;}
.y55{bottom:475.815000px;}
.y216{bottom:477.435000px;}
.y1e5{bottom:477.795000px;}
.yfa{bottom:477.975000px;}
.y191{bottom:478.695000px;}
.yab{bottom:479.775000px;}
.y13e{bottom:487.185000px;}
.y1fa{bottom:489.135000px;}
.y20f{bottom:489.315000px;}
.y3c{bottom:494.895000px;}
.y75{bottom:495.435000px;}
.y240{bottom:496.335000px;}
.y1be{bottom:496.515000px;}
.yf9{bottom:500.475000px;}
.y21{bottom:501.015000px;}
.y190{bottom:501.195000px;}
.y54{bottom:502.815000px;}
.y1d1{bottom:502.845000px;}
.yaa{bottom:502.995000px;}
.y203{bottom:504.255000px;}
.y13d{bottom:510.225000px;}
.y169{bottom:511.455000px;}
.y228{bottom:515.955000px;}
.y74{bottom:518.475000px;}
.y1bd{bottom:519.015000px;}
.y1e4{bottom:519.195000px;}
.y50{bottom:521.535000px;}
.yf8{bottom:522.975000px;}
.y18f{bottom:525.315000px;}
.y3b{bottom:526.035000px;}
.ya9{bottom:526.215000px;}
.y1f9{bottom:530.715000px;}
.y20{bottom:531.975000px;}
.y1cf{bottom:533.085000px;}
.y13a{bottom:533.445000px;}
.y23f{bottom:534.315000px;}
.y1bc{bottom:541.515000px;}
.y73{bottom:541.695000px;}
.yf7{bottom:547.095000px;}
.y18e{bottom:547.815000px;}
.y166{bottom:548.175000px;}
.ya7{bottom:549.435000px;}
.y4f{bottom:552.855000px;}
.y227{bottom:553.755000px;}
.y3a{bottom:557.025000px;}
.y202{bottom:560.445000px;}
.y1e3{bottom:560.625000px;}
.y1f{bottom:563.145000px;}
.y1bb{bottom:564.045000px;}
.y1cd{bottom:564.765000px;}
.y72{bottom:564.945000px;}
.yf6{bottom:569.625000px;}
.y18d{bottom:571.785000px;}
.y1f8{bottom:572.145000px;}
.y23e{bottom:572.325000px;}
.ya6{bottom:573.405000px;}
.y139{bottom:577.545000px;}
.yc4{bottom:580.245000px;}
.y4e{bottom:584.025000px;}
.y165{bottom:584.745000px;}
.y1ba{bottom:586.545000px;}
.y71{bottom:587.985000px;}
.y39{bottom:588.165000px;}
.y226{bottom:591.765000px;}
.yf5{bottom:592.125000px;}
.y12{bottom:593.025000px;}
.y1e{bottom:594.105000px;}
.y18c{bottom:594.285000px;}
.ya5{bottom:596.625000px;}
.y1e2{bottom:602.025000px;}
.y138{bottom:602.250000px;}
.y164{bottom:603.105000px;}
.yde{bottom:603.465000px;}
.y23d{bottom:610.305000px;}
.y1b9{bottom:610.485000px;}
.y70{bottom:611.205000px;}
.y1f7{bottom:613.545000px;}
.y4d{bottom:614.625000px;}
.yf4{bottom:616.065000px;}
.y18b{bottom:616.785000px;}
.y11{bottom:616.965000px;}
.y38{bottom:619.125000px;}
.ya4{bottom:619.665000px;}
.y1d{bottom:624.885000px;}
.ydd{bottom:626.505000px;}
.y225{bottom:629.745000px;}
.y1cc{bottom:629.970000px;}
.y1b8{bottom:632.985000px;}
.y6f{bottom:634.425000px;}
.yf3{bottom:638.565000px;}
.y163{bottom:639.645000px;}
.y18a{bottom:640.365000px;}
.y10{bottom:640.725000px;}
.ya3{bottom:642.885000px;}
.y1e1{bottom:643.425000px;}
.y4c{bottom:645.765000px;}
.y23c{bottom:648.285000px;}
.ydc{bottom:649.725000px;}
.y37{bottom:650.265000px;}
.y4a{bottom:652.065000px;}
.y1cb{bottom:653.730000px;}
.y20e{bottom:654.585000px;}
.y1f6{bottom:654.945000px;}
.y1b7{bottom:655.485000px;}
.y137{bottom:655.890000px;}
.y6e{bottom:657.465000px;}
.y162{bottom:658.005000px;}
.yf2{bottom:661.065000px;}
.y189{bottom:662.865000px;}
.y1c{bottom:663.585000px;}
.y4b{bottom:665.565000px;}
.ya2{bottom:666.105000px;}
.y224{bottom:667.725000px;}
.ydb{bottom:672.945000px;}
.y1ca{bottom:677.670000px;}
.y1b6{bottom:677.985000px;}
.y6d{bottom:680.685000px;}
.y36{bottom:681.225000px;}
.y49{bottom:683.025000px;}
.yf1{bottom:683.565000px;}
.y1e0{bottom:684.825000px;}
.y188{bottom:685.365000px;}
.y23b{bottom:686.085000px;}
.y136{bottom:686.850000px;}
.yf{bottom:687.165000px;}
.ya1{bottom:690.045000px;}
.y161{bottom:694.725000px;}
.y20d{bottom:695.985000px;}
.y1f5{bottom:696.345000px;}
.yda{bottom:696.885000px;}
.y1b5{bottom:700.485000px;}
.y1c9{bottom:701.430000px;}
.y6c{bottom:703.905000px;}
.y223{bottom:705.705000px;}
.yf0{bottom:706.065000px;}
.y187{bottom:709.305000px;}
.y35{bottom:712.365000px;}
.ya0{bottom:713.265000px;}
.y48{bottom:713.805000px;}
.y135{bottom:717.990000px;}
.ye{bottom:718.125000px;}
.yd9{bottom:719.925000px;}
.y1b4{bottom:722.985000px;}
.y23a{bottom:724.065000px;}
.y1c8{bottom:725.190000px;}
.y1df{bottom:726.225000px;}
.y6b{bottom:726.945000px;}
.yef{bottom:728.565000px;}
.y15e{bottom:731.265000px;}
.y186{bottom:731.805000px;}
.y9f{bottom:736.305000px;}
.y1f4{bottom:737.745000px;}
.yd8{bottom:743.145000px;}
.y34{bottom:743.325000px;}
.y222{bottom:743.685000px;}
.y47{bottom:744.765000px;}
.y1b3{bottom:746.925000px;}
.yd{bottom:748.905000px;}
.y134{bottom:748.950000px;}
.y6a{bottom:750.165000px;}
.yee{bottom:751.065000px;}
.y20c{bottom:752.505000px;}
.y185{bottom:754.305000px;}
.y9d{bottom:759.525000px;}
.y239{bottom:762.045000px;}
.y46{bottom:764.565000px;}
.yd7{bottom:766.365000px;}
.y1de{bottom:767.625000px;}
.y15d{bottom:767.985000px;}
.y1b2{bottom:769.425000px;}
.yc{bottom:772.665000px;}
.y69{bottom:773.385000px;}
.yed{bottom:773.565000px;}
.y33{bottom:774.465000px;}
.y184{bottom:776.805000px;}
.y1f3{bottom:779.145000px;}
.y221{bottom:781.485000px;}
.y9c{bottom:782.745000px;}
.yd6{bottom:789.405000px;}
.y119{bottom:790.305000px;}
.y1b1{bottom:791.925000px;}
.yb{bottom:792.465000px;}
.yec{bottom:796.065000px;}
.y67{bottom:796.425000px;}
.y183{bottom:799.305000px;}
.y238{bottom:800.025000px;}
.y15c{bottom:804.525000px;}
.y32{bottom:805.425000px;}
.y9b{bottom:805.965000px;}
.y115{bottom:808.305000px;}
.y20b{bottom:808.845000px;}
.y1dd{bottom:809.025000px;}
.yd5{bottom:812.805000px;}
.y1b0{bottom:814.425000px;}
.yeb{bottom:818.565000px;}
.y220{bottom:819.465000px;}
.y66{bottom:819.645000px;}
.y1f2{bottom:820.545000px;}
.y182{bottom:821.805000px;}
.y128{bottom:822.525000px;}
.y157{bottom:822.885000px;}
.y9a{bottom:829.005000px;}
.y112{bottom:831.885000px;}
.yd2{bottom:835.845000px;}
.y31{bottom:836.565000px;}
.y1af{bottom:836.925000px;}
.y237{bottom:838.005000px;}
.yea{bottom:841.110000px;}
.y65{bottom:842.910000px;}
.y181{bottom:844.350000px;}
.y127{bottom:846.330000px;}
.y133{bottom:848.850000px;}
.y1dc{bottom:850.470000px;}
.y99{bottom:852.270000px;}
.y111{bottom:854.430000px;}
.y21f{bottom:857.490000px;}
.yd1{bottom:859.110000px;}
.y1ae{bottom:859.470000px;}
.y1f1{bottom:861.990000px;}
.ye9{bottom:863.610000px;}
.y125{bottom:864.330000px;}
.y64{bottom:866.130000px;}
.y180{bottom:866.850000px;}
.y132{bottom:867.030000px;}
.y30{bottom:867.570000px;}
.y236{bottom:875.850000px;}
.y98{bottom:876.210000px;}
.y218{bottom:876.570000px;}
.y110{bottom:876.930000px;}
.y1ad{bottom:881.970000px;}
.yd0{bottom:882.330000px;}
.ye8{bottom:887.550000px;}
.y130{bottom:888.090000px;}
.y63{bottom:889.170000px;}
.y17f{bottom:889.350000px;}
.y1db{bottom:891.870000px;}
.y21e{bottom:895.470000px;}
.y155{bottom:896.190000px;}
.y2f{bottom:898.710000px;}
.y97{bottom:899.430000px;}
.y1ac{bottom:904.470000px;}
.ycf{bottom:905.370000px;}
.ye7{bottom:910.050000px;}
.y17e{bottom:911.850000px;}
.y61{bottom:912.390000px;}
.y12f{bottom:912.930000px;}
.y235{bottom:913.830000px;}
.y1f0{bottom:917.790000px;}
.y10f{bottom:921.930000px;}
.y96{bottom:922.470000px;}
.y1ab{bottom:926.970000px;}
.yce{bottom:928.590000px;}
.y2e{bottom:929.670000px;}
.y124{bottom:931.110000px;}
.ye6{bottom:932.550000px;}
.y154{bottom:932.730000px;}
.y1da{bottom:933.270000px;}
.y21d{bottom:933.450000px;}
.y12e{bottom:933.990000px;}
.y17d{bottom:934.350000px;}
.y5e{bottom:935.610000px;}
.y10e{bottom:944.430000px;}
.y95{bottom:945.690000px;}
.y150{bottom:951.090000px;}
.y234{bottom:951.810000px;}
.y123{bottom:952.170000px;}
.ycd{bottom:952.530000px;}
.ye5{bottom:955.050000px;}
.y179{bottom:958.470000px;}
.y5a{bottom:960.270000px;}
.y2d{bottom:960.810000px;}
.y10c{bottom:966.930000px;}
.y94{bottom:968.910000px;}
.y21c{bottom:971.250000px;}
.y122{bottom:973.230000px;}
.y1aa{bottom:973.590000px;}
.y1ef{bottom:974.130000px;}
.y1d9{bottom:974.670000px;}
.ycc{bottom:975.570000px;}
.y12d{bottom:976.110000px;}
.ye4{bottom:977.550000px;}
.y17c{bottom:982.050000px;}
.y14a{bottom:989.250000px;}
.y233{bottom:989.790000px;}
.y108{bottom:990.870000px;}
.y2c{bottom:991.770000px;}
.y91{bottom:991.950000px;}
.y121{bottom:994.290000px;}
.y1a9{bottom:996.090000px;}
.y12c{bottom:997.170000px;}
.ycb{bottom:998.790000px;}
.ye3{bottom:1000.050000px;}
.y59{bottom:1006.530000px;}
.y17b{bottom:1007.250000px;}
.y21b{bottom:1009.230000px;}
.y90{bottom:1015.350000px;}
.y10a{bottom:1015.530000px;}
.y1d8{bottom:1016.070000px;}
.y11d{bottom:1016.250000px;}
.y12b{bottom:1018.230000px;}
.y1a8{bottom:1018.590000px;}
.yca{bottom:1022.010000px;}
.ye2{bottom:1022.550000px;}
.y2b{bottom:1022.730000px;}
.y232{bottom:1027.770000px;}
.y58{bottom:1037.310000px;}
.y8f{bottom:1038.390000px;}
.y11f{bottom:1038.750000px;}
.y129{bottom:1040.010000px;}
.y1a7{bottom:1041.090000px;}
.yc9{bottom:1045.230000px;}
.ye1{bottom:1046.670000px;}
.y107{bottom:1047.030000px;}
.y21a{bottom:1047.210000px;}
.y2a{bottom:1053.870000px;}
.y1d7{bottom:1057.470000px;}
.y8e{bottom:1061.610000px;}
.y12a{bottom:1062.510000px;}
.y1a5{bottom:1063.590000px;}
.y231{bottom:1065.750000px;}
.yc8{bottom:1068.450000px;}
.y11c{bottom:1068.630000px;}
.ye0{bottom:1077.630000px;}
.y106{bottom:1077.990000px;}
.y29{bottom:1084.830000px;}
.y219{bottom:1085.190000px;}
.y1a4{bottom:1087.530000px;}
.yc7{bottom:1091.490000px;}
.y11b{bottom:1092.570000px;}
.y1d6{bottom:1098.510000px;}
.y1ee{bottom:1098.870000px;}
.y230{bottom:1103.550000px;}
.y8d{bottom:1108.590000px;}
.ydf{bottom:1108.770000px;}
.y105{bottom:1109.130000px;}
.y1a3{bottom:1110.030000px;}
.y28{bottom:1115.970000px;}
.ybf{bottom:1116.150000px;}
.y11a{bottom:1116.330000px;}
.y8c{bottom:1131.840000px;}
.y1a2{bottom:1132.560000px;}
.y27{bottom:1139.760000px;}
.ya{bottom:1139.940000px;}
.y3{bottom:1140.120000px;}
.y13{bottom:1140.300000px;}
.y22f{bottom:1141.560000px;}
.h35{height:18.165000px;}
.h2e{height:18.345000px;}
.h30{height:18.360000px;}
.h21{height:20.865000px;}
.h20{height:21.045000px;}
.h8{height:22.485000px;}
.h13{height:22.492500px;}
.h14{height:22.500000px;}
.h12{height:22.521000px;}
.h19{height:22.522500px;}
.h1a{height:22.530000px;}
.hb{height:23.025000px;}
.hf{height:23.040000px;}
.h15{height:23.061000px;}
.h26{height:23.062500px;}
.h28{height:23.070000px;}
.hc{height:23.205000px;}
.he{height:23.220000px;}
.hd{height:23.242500px;}
.h10{height:23.250000px;}
.h38{height:23.565000px;}
.h1e{height:23.580000px;}
.h22{height:24.825000px;}
.h3b{height:30.060000px;}
.h3a{height:30.240000px;}
.h2d{height:36.525000px;}
.h31{height:36.540000px;}
.h33{height:36.570000px;}
.h34{height:36.705000px;}
.h32{height:36.720000px;}
.h36{height:36.741000px;}
.h16{height:40.132500px;}
.h17{height:40.350000px;}
.h1d{height:42.894141px;}
.h27{height:43.200000px;}
.h1c{height:43.390195px;}
.h1f{height:43.545000px;}
.h2b{height:46.004062px;}
.h1b{height:47.145000px;}
.h2{height:47.545312px;}
.h9{height:48.095156px;}
.h39{height:56.182500px;}
.h2a{height:57.585000px;}
.h2c{height:60.560859px;}
.h3d{height:64.546875px;}
.h40{height:65.010937px;}
.h29{height:66.585000px;}
.h41{height:66.757500px;}
.h3c{height:70.628906px;}
.h5{height:70.664062px;}
.h37{height:72.345000px;}
.h4{height:72.562500px;}
.h2f{height:73.282500px;}
.h7{height:75.093750px;}
.h3f{height:80.440922px;}
.h6{height:80.464922px;}
.h3e{height:80.644922px;}
.h25{height:81.736875px;}
.h3{height:84.898125px;}
.h11{height:324.562500px;}
.ha{height:486.420000px;}
.h18{height:534.450000px;}
.h23{height:892.980000px;}
.h24{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2c{width:37.065000px;}
.w35{width:37.101000px;}
.w36{width:37.245000px;}
.w50{width:37.281000px;}
.w30{width:41.760000px;}
.w4b{width:41.940000px;}
.w2b{width:44.805000px;}
.w2a{width:45.525000px;}
.w2d{width:45.561000px;}
.w37{width:47.685000px;}
.w2f{width:50.040000px;}
.w4a{width:50.220000px;}
.w4c{width:52.020000px;}
.w31{width:52.200000px;}
.w33{width:52.725000px;}
.w4e{width:52.776000px;}
.w4{width:57.945000px;}
.w44{width:57.960000px;}
.w42{width:57.981000px;}
.w4f{width:58.485000px;}
.w34{width:58.665000px;}
.w38{width:62.805000px;}
.w32{width:64.296000px;}
.w21{width:64.425000px;}
.w4d{width:64.440000px;}
.w25{width:64.965000px;}
.w23{width:65.160000px;}
.w18{width:65.505000px;}
.w1a{width:65.520000px;}
.w51{width:69.105000px;}
.w7{width:71.985000px;}
.w49{width:75.441000px;}
.w2e{width:75.600000px;}
.wb{width:77.025000px;}
.wc{width:77.241000px;}
.w5{width:78.825000px;}
.w6{width:78.861000px;}
.w14{width:87.829500px;}
.w12{width:90.756000px;}
.w39{width:93.049500px;}
.wa{width:93.225000px;}
.w48{width:95.254500px;}
.w3b{width:95.616000px;}
.w43{width:95.760000px;}
.w45{width:95.976000px;}
.w10{width:97.761000px;}
.w1d{width:100.789500px;}
.w46{width:107.265000px;}
.w47{width:107.301000px;}
.wd{width:109.609500px;}
.w24{width:115.776000px;}
.w1b{width:116.496000px;}
.w26{width:119.541000px;}
.w22{width:123.321000px;}
.w19{width:123.861000px;}
.w1c{width:130.701000px;}
.w3d{width:131.749500px;}
.w2{width:146.329500px;}
.w29{width:148.354500px;}
.w9{width:150.870000px;}
.w40{width:153.735000px;}
.w41{width:153.930000px;}
.w11{width:170.820000px;}
.w1f{width:180.930000px;}
.w16{width:182.010000px;}
.w20{width:184.515000px;}
.w13{width:185.235000px;}
.w1e{width:187.755000px;}
.w15{width:189.375000px;}
.w17{width:196.215000px;}
.w3f{width:214.575000px;}
.w3a{width:223.395000px;}
.w8{width:255.619500px;}
.w3{width:265.740000px;}
.we{width:268.575000px;}
.wf{width:276.015000px;}
.w3c{width:297.735000px;}
.w3e{width:307.680000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w27{width:1262.880000px;}
.w28{width:1263.000000px;}
.x0{left:0.000000px;}
.x11{left:8.089500px;}
.x58{left:9.525000px;}
.x6d{left:10.980000px;}
.x1c{left:12.225000px;}
.x4d{left:13.680000px;}
.x4e{left:15.105000px;}
.x1b{left:16.365000px;}
.x16{left:17.445000px;}
.x71{left:18.705000px;}
.x35{left:19.785000px;}
.x18{left:21.225000px;}
.x14{left:23.565000px;}
.x50{left:25.200000px;}
.x4f{left:26.985000px;}
.x1d{left:28.440000px;}
.x31{left:29.505000px;}
.x1a{left:31.500000px;}
.x75{left:32.760000px;}
.x33{left:33.870000px;}
.x1f{left:36.000000px;}
.x3d{left:37.245000px;}
.x7c{left:38.325000px;}
.x1e{left:39.405000px;}
.x42{left:40.860000px;}
.x2f{left:42.105000px;}
.x7d{left:44.130000px;}
.x37{left:46.605000px;}
.x43{left:48.045000px;}
.x7e{left:49.845000px;}
.x56{left:52.050000px;}
.x7{left:53.100000px;}
.x49{left:56.010000px;}
.x4c{left:59.430000px;}
.x38{left:62.820000px;}
.x36{left:66.960000px;}
.x34{left:71.100000px;}
.x3f{left:78.840000px;}
.x53{left:82.425000px;}
.x81{left:84.961500px;}
.x41{left:86.745000px;}
.x47{left:88.365000px;}
.x80{left:95.760000px;}
.x5b{left:98.281500px;}
.x3c{left:103.350000px;}
.x5a{left:106.380000px;}
.x3a{left:108.750000px;}
.x10{left:119.566500px;}
.x2c{left:121.710000px;}
.x2{left:127.656000px;}
.x74{left:129.585000px;}
.x25{left:144.570000px;}
.x9{left:148.896000px;}
.x26{left:152.670000px;}
.x2a{left:153.930000px;}
.x29{left:162.750000px;}
.x27{left:165.450000px;}
.x28{left:168.690000px;}
.x8{left:170.130000px;}
.x82{left:180.225000px;}
.x95{left:181.650000px;}
.x22{left:203.250000px;}
.x44{left:206.685000px;}
.x21{left:209.370000px;}
.x24{left:211.170000px;}
.x72{left:212.625000px;}
.x20{left:219.090000px;}
.x51{left:220.365000px;}
.x2b{left:223.230000px;}
.x23{left:224.670000px;}
.x83{left:225.765000px;}
.x39{left:229.005000px;}
.x5c{left:246.645000px;}
.x76{left:251.325000px;}
.x84{left:262.845000px;}
.x12{left:265.905000px;}
.x48{left:272.205000px;}
.x54{left:284.805000px;}
.x5d{left:292.185000px;}
.x85{left:307.665000px;}
.x79{left:309.315000px;}
.x3e{left:326.775000px;}
.x5e{left:337.725000px;}
.x86{left:344.745000px;}
.x3{left:367.815000px;}
.x2d{left:375.195000px;}
.x5f{left:382.545000px;}
.x45{left:396.075000px;}
.x78{left:405.075000px;}
.x52{left:408.135000px;}
.x60{left:419.625000px;}
.x73{left:436.035000px;}
.xd{left:438.195000px;}
.x1{left:442.335000px;}
.xf{left:446.475000px;}
.x87{left:457.455000px;}
.x4a{left:461.595000px;}
.x7a{left:463.035000px;}
.x61{left:465.195000px;}
.x55{left:473.295000px;}
.x3b{left:497.595000px;}
.x88{left:507.675000px;}
.x2e{left:526.080000px;}
.x13{left:531.660000px;}
.x62{left:540.795000px;}
.x89{left:549.615000px;}
.x77{left:559.020000px;}
.x46{left:578.100000px;}
.x40{left:588.360000px;}
.x15{left:589.620000px;}
.x63{left:590.835000px;}
.x8a{left:601.635000px;}
.x7f{left:617.835000px;}
.x30{left:619.320000px;}
.x59{left:623.055000px;}
.x64{left:632.595000px;}
.x6{left:641.805000px;}
.x4b{left:643.620000px;}
.x4{left:651.705000px;}
.x57{left:654.060000px;}
.x7b{left:666.300000px;}
.x17{left:668.460000px;}
.x65{left:684.795000px;}
.xc{left:686.445000px;}
.x5{left:689.505000px;}
.x32{left:696.360000px;}
.x8b{left:718.860000px;}
.xe{left:728.610000px;}
.x19{left:747.330000px;}
.x66{left:749.100000px;}
.x8c{left:777.360000px;}
.x67{left:801.840000px;}
.x8d{left:814.620000px;}
.xb{left:823.290000px;}
.x8e{left:851.700000px;}
.x68{left:860.520000px;}
.xa{left:864.510000px;}
.x8f{left:888.960000px;}
.x69{left:897.600000px;}
.x90{left:926.220000px;}
.x6a{left:943.140000px;}
.x91{left:963.300000px;}
.x6b{left:980.220000px;}
.x92{left:1000.590000px;}
.x6c{left:1017.330000px;}
.x93{left:1048.290000px;}
.x6e{left:1054.410000px;}
.x6f{left:1091.670000px;}
.x94{left:1111.110000px;}
.x70{left:1139.370000px;}
@media print{
.v2{vertical-align:-84.480000pt;}
.v4{vertical-align:-29.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:26.880000pt;}
.v1{vertical-align:29.440000pt;}
.ls34{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.412267pt;}
.lsc{letter-spacing:-0.330133pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.307733pt;}
.ls21{letter-spacing:-0.259733pt;}
.ls12{letter-spacing:-0.256533pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.238933pt;}
.ls2a{letter-spacing:-0.218667pt;}
.ls2e{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.190933pt;}
.ls10{letter-spacing:-0.153067pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.127467pt;}
.ls1f{letter-spacing:-0.117867pt;}
.ls11{letter-spacing:-0.051840pt;}
.ls1e{letter-spacing:-0.048640pt;}
.lse{letter-spacing:-0.036480pt;}
.ls1d{letter-spacing:-0.033280pt;}
.lsf{letter-spacing:-0.023040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.006400pt;}
.ls26{letter-spacing:0.019840pt;}
.ls29{letter-spacing:0.059733pt;}
.ls2f{letter-spacing:0.064000pt;}
.ls31{letter-spacing:0.106667pt;}
.ls24{letter-spacing:0.108160pt;}
.ls20{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.153600pt;}
.ls3{letter-spacing:0.160000pt;}
.ls22{letter-spacing:0.186133pt;}
.ls8{letter-spacing:0.227733pt;}
.ls1a{letter-spacing:0.227840pt;}
.ls30{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.266667pt;}
.ls15{letter-spacing:0.293333pt;}
.ls27{letter-spacing:0.318720pt;}
.ls1{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.385280pt;}
.ls18{letter-spacing:0.426240pt;}
.ls35{letter-spacing:0.504533pt;}
.ls14{letter-spacing:0.532907pt;}
.ls16{letter-spacing:0.586667pt;}
.ls19{letter-spacing:0.588160pt;}
.ls7{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.704000pt;}
.ls32{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.832000pt;}
.ls2d{letter-spacing:0.960000pt;}
.ls2c{letter-spacing:9.600000pt;}
.ls5{letter-spacing:16.800000pt;}
.ls6{letter-spacing:17.280000pt;}
.ls9{letter-spacing:1115.786667pt;}
.ws5{word-spacing:-58.880000pt;}
.wse{word-spacing:-53.120000pt;}
.ws9{word-spacing:-16.832000pt;}
.ws28{word-spacing:-16.768000pt;}
.ws3{word-spacing:-16.704000pt;}
.ws27{word-spacing:-16.256000pt;}
.ws29{word-spacing:-16.128000pt;}
.ws26{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.872000pt;}
.ws2a{word-spacing:-15.808000pt;}
.ws18{word-spacing:-15.744000pt;}
.ws2d{word-spacing:-15.224533pt;}
.ws2c{word-spacing:-14.720000pt;}
.ws2b{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.306880pt;}
.wsb{word-spacing:-13.283840pt;}
.ws19{word-spacing:-13.273600pt;}
.ws1a{word-spacing:-13.258240pt;}
.ws1b{word-spacing:-13.189013pt;}
.ws8{word-spacing:-12.976747pt;}
.ws7{word-spacing:-12.894613pt;}
.ws1c{word-spacing:-12.728320pt;}
.ws13{word-spacing:-12.591787pt;}
.ws12{word-spacing:-12.298453pt;}
.ws1e{word-spacing:-12.191253pt;}
.ws20{word-spacing:-12.064853pt;}
.wsd{word-spacing:-12.005120pt;}
.wsa{word-spacing:-11.968640pt;}
.wsf{word-spacing:-11.953280pt;}
.ws11{word-spacing:-11.877653pt;}
.wsc{word-spacing:-11.852053pt;}
.ws1f{word-spacing:-11.814187pt;}
.ws21{word-spacing:-11.786453pt;}
.ws22{word-spacing:-11.766187pt;}
.ws10{word-spacing:-11.748587pt;}
.ws14{word-spacing:-11.697387pt;}
.ws25{word-spacing:-11.680000pt;}
.ws16{word-spacing:-11.040000pt;}
.ws15{word-spacing:-10.720000pt;}
.ws17{word-spacing:-10.400000pt;}
.ws23{word-spacing:-9.710720pt;}
.ws24{word-spacing:-9.690880pt;}
.ws1d{word-spacing:-8.129387pt;}
.ws1{word-spacing:0.000000pt;}
._d{margin-left:-2.058667pt;}
._0{margin-left:-1.152000pt;}
._1{width:0.896000pt;}
._c{width:2.304000pt;}
._f{width:3.669333pt;}
._5{width:5.290667pt;}
._4{width:6.400000pt;}
._e{width:9.034667pt;}
._b{width:10.186667pt;}
._a{width:11.264000pt;}
._9{width:17.002667pt;}
._8{width:17.920000pt;}
._3{width:30.336000pt;}
._2{width:31.744000pt;}
._7{width:33.536000pt;}
._6{width:34.944000pt;}
._11{width:118.378667pt;}
._10{width:172.778667pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y81{bottom:-3.853333pt;}
.y9e{bottom:-3.840000pt;}
.y8b{bottom:-3.686667pt;}
.y93{bottom:-3.680000pt;}
.y0{bottom:0.000000pt;}
.y177{bottom:3.506667pt;}
.y156{bottom:3.520000pt;}
.y175{bottom:3.666667pt;}
.y152{bottom:3.680000pt;}
.y14f{bottom:3.840000pt;}
.ybd{bottom:4.153333pt;}
.yc1{bottom:4.160000pt;}
.y80{bottom:5.106667pt;}
.y5b{bottom:5.120000pt;}
.y8a{bottom:5.268000pt;}
.y92{bottom:5.280000pt;}
.y86{bottom:5.426667pt;}
.y5f{bottom:5.440000pt;}
.yb4{bottom:5.466667pt;}
.yd3{bottom:5.480000pt;}
.y83{bottom:5.586667pt;}
.y68{bottom:5.600000pt;}
.y10b{bottom:5.760000pt;}
.y116{bottom:5.920000pt;}
.y120{bottom:6.080000pt;}
.y1a6{bottom:6.560000pt;}
.y87{bottom:6.706667pt;}
.y1a1{bottom:6.713333pt;}
.y60{bottom:6.720000pt;}
.yb5{bottom:6.746667pt;}
.y113{bottom:6.760000pt;}
.y84{bottom:6.866667pt;}
.y62{bottom:6.880000pt;}
.ya8{bottom:6.906667pt;}
.yd4{bottom:6.920000pt;}
.y117{bottom:7.200000pt;}
.y10d{bottom:7.360000pt;}
.y114{bottom:7.400000pt;}
.y131{bottom:7.680000pt;}
.y118{bottom:8.320000pt;}
.y126{bottom:9.440000pt;}
.y153{bottom:11.680000pt;}
.y168{bottom:11.706667pt;}
.y173{bottom:11.826667pt;}
.y15f{bottom:11.840000pt;}
.y14c{bottom:12.480000pt;}
.ybb{bottom:12.953333pt;}
.y1d3{bottom:12.960000pt;}
.y1d0{bottom:13.120000pt;}
.yc2{bottom:13.146667pt;}
.ybe{bottom:14.388000pt;}
.yc3{bottom:14.586667pt;}
.y13c{bottom:15.840000pt;}
.y11e{bottom:16.000000pt;}
.y109{bottom:16.480000pt;}
.y151{bottom:19.840000pt;}
.y167{bottom:19.866667pt;}
.y15a{bottom:19.880000pt;}
.y174{bottom:19.986667pt;}
.y160{bottom:20.000000pt;}
.y1ce{bottom:20.160000pt;}
.y14d{bottom:20.960000pt;}
.ybc{bottom:21.908000pt;}
.yc0{bottom:22.106667pt;}
.y13b{bottom:24.640000pt;}
.y146{bottom:24.800000pt;}
.y147{bottom:26.080000pt;}
.y15b{bottom:28.040000pt;}
.y17a{bottom:28.800000pt;}
.y14b{bottom:29.600000pt;}
.y159{bottom:36.200000pt;}
.y14e{bottom:38.080000pt;}
.y145{bottom:45.440000pt;}
.y158{bottom:52.520000pt;}
.y2{bottom:67.072000pt;}
.y1b{bottom:67.232000pt;}
.y1{bottom:100.992000pt;}
.y1a{bottom:101.152000pt;}
.yba{bottom:120.358667pt;}
.y1a0{bottom:122.918667pt;}
.y249{bottom:123.072000pt;}
.y201{bottom:127.072000pt;}
.y76{bottom:129.958667pt;}
.y1ed{bottom:130.432000pt;}
.y9{bottom:132.512000pt;}
.y77{bottom:139.388000pt;}
.y20a{bottom:140.506667pt;}
.y19f{bottom:142.920000pt;}
.y89{bottom:150.600000pt;}
.yb9{bottom:157.480000pt;}
.y8{bottom:160.026667pt;}
.y200{bottom:164.026667pt;}
.y19e{bottom:164.200000pt;}
.y1ec{bottom:167.226667pt;}
.y248{bottom:171.226667pt;}
.y88{bottom:171.240000pt;}
.y209{bottom:177.306667pt;}
.y178{bottom:177.320000pt;}
.yb8{bottom:177.960000pt;}
.y19d{bottom:184.200000pt;}
.y7{bottom:187.706667pt;}
.y22e{bottom:188.666667pt;}
.y85{bottom:191.880000pt;}
.y176{bottom:193.640000pt;}
.yb7{bottom:198.600000pt;}
.y1ff{bottom:200.826667pt;}
.y104{bottom:202.586667pt;}
.y1eb{bottom:204.026667pt;}
.y19c{bottom:204.200000pt;}
.y247{bottom:205.146667pt;}
.y172{bottom:209.800000pt;}
.y5d{bottom:211.386667pt;}
.y82{bottom:212.360000pt;}
.y215{bottom:214.106667pt;}
.y6{bottom:214.906667pt;}
.yb6{bottom:219.240000pt;}
.y22d{bottom:222.426667pt;}
.y103{bottom:223.706667pt;}
.yc6{bottom:223.840000pt;}
.y19b{bottom:224.200000pt;}
.y149{bottom:225.026667pt;}
.y208{bottom:227.226667pt;}
.y7f{bottom:233.000000pt;}
.y19{bottom:236.666667pt;}
.y1fe{bottom:237.626667pt;}
.y246{bottom:238.746667pt;}
.yb3{bottom:240.520000pt;}
.y1ea{bottom:240.826667pt;}
.yc5{bottom:241.640000pt;}
.y171{bottom:242.466667pt;}
.y19a{bottom:244.226667pt;}
.y102{bottom:244.866667pt;}
.y43{bottom:246.786667pt;}
.y148{bottom:246.946667pt;}
.y1c7{bottom:250.146667pt;}
.y214{bottom:250.946667pt;}
.y7e{bottom:253.666667pt;}
.y5{bottom:255.906667pt;}
.y22c{bottom:256.226667pt;}
.y170{bottom:259.426667pt;}
.yb2{bottom:261.026667pt;}
.y199{bottom:264.226667pt;}
.y18{bottom:264.386667pt;}
.y101{bottom:265.986667pt;}
.y144{bottom:268.866667pt;}
.y245{bottom:272.546667pt;}
.y4{bottom:273.666667pt;}
.y42{bottom:274.306667pt;}
.y1fd{bottom:274.466667pt;}
.y16f{bottom:275.586667pt;}
.y1e9{bottom:277.666667pt;}
.yb1{bottom:281.666667pt;}
.y100{bottom:282.306667pt;}
.y1c6{bottom:284.066667pt;}
.y198{bottom:284.226667pt;}
.y213{bottom:287.746667pt;}
.y22b{bottom:289.986667pt;}
.y17{bottom:291.906667pt;}
.y26{bottom:293.666667pt;}
.y7d{bottom:294.786667pt;}
.y53{bottom:299.426667pt;}
.y1c5{bottom:299.906667pt;}
.y207{bottom:301.026667pt;}
.y41{bottom:302.306667pt;}
.yff{bottom:303.586667pt;}
.y197{bottom:304.226667pt;}
.y244{bottom:306.306667pt;}
.y16e{bottom:308.226667pt;}
.y1fc{bottom:311.266667pt;}
.y1e8{bottom:314.466667pt;}
.y7c{bottom:315.426667pt;}
.y16{bottom:319.426667pt;}
.y1c4{bottom:319.906667pt;}
.yb0{bottom:322.946667pt;}
.yfe{bottom:323.586667pt;}
.y212{bottom:324.546667pt;}
.y196{bottom:325.506667pt;}
.y52{bottom:326.786667pt;}
.y143{bottom:328.066667pt;}
.y40{bottom:329.506667pt;}
.y25{bottom:334.946667pt;}
.y7b{bottom:336.066667pt;}
.y45{bottom:336.386667pt;}
.y206{bottom:337.826667pt;}
.y1c3{bottom:339.906667pt;}
.y243{bottom:340.066667pt;}
.y16d{bottom:340.706667pt;}
.yfd{bottom:343.586667pt;}
.yaf{bottom:344.226667pt;}
.y195{bottom:345.506667pt;}
.y15{bottom:346.786667pt;}
.y1fb{bottom:347.906667pt;}
.y142{bottom:349.213333pt;}
.y51{bottom:350.786667pt;}
.y1e7{bottom:351.266667pt;}
.y7a{bottom:356.706667pt;}
.y16c{bottom:357.026667pt;}
.y3f{bottom:357.186667pt;}
.y22a{bottom:357.346667pt;}
.y1c2{bottom:359.906667pt;}
.y211{bottom:361.346667pt;}
.y24{bottom:362.466667pt;}
.y44{bottom:363.586667pt;}
.yae{bottom:364.706667pt;}
.y1d5{bottom:365.213333pt;}
.y194{bottom:365.506667pt;}
.y141{bottom:371.133333pt;}
.y242{bottom:373.826667pt;}
.y205{bottom:374.626667pt;}
.y79{bottom:377.186667pt;}
.y14{bottom:377.826667pt;}
.y1c1{bottom:379.906667pt;}
.y57{bottom:380.866667pt;}
.yfc{bottom:383.586667pt;}
.y3e{bottom:384.706667pt;}
.yad{bottom:385.346667pt;}
.y193{bottom:385.506667pt;}
.y217{bottom:387.586667pt;}
.y1e6{bottom:387.906667pt;}
.y16b{bottom:389.666667pt;}
.y23{bottom:390.146667pt;}
.y229{bottom:391.106667pt;}
.y140{bottom:391.773333pt;}
.y1d4{bottom:393.373333pt;}
.y78{bottom:397.826667pt;}
.y210{bottom:398.146667pt;}
.y1c0{bottom:399.906667pt;}
.y56{bottom:402.146667pt;}
.yfb{bottom:404.866667pt;}
.y192{bottom:405.506667pt;}
.yac{bottom:405.986667pt;}
.y241{bottom:407.426667pt;}
.y204{bottom:411.426667pt;}
.y3d{bottom:412.386667pt;}
.y13f{bottom:412.413333pt;}
.y22{bottom:417.666667pt;}
.y5c{bottom:419.746667pt;}
.y1bf{bottom:419.906667pt;}
.y1d2{bottom:420.253333pt;}
.y16a{bottom:422.146667pt;}
.y55{bottom:422.946667pt;}
.y216{bottom:424.386667pt;}
.y1e5{bottom:424.706667pt;}
.yfa{bottom:424.866667pt;}
.y191{bottom:425.506667pt;}
.yab{bottom:426.466667pt;}
.y13e{bottom:433.053333pt;}
.y1fa{bottom:434.786667pt;}
.y20f{bottom:434.946667pt;}
.y3c{bottom:439.906667pt;}
.y75{bottom:440.386667pt;}
.y240{bottom:441.186667pt;}
.y1be{bottom:441.346667pt;}
.yf9{bottom:444.866667pt;}
.y21{bottom:445.346667pt;}
.y190{bottom:445.506667pt;}
.y54{bottom:446.946667pt;}
.y1d1{bottom:446.973333pt;}
.yaa{bottom:447.106667pt;}
.y203{bottom:448.226667pt;}
.y13d{bottom:453.533333pt;}
.y169{bottom:454.626667pt;}
.y228{bottom:458.626667pt;}
.y74{bottom:460.866667pt;}
.y1bd{bottom:461.346667pt;}
.y1e4{bottom:461.506667pt;}
.y50{bottom:463.586667pt;}
.yf8{bottom:464.866667pt;}
.y18f{bottom:466.946667pt;}
.y3b{bottom:467.586667pt;}
.ya9{bottom:467.746667pt;}
.y1f9{bottom:471.746667pt;}
.y20{bottom:472.866667pt;}
.y1cf{bottom:473.853333pt;}
.y13a{bottom:474.173333pt;}
.y23f{bottom:474.946667pt;}
.y1bc{bottom:481.346667pt;}
.y73{bottom:481.506667pt;}
.yf7{bottom:486.306667pt;}
.y18e{bottom:486.946667pt;}
.y166{bottom:487.266667pt;}
.ya7{bottom:488.386667pt;}
.y4f{bottom:491.426667pt;}
.y227{bottom:492.226667pt;}
.y3a{bottom:495.133333pt;}
.y202{bottom:498.173333pt;}
.y1e3{bottom:498.333333pt;}
.y1f{bottom:500.573333pt;}
.y1bb{bottom:501.373333pt;}
.y1cd{bottom:502.013333pt;}
.y72{bottom:502.173333pt;}
.yf6{bottom:506.333333pt;}
.y18d{bottom:508.253333pt;}
.y1f8{bottom:508.573333pt;}
.y23e{bottom:508.733333pt;}
.ya6{bottom:509.693333pt;}
.y139{bottom:513.373333pt;}
.yc4{bottom:515.773333pt;}
.y4e{bottom:519.133333pt;}
.y165{bottom:519.773333pt;}
.y1ba{bottom:521.373333pt;}
.y71{bottom:522.653333pt;}
.y39{bottom:522.813333pt;}
.y226{bottom:526.013333pt;}
.yf5{bottom:526.333333pt;}
.y12{bottom:527.133333pt;}
.y1e{bottom:528.093333pt;}
.y18c{bottom:528.253333pt;}
.ya5{bottom:530.333333pt;}
.y1e2{bottom:535.133333pt;}
.y138{bottom:535.333333pt;}
.y164{bottom:536.093333pt;}
.yde{bottom:536.413333pt;}
.y23d{bottom:542.493333pt;}
.y1b9{bottom:542.653333pt;}
.y70{bottom:543.293333pt;}
.y1f7{bottom:545.373333pt;}
.y4d{bottom:546.333333pt;}
.yf4{bottom:547.613333pt;}
.y18b{bottom:548.253333pt;}
.y11{bottom:548.413333pt;}
.y38{bottom:550.333333pt;}
.ya4{bottom:550.813333pt;}
.y1d{bottom:555.453333pt;}
.ydd{bottom:556.893333pt;}
.y225{bottom:559.773333pt;}
.y1cc{bottom:559.973333pt;}
.y1b8{bottom:562.653333pt;}
.y6f{bottom:563.933333pt;}
.yf3{bottom:567.613333pt;}
.y163{bottom:568.573333pt;}
.y18a{bottom:569.213333pt;}
.y10{bottom:569.533333pt;}
.ya3{bottom:571.453333pt;}
.y1e1{bottom:571.933333pt;}
.y4c{bottom:574.013333pt;}
.y23c{bottom:576.253333pt;}
.ydc{bottom:577.533333pt;}
.y37{bottom:578.013333pt;}
.y4a{bottom:579.613333pt;}
.y1cb{bottom:581.093333pt;}
.y20e{bottom:581.853333pt;}
.y1f6{bottom:582.173333pt;}
.y1b7{bottom:582.653333pt;}
.y137{bottom:583.013333pt;}
.y6e{bottom:584.413333pt;}
.y162{bottom:584.893333pt;}
.yf2{bottom:587.613333pt;}
.y189{bottom:589.213333pt;}
.y1c{bottom:589.853333pt;}
.y4b{bottom:591.613333pt;}
.ya2{bottom:592.093333pt;}
.y224{bottom:593.533333pt;}
.ydb{bottom:598.173333pt;}
.y1ca{bottom:602.373333pt;}
.y1b6{bottom:602.653333pt;}
.y6d{bottom:605.053333pt;}
.y36{bottom:605.533333pt;}
.y49{bottom:607.133333pt;}
.yf1{bottom:607.613333pt;}
.y1e0{bottom:608.733333pt;}
.y188{bottom:609.213333pt;}
.y23b{bottom:609.853333pt;}
.y136{bottom:610.533333pt;}
.yf{bottom:610.813333pt;}
.ya1{bottom:613.373333pt;}
.y161{bottom:617.533333pt;}
.y20d{bottom:618.653333pt;}
.y1f5{bottom:618.973333pt;}
.yda{bottom:619.453333pt;}
.y1b5{bottom:622.653333pt;}
.y1c9{bottom:623.493333pt;}
.y6c{bottom:625.693333pt;}
.y223{bottom:627.293333pt;}
.yf0{bottom:627.613333pt;}
.y187{bottom:630.493333pt;}
.y35{bottom:633.213333pt;}
.ya0{bottom:634.013333pt;}
.y48{bottom:634.493333pt;}
.y135{bottom:638.213333pt;}
.ye{bottom:638.333333pt;}
.yd9{bottom:639.933333pt;}
.y1b4{bottom:642.653333pt;}
.y23a{bottom:643.613333pt;}
.y1c8{bottom:644.613333pt;}
.y1df{bottom:645.533333pt;}
.y6b{bottom:646.173333pt;}
.yef{bottom:647.613333pt;}
.y15e{bottom:650.013333pt;}
.y186{bottom:650.493333pt;}
.y9f{bottom:654.493333pt;}
.y1f4{bottom:655.773333pt;}
.yd8{bottom:660.573333pt;}
.y34{bottom:660.733333pt;}
.y222{bottom:661.053333pt;}
.y47{bottom:662.013333pt;}
.y1b3{bottom:663.933333pt;}
.yd{bottom:665.693333pt;}
.y134{bottom:665.733333pt;}
.y6a{bottom:666.813333pt;}
.yee{bottom:667.613333pt;}
.y20c{bottom:668.893333pt;}
.y185{bottom:670.493333pt;}
.y9d{bottom:675.133333pt;}
.y239{bottom:677.373333pt;}
.y46{bottom:679.613333pt;}
.yd7{bottom:681.213333pt;}
.y1de{bottom:682.333333pt;}
.y15d{bottom:682.653333pt;}
.y1b2{bottom:683.933333pt;}
.yc{bottom:686.813333pt;}
.y69{bottom:687.453333pt;}
.yed{bottom:687.613333pt;}
.y33{bottom:688.413333pt;}
.y184{bottom:690.493333pt;}
.y1f3{bottom:692.573333pt;}
.y221{bottom:694.653333pt;}
.y9c{bottom:695.773333pt;}
.yd6{bottom:701.693333pt;}
.y119{bottom:702.493333pt;}
.y1b1{bottom:703.933333pt;}
.yb{bottom:704.413333pt;}
.yec{bottom:707.613333pt;}
.y67{bottom:707.933333pt;}
.y183{bottom:710.493333pt;}
.y238{bottom:711.133333pt;}
.y15c{bottom:715.133333pt;}
.y32{bottom:715.933333pt;}
.y9b{bottom:716.413333pt;}
.y115{bottom:718.493333pt;}
.y20b{bottom:718.973333pt;}
.y1dd{bottom:719.133333pt;}
.yd5{bottom:722.493333pt;}
.y1b0{bottom:723.933333pt;}
.yeb{bottom:727.613333pt;}
.y220{bottom:728.413333pt;}
.y66{bottom:728.573333pt;}
.y1f2{bottom:729.373333pt;}
.y182{bottom:730.493333pt;}
.y128{bottom:731.133333pt;}
.y157{bottom:731.453333pt;}
.y9a{bottom:736.893333pt;}
.y112{bottom:739.453333pt;}
.yd2{bottom:742.973333pt;}
.y31{bottom:743.613333pt;}
.y1af{bottom:743.933333pt;}
.y237{bottom:744.893333pt;}
.yea{bottom:747.653333pt;}
.y65{bottom:749.253333pt;}
.y181{bottom:750.533333pt;}
.y127{bottom:752.293333pt;}
.y133{bottom:754.533333pt;}
.y1dc{bottom:755.973333pt;}
.y99{bottom:757.573333pt;}
.y111{bottom:759.493333pt;}
.y21f{bottom:762.213333pt;}
.yd1{bottom:763.653333pt;}
.y1ae{bottom:763.973333pt;}
.y1f1{bottom:766.213333pt;}
.ye9{bottom:767.653333pt;}
.y125{bottom:768.293333pt;}
.y64{bottom:769.893333pt;}
.y180{bottom:770.533333pt;}
.y132{bottom:770.693333pt;}
.y30{bottom:771.173333pt;}
.y236{bottom:778.533333pt;}
.y98{bottom:778.853333pt;}
.y218{bottom:779.173333pt;}
.y110{bottom:779.493333pt;}
.y1ad{bottom:783.973333pt;}
.yd0{bottom:784.293333pt;}
.ye8{bottom:788.933333pt;}
.y130{bottom:789.413333pt;}
.y63{bottom:790.373333pt;}
.y17f{bottom:790.533333pt;}
.y1db{bottom:792.773333pt;}
.y21e{bottom:795.973333pt;}
.y155{bottom:796.613333pt;}
.y2f{bottom:798.853333pt;}
.y97{bottom:799.493333pt;}
.y1ac{bottom:803.973333pt;}
.ycf{bottom:804.773333pt;}
.ye7{bottom:808.933333pt;}
.y17e{bottom:810.533333pt;}
.y61{bottom:811.013333pt;}
.y12f{bottom:811.493333pt;}
.y235{bottom:812.293333pt;}
.y1f0{bottom:815.813333pt;}
.y10f{bottom:819.493333pt;}
.y96{bottom:819.973333pt;}
.y1ab{bottom:823.973333pt;}
.yce{bottom:825.413333pt;}
.y2e{bottom:826.373333pt;}
.y124{bottom:827.653333pt;}
.ye6{bottom:828.933333pt;}
.y154{bottom:829.093333pt;}
.y1da{bottom:829.573333pt;}
.y21d{bottom:829.733333pt;}
.y12e{bottom:830.213333pt;}
.y17d{bottom:830.533333pt;}
.y5e{bottom:831.653333pt;}
.y10e{bottom:839.493333pt;}
.y95{bottom:840.613333pt;}
.y150{bottom:845.413333pt;}
.y234{bottom:846.053333pt;}
.y123{bottom:846.373333pt;}
.ycd{bottom:846.693333pt;}
.ye5{bottom:848.933333pt;}
.y179{bottom:851.973333pt;}
.y5a{bottom:853.573333pt;}
.y2d{bottom:854.053333pt;}
.y10c{bottom:859.493333pt;}
.y94{bottom:861.253333pt;}
.y21c{bottom:863.333333pt;}
.y122{bottom:865.093333pt;}
.y1aa{bottom:865.413333pt;}
.y1ef{bottom:865.893333pt;}
.y1d9{bottom:866.373333pt;}
.ycc{bottom:867.173333pt;}
.y12d{bottom:867.653333pt;}
.ye4{bottom:868.933333pt;}
.y17c{bottom:872.933333pt;}
.y14a{bottom:879.333333pt;}
.y233{bottom:879.813333pt;}
.y108{bottom:880.773333pt;}
.y2c{bottom:881.573333pt;}
.y91{bottom:881.733333pt;}
.y121{bottom:883.813333pt;}
.y1a9{bottom:885.413333pt;}
.y12c{bottom:886.373333pt;}
.ycb{bottom:887.813333pt;}
.ye3{bottom:888.933333pt;}
.y59{bottom:894.693333pt;}
.y17b{bottom:895.333333pt;}
.y21b{bottom:897.093333pt;}
.y90{bottom:902.533333pt;}
.y10a{bottom:902.693333pt;}
.y1d8{bottom:903.173333pt;}
.y11d{bottom:903.333333pt;}
.y12b{bottom:905.093333pt;}
.y1a8{bottom:905.413333pt;}
.yca{bottom:908.453333pt;}
.ye2{bottom:908.933333pt;}
.y2b{bottom:909.093333pt;}
.y232{bottom:913.573333pt;}
.y58{bottom:922.053333pt;}
.y8f{bottom:923.013333pt;}
.y11f{bottom:923.333333pt;}
.y129{bottom:924.453333pt;}
.y1a7{bottom:925.413333pt;}
.yc9{bottom:929.093333pt;}
.ye1{bottom:930.373333pt;}
.y107{bottom:930.693333pt;}
.y21a{bottom:930.853333pt;}
.y2a{bottom:936.773333pt;}
.y1d7{bottom:939.973333pt;}
.y8e{bottom:943.653333pt;}
.y12a{bottom:944.453333pt;}
.y1a5{bottom:945.413333pt;}
.y231{bottom:947.333333pt;}
.yc8{bottom:949.733333pt;}
.y11c{bottom:949.893333pt;}
.ye0{bottom:957.893333pt;}
.y106{bottom:958.213333pt;}
.y29{bottom:964.293333pt;}
.y219{bottom:964.613333pt;}
.y1a4{bottom:966.693333pt;}
.yc7{bottom:970.213333pt;}
.y11b{bottom:971.173333pt;}
.y1d6{bottom:976.453333pt;}
.y1ee{bottom:976.773333pt;}
.y230{bottom:980.933333pt;}
.y8d{bottom:985.413333pt;}
.ydf{bottom:985.573333pt;}
.y105{bottom:985.893333pt;}
.y1a3{bottom:986.693333pt;}
.y28{bottom:991.973333pt;}
.ybf{bottom:992.133333pt;}
.y11a{bottom:992.293333pt;}
.y8c{bottom:1006.080000pt;}
.y1a2{bottom:1006.720000pt;}
.y27{bottom:1013.120000pt;}
.ya{bottom:1013.280000pt;}
.y3{bottom:1013.440000pt;}
.y13{bottom:1013.600000pt;}
.y22f{bottom:1014.720000pt;}
.h35{height:16.146667pt;}
.h2e{height:16.306667pt;}
.h30{height:16.320000pt;}
.h21{height:18.546667pt;}
.h20{height:18.706667pt;}
.h8{height:19.986667pt;}
.h13{height:19.993333pt;}
.h14{height:20.000000pt;}
.h12{height:20.018667pt;}
.h19{height:20.020000pt;}
.h1a{height:20.026667pt;}
.hb{height:20.466667pt;}
.hf{height:20.480000pt;}
.h15{height:20.498667pt;}
.h26{height:20.500000pt;}
.h28{height:20.506667pt;}
.hc{height:20.626667pt;}
.he{height:20.640000pt;}
.hd{height:20.660000pt;}
.h10{height:20.666667pt;}
.h38{height:20.946667pt;}
.h1e{height:20.960000pt;}
.h22{height:22.066667pt;}
.h3b{height:26.720000pt;}
.h3a{height:26.880000pt;}
.h2d{height:32.466667pt;}
.h31{height:32.480000pt;}
.h33{height:32.506667pt;}
.h34{height:32.626667pt;}
.h32{height:32.640000pt;}
.h36{height:32.658667pt;}
.h16{height:35.673333pt;}
.h17{height:35.866667pt;}
.h1d{height:38.128125pt;}
.h27{height:38.400000pt;}
.h1c{height:38.569063pt;}
.h1f{height:38.706667pt;}
.h2b{height:40.892500pt;}
.h1b{height:41.906667pt;}
.h2{height:42.262500pt;}
.h9{height:42.751250pt;}
.h39{height:49.940000pt;}
.h2a{height:51.186667pt;}
.h2c{height:53.831875pt;}
.h3d{height:57.375000pt;}
.h40{height:57.787500pt;}
.h29{height:59.186667pt;}
.h41{height:59.340000pt;}
.h3c{height:62.781250pt;}
.h5{height:62.812500pt;}
.h37{height:64.306667pt;}
.h4{height:64.500000pt;}
.h2f{height:65.140000pt;}
.h7{height:66.750000pt;}
.h3f{height:71.503042pt;}
.h6{height:71.524375pt;}
.h3e{height:71.684375pt;}
.h25{height:72.655000pt;}
.h3{height:75.465000pt;}
.h11{height:288.500000pt;}
.ha{height:432.373333pt;}
.h18{height:475.066667pt;}
.h23{height:793.760000pt;}
.h24{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2c{width:32.946667pt;}
.w35{width:32.978667pt;}
.w36{width:33.106667pt;}
.w50{width:33.138667pt;}
.w30{width:37.120000pt;}
.w4b{width:37.280000pt;}
.w2b{width:39.826667pt;}
.w2a{width:40.466667pt;}
.w2d{width:40.498667pt;}
.w37{width:42.386667pt;}
.w2f{width:44.480000pt;}
.w4a{width:44.640000pt;}
.w4c{width:46.240000pt;}
.w31{width:46.400000pt;}
.w33{width:46.866667pt;}
.w4e{width:46.912000pt;}
.w4{width:51.506667pt;}
.w44{width:51.520000pt;}
.w42{width:51.538667pt;}
.w4f{width:51.986667pt;}
.w34{width:52.146667pt;}
.w38{width:55.826667pt;}
.w32{width:57.152000pt;}
.w21{width:57.266667pt;}
.w4d{width:57.280000pt;}
.w25{width:57.746667pt;}
.w23{width:57.920000pt;}
.w18{width:58.226667pt;}
.w1a{width:58.240000pt;}
.w51{width:61.426667pt;}
.w7{width:63.986667pt;}
.w49{width:67.058667pt;}
.w2e{width:67.200000pt;}
.wb{width:68.466667pt;}
.wc{width:68.658667pt;}
.w5{width:70.066667pt;}
.w6{width:70.098667pt;}
.w14{width:78.070667pt;}
.w12{width:80.672000pt;}
.w39{width:82.710667pt;}
.wa{width:82.866667pt;}
.w48{width:84.670667pt;}
.w3b{width:84.992000pt;}
.w43{width:85.120000pt;}
.w45{width:85.312000pt;}
.w10{width:86.898667pt;}
.w1d{width:89.590667pt;}
.w46{width:95.346667pt;}
.w47{width:95.378667pt;}
.wd{width:97.430667pt;}
.w24{width:102.912000pt;}
.w1b{width:103.552000pt;}
.w26{width:106.258667pt;}
.w22{width:109.618667pt;}
.w19{width:110.098667pt;}
.w1c{width:116.178667pt;}
.w3d{width:117.110667pt;}
.w2{width:130.070667pt;}
.w29{width:131.870667pt;}
.w9{width:134.106667pt;}
.w40{width:136.653333pt;}
.w41{width:136.826667pt;}
.w11{width:151.840000pt;}
.w1f{width:160.826667pt;}
.w16{width:161.786667pt;}
.w20{width:164.013333pt;}
.w13{width:164.653333pt;}
.w1e{width:166.893333pt;}
.w15{width:168.333333pt;}
.w17{width:174.413333pt;}
.w3f{width:190.733333pt;}
.w3a{width:198.573333pt;}
.w8{width:227.217333pt;}
.w3{width:236.213333pt;}
.we{width:238.733333pt;}
.wf{width:245.346667pt;}
.w3c{width:264.653333pt;}
.w3e{width:273.493333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w27{width:1122.560000pt;}
.w28{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x11{left:7.190667pt;}
.x58{left:8.466667pt;}
.x6d{left:9.760000pt;}
.x1c{left:10.866667pt;}
.x4d{left:12.160000pt;}
.x4e{left:13.426667pt;}
.x1b{left:14.546667pt;}
.x16{left:15.506667pt;}
.x71{left:16.626667pt;}
.x35{left:17.586667pt;}
.x18{left:18.866667pt;}
.x14{left:20.946667pt;}
.x50{left:22.400000pt;}
.x4f{left:23.986667pt;}
.x1d{left:25.280000pt;}
.x31{left:26.226667pt;}
.x1a{left:28.000000pt;}
.x75{left:29.120000pt;}
.x33{left:30.106667pt;}
.x1f{left:32.000000pt;}
.x3d{left:33.106667pt;}
.x7c{left:34.066667pt;}
.x1e{left:35.026667pt;}
.x42{left:36.320000pt;}
.x2f{left:37.426667pt;}
.x7d{left:39.226667pt;}
.x37{left:41.426667pt;}
.x43{left:42.706667pt;}
.x7e{left:44.306667pt;}
.x56{left:46.266667pt;}
.x7{left:47.200000pt;}
.x49{left:49.786667pt;}
.x4c{left:52.826667pt;}
.x38{left:55.840000pt;}
.x36{left:59.520000pt;}
.x34{left:63.200000pt;}
.x3f{left:70.080000pt;}
.x53{left:73.266667pt;}
.x81{left:75.521333pt;}
.x41{left:77.106667pt;}
.x47{left:78.546667pt;}
.x80{left:85.120000pt;}
.x5b{left:87.361333pt;}
.x3c{left:91.866667pt;}
.x5a{left:94.560000pt;}
.x3a{left:96.666667pt;}
.x10{left:106.281333pt;}
.x2c{left:108.186667pt;}
.x2{left:113.472000pt;}
.x74{left:115.186667pt;}
.x25{left:128.506667pt;}
.x9{left:132.352000pt;}
.x26{left:135.706667pt;}
.x2a{left:136.826667pt;}
.x29{left:144.666667pt;}
.x27{left:147.066667pt;}
.x28{left:149.946667pt;}
.x8{left:151.226667pt;}
.x82{left:160.200000pt;}
.x95{left:161.466667pt;}
.x22{left:180.666667pt;}
.x44{left:183.720000pt;}
.x21{left:186.106667pt;}
.x24{left:187.706667pt;}
.x72{left:189.000000pt;}
.x20{left:194.746667pt;}
.x51{left:195.880000pt;}
.x2b{left:198.426667pt;}
.x23{left:199.706667pt;}
.x83{left:200.680000pt;}
.x39{left:203.560000pt;}
.x5c{left:219.240000pt;}
.x76{left:223.400000pt;}
.x84{left:233.640000pt;}
.x12{left:236.360000pt;}
.x48{left:241.960000pt;}
.x54{left:253.160000pt;}
.x5d{left:259.720000pt;}
.x85{left:273.480000pt;}
.x79{left:274.946667pt;}
.x3e{left:290.466667pt;}
.x5e{left:300.200000pt;}
.x86{left:306.440000pt;}
.x3{left:326.946667pt;}
.x2d{left:333.506667pt;}
.x5f{left:340.040000pt;}
.x45{left:352.066667pt;}
.x78{left:360.066667pt;}
.x52{left:362.786667pt;}
.x60{left:373.000000pt;}
.x73{left:387.586667pt;}
.xd{left:389.506667pt;}
.x1{left:393.186667pt;}
.xf{left:396.866667pt;}
.x87{left:406.626667pt;}
.x4a{left:410.306667pt;}
.x7a{left:411.586667pt;}
.x61{left:413.506667pt;}
.x55{left:420.706667pt;}
.x3b{left:442.306667pt;}
.x88{left:451.266667pt;}
.x2e{left:467.626667pt;}
.x13{left:472.586667pt;}
.x62{left:480.706667pt;}
.x89{left:488.546667pt;}
.x77{left:496.906667pt;}
.x46{left:513.866667pt;}
.x40{left:522.986667pt;}
.x15{left:524.106667pt;}
.x63{left:525.186667pt;}
.x8a{left:534.786667pt;}
.x7f{left:549.186667pt;}
.x30{left:550.506667pt;}
.x59{left:553.826667pt;}
.x64{left:562.306667pt;}
.x6{left:570.493333pt;}
.x4b{left:572.106667pt;}
.x4{left:579.293333pt;}
.x57{left:581.386667pt;}
.x7b{left:592.266667pt;}
.x17{left:594.186667pt;}
.x65{left:608.706667pt;}
.xc{left:610.173333pt;}
.x5{left:612.893333pt;}
.x32{left:618.986667pt;}
.x8b{left:638.986667pt;}
.xe{left:647.653333pt;}
.x19{left:664.293333pt;}
.x66{left:665.866667pt;}
.x8c{left:690.986667pt;}
.x67{left:712.746667pt;}
.x8d{left:724.106667pt;}
.xb{left:731.813333pt;}
.x8e{left:757.066667pt;}
.x68{left:764.906667pt;}
.xa{left:768.453333pt;}
.x8f{left:790.186667pt;}
.x69{left:797.866667pt;}
.x90{left:823.306667pt;}
.x6a{left:838.346667pt;}
.x91{left:856.266667pt;}
.x6b{left:871.306667pt;}
.x92{left:889.413333pt;}
.x6c{left:904.293333pt;}
.x93{left:931.813333pt;}
.x6e{left:937.253333pt;}
.x6f{left:970.373333pt;}
.x94{left:987.653333pt;}
.x70{left:1012.773333pt;}
}




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