
    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_b4ad239ca3307797ce9fdb66.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_977ae30d08bdc73ca8f4947f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.400000;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_b407d516a47e0d9dd69b9355.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.400000;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_2eac7f4be73e7a26ab930adf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.400000;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_61bec6767451d39c071cb53c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0ad838f10229bfbf8d6399db.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6912471985e4fdc4367fac0f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6ec1ef8014ed1afc4c28f30e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e587c0a95ddbffa957a0bb92.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.107422;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_1ffde2142ea0db5936208dec.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065430;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_30702195fe34a3adbb19d52e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_8de33f59b0356f1eb4ca6b9a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.966797;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_5e5c0565757b632a9dd0a29b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.859375;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_334ec847596f8c6f2eb94ddb.woff2')format("woff");}.fff{font-family:fff;line-height:1.065430;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_1d31342a510a2c9d434b58cf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.752441;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:ff11;src:url('chunks/assets/font_f8d91726cf8e6fe727eec7bc.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-90.720000px;}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-0.828000px;}
.ls14{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.240000px;}
.ls10{letter-spacing:-0.223800px;}
.ls12{letter-spacing:-0.152400px;}
.lsd{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.066000px;}
.lse{letter-spacing:-0.025920px;}
.ls1d{letter-spacing:-0.018000px;}
.ls24{letter-spacing:-0.007920px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.037440px;}
.lsb{letter-spacing:0.040320px;}
.lsa{letter-spacing:0.066000px;}
.ls16{letter-spacing:0.112200px;}
.ls0{letter-spacing:0.115200px;}
.ls8{letter-spacing:0.118200px;}
.ls1b{letter-spacing:0.126000px;}
.ls1a{letter-spacing:0.162000px;}
.ls1e{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.241200px;}
.ls23{letter-spacing:0.252000px;}
.ls4{letter-spacing:0.305400px;}
.ls20{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.331200px;}
.ls21{letter-spacing:0.350640px;}
.ls17{letter-spacing:0.360000px;}
.ls1{letter-spacing:24.926400px;}
.lsf{letter-spacing:49.961280px;}
.ls19{letter-spacing:55.386720px;}
.ls1c{letter-spacing:65.105280px;}
.ls7{letter-spacing:66.067200px;}
.ls22{letter-spacing:66.545280px;}
.ls6{letter-spacing:68.227200px;}
.ls5{letter-spacing:68.947200px;}
.ls3{letter-spacing:72.547200px;}
.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;}
}
.ws18{word-spacing:-95.760000px;}
.wsd{word-spacing:-66.240000px;}
.ws16{word-spacing:-59.760000px;}
.wsf{word-spacing:-32.104800px;}
.ws15{word-spacing:-32.103600px;}
.ws13{word-spacing:-31.975800px;}
.ws0{word-spacing:-31.863600px;}
.ws1b{word-spacing:-31.855680px;}
.wsc{word-spacing:-31.639800px;}
.ws12{word-spacing:-31.623600px;}
.ws5{word-spacing:-18.720120px;}
.wse{word-spacing:-18.414720px;}
.wsa{word-spacing:-18.305520px;}
.ws10{word-spacing:-18.262320px;}
.ws6{word-spacing:-17.884800px;}
.ws3{word-spacing:-17.671800px;}
.ws7{word-spacing:-17.619600px;}
.ws8{word-spacing:-17.593920px;}
.ws4{word-spacing:-17.553600px;}
.wsb{word-spacing:-17.527680px;}
.ws9{word-spacing:-17.487600px;}
.ws11{word-spacing:-16.613280px;}
.ws1{word-spacing:-15.698880px;}
.ws17{word-spacing:-15.138000px;}
.ws1a{word-spacing:-15.012000px;}
.ws19{word-spacing:-13.147200px;}
.ws14{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-16.325040px;}
._29{margin-left:-14.156400px;}
._5{margin-left:-9.710400px;}
._8{margin-left:-7.845840px;}
._9{margin-left:-6.624720px;}
._27{margin-left:-5.127840px;}
._6{margin-left:-4.124160px;}
._a{margin-left:-2.980800px;}
._0{margin-left:-1.780080px;}
._2{width:1.183920px;}
._28{width:2.185920px;}
._e{width:3.196320px;}
._1a{width:4.543440px;}
._1b{width:5.820720px;}
._31{width:6.822720px;}
._10{width:7.882560px;}
._11{width:9.190560px;}
._12{width:10.507920px;}
._f{width:11.583600px;}
._c{width:12.983040px;}
._b{width:14.042880px;}
._d{width:15.192240px;}
._15{width:16.805040px;}
._16{width:19.739520px;}
._17{width:21.718320px;}
._1c{width:23.059920px;}
._14{width:25.237440px;}
._13{width:26.355120px;}
._21{width:27.688320px;}
._18{width:28.935360px;}
._19{width:30.129360px;}
._23{width:31.199040px;}
._1d{width:33.848640px;}
._2d{width:35.572320px;}
._2c{width:37.118400px;}
._25{width:39.081600px;}
._24{width:40.331760px;}
._20{width:46.036800px;}
._1f{width:47.096640px;}
._1e{width:48.346800px;}
._26{width:49.552320px;}
._22{width:70.046640px;}
._2e{width:72.108000px;}
._2f{width:73.548000px;}
._4{width:89.114400px;}
._2b{width:116.055120px;}
._2a{width:117.330720px;}
._32{width:195.871680px;}
._33{width:196.989360px;}
._34{width:198.712560px;}
._1{width:203.462400px;}
._30{width:420.085680px;}
._3{width:845.741280px;}
.fc6{color:transparent;}
.fc5{color:rgb(24,82,128);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(0,176,240);}
.fc4{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:90.000000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y139{bottom:3.060000px;}
.y206{bottom:3.420000px;}
.y1b3{bottom:5.220000px;}
.y20b{bottom:5.400000px;}
.y77{bottom:5.940000px;}
.y15{bottom:6.300000px;}
.y19f{bottom:7.560000px;}
.y1d8{bottom:7.740000px;}
.y1ed{bottom:8.640000px;}
.y208{bottom:9.360000px;}
.y15b{bottom:10.260000px;}
.y289{bottom:10.980000px;}
.y21c{bottom:11.880000px;}
.y28a{bottom:12.060000px;}
.y201{bottom:12.240000px;}
.y21d{bottom:12.960000px;}
.y1b5{bottom:13.005000px;}
.y23c{bottom:13.140000px;}
.y267{bottom:13.860000px;}
.y1b6{bottom:14.265000px;}
.y18e{bottom:14.394000px;}
.y152{bottom:14.580000px;}
.y80{bottom:14.760000px;}
.y175{bottom:16.380000px;}
.y172{bottom:16.560000px;}
.y1e9{bottom:17.280000px;}
.y176{bottom:17.460000px;}
.y1c4{bottom:17.490000px;}
.y1ee{bottom:17.505000px;}
.y173{bottom:17.640000px;}
.y1ea{bottom:18.360000px;}
.y13d{bottom:18.720000px;}
.y13b{bottom:18.900000px;}
.y162{bottom:19.620000px;}
.y1f2{bottom:20.160000px;}
.y170{bottom:20.340000px;}
.y229{bottom:20.520000px;}
.y205{bottom:20.880000px;}
.y209{bottom:21.060000px;}
.y185{bottom:21.105000px;}
.y191{bottom:21.240000px;}
.y271{bottom:21.414000px;}
.y195{bottom:21.420000px;}
.y1b2{bottom:23.040000px;}
.y21a{bottom:23.220000px;}
.y240{bottom:23.940000px;}
.y202{bottom:24.120000px;}
.y1e7{bottom:24.660000px;}
.y282{bottom:24.690000px;}
.y17c{bottom:25.560000px;}
.y89{bottom:25.740000px;}
.y1bc{bottom:26.460000px;}
.y1c1{bottom:26.490000px;}
.y1ec{bottom:26.505000px;}
.y204{bottom:26.820000px;}
.y26f{bottom:27.174000px;}
.y1d0{bottom:27.180000px;}
.y1fa{bottom:27.360000px;}
.y1bd{bottom:27.720000px;}
.y257{bottom:27.900000px;}
.y14{bottom:28.110000px;}
.y1d2{bottom:28.980000px;}
.y193{bottom:29.160000px;}
.y18d{bottom:29.874000px;}
.y220{bottom:29.880000px;}
.y1e0{bottom:29.910000px;}
.y29e{bottom:30.060000px;}
.y151{bottom:30.420000px;}
.y23b{bottom:30.960000px;}
.y266{bottom:31.860000px;}
.y231{bottom:33.300000px;}
.y251{bottom:33.480000px;}
.y1b8{bottom:34.380000px;}
.y7f{bottom:34.560000px;}
.y8c{bottom:34.740000px;}
.y1ba{bottom:35.460000px;}
.y1c3{bottom:35.490000px;}
.y213{bottom:35.634000px;}
.y1f1{bottom:35.640000px;}
.y1be{bottom:36.720000px;}
.y146{bottom:36.765000px;}
.y161{bottom:37.620000px;}
.y1f3{bottom:37.980000px;}
.y228{bottom:38.340000px;}
.y1fd{bottom:38.520000px;}
.y28d{bottom:38.700000px;}
.y1d3{bottom:38.880000px;}
.y270{bottom:39.054000px;}
.y194{bottom:39.060000px;}
.y19c{bottom:39.090000px;}
.y183{bottom:39.105000px;}
.y16f{bottom:39.780000px;}
.y290{bottom:39.960000px;}
.y24f{bottom:41.220000px;}
.y1c0{bottom:41.970000px;}
.y292{bottom:42.120000px;}
.y22e{bottom:42.300000px;}
.y1b1{bottom:42.480000px;}
.y219{bottom:42.660000px;}
.y1f9{bottom:42.840000px;}
.y17b{bottom:43.560000px;}
.y1c8{bottom:43.740000px;}
.y287{bottom:44.100000px;}
.y281{bottom:44.130000px;}
.y1e6{bottom:44.280000px;}
.y1c5{bottom:44.310000px;}
.y2a0{bottom:44.325000px;}
.y253{bottom:44.640000px;}
.y18c{bottom:45.354000px;}
.y7a{bottom:45.540000px;}
.y256{bottom:45.720000px;}
.y197{bottom:46.620000px;}
.y19a{bottom:46.650000px;}
.y224{bottom:47.340000px;}
.y28c{bottom:47.700000px;}
.y1df{bottom:47.730000px;}
.y21f{bottom:47.745000px;}
.y153{bottom:48.420000px;}
.y23a{bottom:49.140000px;}
.y265{bottom:49.680000px;}
.y13{bottom:49.890000px;}
.y1cb{bottom:50.940000px;}
.y212{bottom:51.114000px;}
.y22c{bottom:51.120000px;}
.y178{bottom:51.300000px;}
.y250{bottom:51.480000px;}
.y17d{bottom:52.380000px;}
.y141{bottom:52.560000px;}
.y1b9{bottom:53.280000px;}
.y1c2{bottom:53.310000px;}
.y15d{bottom:54.180000px;}
.y88{bottom:54.360000px;}
.y8b{bottom:54.540000px;}
.y7e{bottom:54.585000px;}
.y254{bottom:54.720000px;}
.y145{bottom:54.765000px;}
.y222{bottom:55.080000px;}
.y160{bottom:55.440000px;}
.y227{bottom:56.160000px;}
.y83{bottom:56.340000px;}
.y198{bottom:56.700000px;}
.y19b{bottom:56.730000px;}
.y180{bottom:56.925000px;}
.y28f{bottom:57.780000px;}
.y20a{bottom:58.140000px;}
.y1f8{bottom:58.320000px;}
.y20f{bottom:58.854000px;}
.y247{bottom:58.860000px;}
.y16e{bottom:59.220000px;}
.y19{bottom:60.120000px;}
.y1b0{bottom:60.300000px;}
.y18b{bottom:60.834000px;}
.y17a{bottom:61.380000px;}
.y218{bottom:62.100000px;}
.y285{bottom:62.460000px;}
.y1a5{bottom:63.360000px;}
.y255{bottom:63.540000px;}
.y280{bottom:63.570000px;}
.y1e5{bottom:63.720000px;}
.y187{bottom:63.894000px;}
.y1f5{bottom:64.080000px;}
.y150{bottom:64.260000px;}
.y223{bottom:65.160000px;}
.y79{bottom:65.385000px;}
.y1de{bottom:65.550000px;}
.y211{bottom:66.594000px;}
.y259{bottom:66.600000px;}
.y22b{bottom:66.630000px;}
.y1ca{bottom:66.780000px;}
.y239{bottom:66.960000px;}
.y264{bottom:67.710000px;}
.y1e2{bottom:67.860000px;}
.y140{bottom:68.400000px;}
.y14d{bottom:68.580000px;}
.y249{bottom:68.940000px;}
.y230{bottom:68.970000px;}
.y144{bottom:70.605000px;}
.y12{bottom:71.670000px;}
.y17f{bottom:72.405000px;}
.y233{bottom:72.540000px;}
.y15f{bottom:73.260000px;}
.y1da{bottom:73.290000px;}
.y1c7{bottom:73.980000px;}
.y226{bottom:74.160000px;}
.y87{bottom:74.340000px;}
.y8a{bottom:74.370000px;}
.y7d{bottom:74.385000px;}
.y299{bottom:74.700000px;}
.y182{bottom:74.745000px;}
.y82{bottom:76.140000px;}
.y215{bottom:76.860000px;}
.y16d{bottom:77.040000px;}
.y25a{bottom:77.940000px;}
.y22d{bottom:77.970000px;}
.y179{bottom:79.200000px;}
.y18a{bottom:79.554000px;}
.y1af{bottom:79.920000px;}
.y14f{bottom:80.100000px;}
.y1a1{bottom:80.145000px;}
.y294{bottom:80.280000px;}
.y1a4{bottom:81.405000px;}
.y1e4{bottom:81.540000px;}
.y210{bottom:82.254000px;}
.y1c9{bottom:82.260000px;}
.y27f{bottom:83.010000px;}
.y1dd{bottom:83.370000px;}
.y13f{bottom:84.240000px;}
.y14c{bottom:84.420000px;}
.y238{bottom:84.960000px;}
.y263{bottom:85.530000px;}
.y25d{bottom:86.430000px;}
.y143{bottom:86.445000px;}
.y248{bottom:86.760000px;}
.y22f{bottom:86.970000px;}
.y1a8{bottom:88.020000px;}
.y15e{bottom:91.080000px;}
.y225{bottom:91.980000px;}
.y1f7{bottom:92.520000px;}
.y181{bottom:92.565000px;}
.y298{bottom:92.700000px;}
.y284{bottom:93.420000px;}
.y11{bottom:93.630000px;}
.y86{bottom:94.140000px;}
.y7c{bottom:94.185000px;}
.y189{bottom:95.034000px;}
.y16c{bottom:96.660000px;}
.y1ae{bottom:97.740000px;}
.y1a3{bottom:99.225000px;}
.y1e3{bottom:99.360000px;}
.y24c{bottom:99.585000px;}
.y1dc{bottom:101.190000px;}
.y25c{bottom:102.090000px;}
.y237{bottom:102.780000px;}
.y1a7{bottom:103.500000px;}
.y262{bottom:103.710000px;}
.ye{bottom:104.250000px;}
.y1f6{bottom:108.000000px;}
.y1cc{bottom:108.036000px;}
.y279{bottom:109.470000px;}
.y184{bottom:110.385000px;}
.y188{bottom:110.514000px;}
.y297{bottom:110.520000px;}
.y165{bottom:112.860000px;}
.y85{bottom:113.940000px;}
.y7b{bottom:113.985000px;}
.y13a{bottom:114.336000px;}
.y16b{bottom:114.480000px;}
.y10{bottom:115.410000px;}
.y2a4{bottom:115.416000px;}
.y4e{bottom:116.316000px;}
.y1a2{bottom:117.045000px;}
.y1ad{bottom:117.180000px;}
.y217{bottom:117.360000px;}
.y24b{bottom:117.405000px;}
.y72{bottom:117.576000px;}
.y14b{bottom:118.080000px;}
.y236{bottom:118.440000px;}
.y1db{bottom:119.010000px;}
.y261{bottom:121.530000px;}
.y27e{bottom:123.510000px;}
.y296{bottom:126.180000px;}
.ye0{bottom:127.296000px;}
.y164{bottom:128.340000px;}
.y26e{bottom:130.356000px;}
.y11c{bottom:131.436000px;}
.yfa{bottom:133.236000px;}
.y9b{bottom:133.416000px;}
.y14a{bottom:133.920000px;}
.y235{bottom:134.100000px;}
.y84{bottom:134.280000px;}
.y1ac{bottom:135.000000px;}
.y216{bottom:135.180000px;}
.yf{bottom:137.190000px;}
.y2a3{bottom:137.196000px;}
.y4d{bottom:138.276000px;}
.y71{bottom:139.356000px;}
.y260{bottom:139.530000px;}
.y295{bottom:141.840000px;}
.y2bd{bottom:143.856000px;}
.y186{bottom:147.456000px;}
.y20e{bottom:148.716000px;}
.ydf{bottom:149.076000px;}
.y234{bottom:149.580000px;}
.y16a{bottom:151.785000px;}
.y149{bottom:151.920000px;}
.y1ab{bottom:152.820000px;}
.y286{bottom:153.000000px;}
.y11b{bottom:153.210000px;}
.yf9{bottom:155.010000px;}
.y9a{bottom:155.190000px;}
.y25f{bottom:158.430000px;}
.y70{bottom:161.130000px;}
.y27d{bottom:162.390000px;}
.y138{bottom:165.450000px;}
.y1f0{bottom:167.430000px;}
.y148{bottom:167.760000px;}
.y169{bottom:169.605000px;}
.y2a2{bottom:170.670000px;}
.y1aa{bottom:170.820000px;}
.y24d{bottom:171.030000px;}
.y99{bottom:176.790000px;}
.y25e{bottom:176.970000px;}
.y4c{bottom:178.050000px;}
.y27c{bottom:180.210000px;}
.y6f{bottom:182.910000px;}
.y2bc{bottom:183.630000px;}
.y168{bottom:187.605000px;}
.ybe{bottom:188.490000px;}
.y1a9{bottom:188.640000px;}
.yde{bottom:189.030000px;}
.y26d{bottom:189.930000px;}
.y11a{bottom:192.990000px;}
.y27b{bottom:198.210000px;}
.yf8{bottom:198.750000px;}
.y98{bottom:199.110000px;}
.y4b{bottom:199.830000px;}
.y6e{bottom:204.870000px;}
.y26c{bottom:205.410000px;}
.y167{bottom:205.425000px;}
.ybd{bottom:210.270000px;}
.ydd{bottom:210.810000px;}
.y119{bottom:214.950000px;}
.y27a{bottom:216.030000px;}
.y24a{bottom:219.630000px;}
.y28b{bottom:219.810000px;}
.yf7{bottom:220.530000px;}
.y97{bottom:220.710000px;}
.y4a{bottom:221.610000px;}
.y166{bottom:223.245000px;}
.y2a1{bottom:223.770000px;}
.y137{bottom:225.210000px;}
.y6d{bottom:226.650000px;}
.y2bb{bottom:227.190000px;}
.ybc{bottom:232.050000px;}
.ydc{bottom:232.590000px;}
.y1ff{bottom:236.550000px;}
.y118{bottom:236.730000px;}
.y1a0{bottom:241.590000px;}
.yf6{bottom:242.310000px;}
.y96{bottom:242.850000px;}
.y49{bottom:243.390000px;}
.y1ef{bottom:245.190000px;}
.y136{bottom:246.990000px;}
.y6c{bottom:248.430000px;}
.ybb{bottom:254.010000px;}
.ydb{bottom:254.370000px;}
.y1cd{bottom:256.899000px;}
.y117{bottom:258.510000px;}
.yf5{bottom:264.090000px;}
.y95{bottom:264.630000px;}
.y26b{bottom:265.170000px;}
.y48{bottom:265.350000px;}
.y2ba{bottom:266.970000px;}
.y135{bottom:268.770000px;}
.yba{bottom:275.790000px;}
.yda{bottom:276.150000px;}
.y29f{bottom:277.050000px;}
.y116{bottom:280.290000px;}
.y26a{bottom:280.650000px;}
.y15a{bottom:282.270000px;}
.yf4{bottom:286.050000px;}
.y47{bottom:286.950000px;}
.y6b{bottom:288.210000px;}
.y2b9{bottom:288.930000px;}
.y134{bottom:290.550000px;}
.y20d{bottom:291.630000px;}
.y17e{bottom:297.390000px;}
.y1eb{bottom:300.090000px;}
.y115{bottom:302.070000px;}
.y94{bottom:304.770000px;}
.y46{bottom:309.090000px;}
.y6a{bottom:310.170000px;}
.y133{bottom:312.510000px;}
.yb9{bottom:315.570000px;}
.yd9{bottom:316.110000px;}
.y288{bottom:317.055000px;}
.y232{bottom:319.035000px;}
.yf3{bottom:325.875000px;}
.y20c{bottom:327.315000px;}
.y2b8{bottom:328.755000px;}
.y45{bottom:330.915000px;}
.y69{bottom:331.995000px;}
.y132{bottom:334.335000px;}
.y29d{bottom:335.595000px;}
.yb8{bottom:337.395000px;}
.yd8{bottom:337.935000px;}
.y159{bottom:338.115000px;}
.y114{bottom:342.075000px;}
.y1fe{bottom:342.795000px;}
.y93{bottom:344.595000px;}
.yf2{bottom:347.655000px;}
.y2b7{bottom:350.535000px;}
.y44{bottom:353.055000px;}
.y68{bottom:353.775000px;}
.y1e8{bottom:354.855000px;}
.y131{bottom:356.115000px;}
.yb7{bottom:359.175000px;}
.y158{bottom:359.895000px;}
.y113{bottom:363.675000px;}
.y283{bottom:363.855000px;}
.y246{bottom:364.935000px;}
.y92{bottom:366.555000px;}
.y2b6{bottom:372.315000px;}
.y43{bottom:374.835000px;}
.y67{bottom:375.555000px;}
.yd7{bottom:377.715000px;}
.y157{bottom:381.855000px;}
.y112{bottom:385.815000px;}
.yf1{bottom:387.435000px;}
.y91{bottom:388.335000px;}
.y130{bottom:395.895000px;}
.y42{bottom:396.975000px;}
.y66{bottom:397.335000px;}
.yb6{bottom:399.135000px;}
.yd6{bottom:399.495000px;}
.y156{bottom:403.635000px;}
.y111{bottom:407.775000px;}
.yf0{bottom:409.215000px;}
.y90{bottom:410.115000px;}
.y2b5{bottom:412.275000px;}
.y1e1{bottom:414.255000px;}
.y12f{bottom:417.855000px;}
.y41{bottom:418.755000px;}
.y1c6{bottom:418.935000px;}
.yb5{bottom:420.915000px;}
.yd5{bottom:421.455000px;}
.y29c{bottom:421.815000px;}
.y155{bottom:425.415000px;}
.y19e{bottom:427.035000px;}
.y110{bottom:429.555000px;}
.yef{bottom:431.175000px;}
.y207{bottom:431.715000px;}
.y8f{bottom:431.895000px;}
.y2b4{bottom:434.055000px;}
.y29b{bottom:437.295000px;}
.y65{bottom:438.015000px;}
.y12e{bottom:439.635000px;}
.y40{bottom:440.535000px;}
.yb4{bottom:442.695000px;}
.yd4{bottom:443.235000px;}
.y177{bottom:448.635000px;}
.y10f{bottom:451.335000px;}
.yee{bottom:452.955000px;}
.y64{bottom:459.975000px;}
.y12d{bottom:461.415000px;}
.y3f{bottom:462.675000px;}
.y154{bottom:464.115000px;}
.yb3{bottom:464.475000px;}
.y203{bottom:466.995000px;}
.y8e{bottom:470.595000px;}
.y269{bottom:472.575000px;}
.y10e{bottom:473.115000px;}
.y2b3{bottom:473.835000px;}
.yed{bottom:474.735000px;}
.y14e{bottom:478.155000px;}
.y63{bottom:481.935000px;}
.yd3{bottom:483.015000px;}
.y12c{bottom:483.195000px;}
.y19d{bottom:483.555000px;}
.y3e{bottom:484.455000px;}
.y8d{bottom:488.595000px;}
.y268{bottom:494.355000px;}
.y10d{bottom:495.075000px;}
.y2b2{bottom:495.615000px;}
.y2b{bottom:496.155000px;}
.y22a{bottom:501.555000px;}
.y62{bottom:503.715000px;}
.yb2{bottom:504.435000px;}
.yd2{bottom:504.795000px;}
.y12b{bottom:504.975000px;}
.y17{bottom:506.235000px;}
.y245{bottom:507.675000px;}
.yec{bottom:510.915000px;}
.y2a{bottom:515.055000px;}
.y25b{bottom:516.675000px;}
.y200{bottom:519.735000px;}
.y61{bottom:525.495000px;}
.yb1{bottom:526.215000px;}
.yd1{bottom:526.575000px;}
.y12a{bottom:526.935000px;}
.y16{bottom:529.095000px;}
.y199{bottom:533.055000px;}
.y10c{bottom:535.215000px;}
.y2b1{bottom:535.395000px;}
.y29{bottom:541.335000px;}
.y278{bottom:544.755000px;}
.y3d{bottom:546.375000px;}
.y60{bottom:547.275000px;}
.yb0{bottom:547.995000px;}
.y129{bottom:548.715000px;}
.yeb{bottom:550.515000px;}
.yd{bottom:553.575000px;}
.y10b{bottom:557.175000px;}
.y2b0{bottom:557.355000px;}
.y1bf{bottom:558.795000px;}
.y1d9{bottom:559.335000px;}
.y244{bottom:560.235000px;}
.yd0{bottom:566.355000px;}
.y3c{bottom:568.185000px;}
.yaf{bottom:569.805000px;}
.y128{bottom:570.525000px;}
.y28{bottom:571.785000px;}
.y174{bottom:573.225000px;}
.y5f{bottom:587.265000px;}
.ycf{bottom:588.345000px;}
.y3b{bottom:589.965000px;}
.y147{bottom:590.505000px;}
.yae{bottom:591.585000px;}
.y127{bottom:592.305000px;}
.y10a{bottom:596.985000px;}
.y2af{bottom:597.165000px;}
.y27{bottom:600.945000px;}
.y196{bottom:603.825000px;}
.y81{bottom:604.905000px;}
.y5e{bottom:609.045000px;}
.yce{bottom:610.485000px;}
.y3a{bottom:611.745000px;}
.yad{bottom:613.545000px;}
.y126{bottom:614.265000px;}
.yea{bottom:614.985000px;}
.y243{bottom:616.065000px;}
.y109{bottom:618.765000px;}
.y2ae{bottom:618.945000px;}
.y29a{bottom:620.565000px;}
.y1fc{bottom:620.925000px;}
.y171{bottom:627.945000px;}
.y26{bottom:630.285000px;}
.y5d{bottom:630.825000px;}
.y242{bottom:631.545000px;}
.ycd{bottom:632.445000px;}
.y39{bottom:633.705000px;}
.y125{bottom:636.045000px;}
.ye9{bottom:636.765000px;}
.y108{bottom:640.545000px;}
.y221{bottom:641.445000px;}
.y293{bottom:642.885000px;}
.y1bb{bottom:649.185000px;}
.y5c{bottom:652.605000px;}
.yac{bottom:653.325000px;}
.ycc{bottom:654.585000px;}
.y124{bottom:657.825000px;}
.ye8{bottom:658.545000px;}
.y2ad{bottom:658.725000px;}
.y25{bottom:659.625000px;}
.y107{bottom:662.325000px;}
.y38{bottom:674.205000px;}
.y192{bottom:674.565000px;}
.yab{bottom:675.105000px;}
.y123{bottom:679.605000px;}
.y163{bottom:682.845000px;}
.y106{bottom:684.285000px;}
.y241{bottom:684.825000px;}
.y24{bottom:688.785000px;}
.ycb{bottom:694.725000px;}
.y37{bottom:696.345000px;}
.yaa{bottom:696.885000px;}
.ye7{bottom:698.325000px;}
.y5b{bottom:699.405000px;}
.y122{bottom:701.385000px;}
.y105{bottom:706.065000px;}
.y2ac{bottom:707.685000px;}
.y23{bottom:718.125000px;}
.ya9{bottom:718.845000px;}
.ye6{bottom:720.285000px;}
.yc{bottom:722.625000px;}
.y121{bottom:723.345000px;}
.y1b7{bottom:724.245000px;}
.y258{bottom:727.125000px;}
.y104{bottom:727.845000px;}
.y1d7{bottom:730.725000px;}
.y2ab{bottom:733.965000px;}
.yca{bottom:734.505000px;}
.y23f{bottom:737.925000px;}
.y36{bottom:739.905000px;}
.ya8{bottom:740.625000px;}
.ye5{bottom:742.065000px;}
.y120{bottom:745.125000px;}
.yb{bottom:745.305000px;}
.y22{bottom:747.465000px;}
.yc9{bottom:756.465000px;}
.ya7{bottom:762.405000px;}
.y5a{bottom:763.845000px;}
.y11f{bottom:766.905000px;}
.y78{bottom:767.445000px;}
.y103{bottom:767.625000px;}
.y21e{bottom:773.565000px;}
.y2aa{bottom:773.745000px;}
.y21{bottom:778.065000px;}
.yc8{bottom:778.605000px;}
.y35{bottom:779.685000px;}
.ya6{bottom:784.185000px;}
.y59{bottom:785.625000px;}
.y1d6{bottom:787.425000px;}
.y11e{bottom:788.685000px;}
.y102{bottom:789.585000px;}
.y142{bottom:790.665000px;}
.ya{bottom:790.845000px;}
.y34{bottom:801.645000px;}
.ye4{bottom:803.625000px;}
.ya5{bottom:805.965000px;}
.y58{bottom:807.585000px;}
.y20{bottom:808.305000px;}
.y101{bottom:811.365000px;}
.y23e{bottom:812.265000px;}
.y2a9{bottom:813.525000px;}
.y9{bottom:813.705000px;}
.y1b4{bottom:814.965000px;}
.y190{bottom:816.945000px;}
.yc7{bottom:818.745000px;}
.y33{bottom:823.470000px;}
.y291{bottom:825.450000px;}
.ye3{bottom:825.630000px;}
.y11d{bottom:826.530000px;}
.ya4{bottom:827.970000px;}
.y57{bottom:829.410000px;}
.y18f{bottom:832.470000px;}
.y100{bottom:833.190000px;}
.y2a8{bottom:835.350000px;}
.y8{bottom:836.430000px;}
.y1f{bottom:838.770000px;}
.yc6{bottom:840.570000px;}
.y277{bottom:841.110000px;}
.y1d5{bottom:843.270000px;}
.y32{bottom:845.250000px;}
.ye2{bottom:847.410000px;}
.ya3{bottom:849.750000px;}
.yff{bottom:854.970000px;}
.y2a7{bottom:857.310000px;}
.y7{bottom:859.290000px;}
.yc5{bottom:862.350000px;}
.y1d4{bottom:865.230000px;}
.y1a6{bottom:866.130000px;}
.y252{bottom:867.030000px;}
.y23d{bottom:868.470000px;}
.y1e{bottom:869.010000px;}
.y56{bottom:869.190000px;}
.y21b{bottom:870.990000px;}
.yc4{bottom:884.310000px;}
.y31{bottom:885.030000px;}
.ya2{bottom:890.430000px;}
.y55{bottom:890.970000px;}
.yfe{bottom:894.750000px;}
.y276{bottom:897.090000px;}
.y1d1{bottom:898.710000px;}
.y1d{bottom:899.250000px;}
.y30{bottom:906.810000px;}
.y1fb{bottom:907.170000px;}
.y76{bottom:908.250000px;}
.y6{bottom:908.790000px;}
.y13e{bottom:909.510000px;}
.ya1{bottom:912.390000px;}
.y54{bottom:912.750000px;}
.yfd{bottom:916.710000px;}
.y275{bottom:918.870000px;}
.y214{bottom:919.590000px;}
.y1c{bottom:923.550000px;}
.yc3{bottom:924.090000px;}
.y2f{bottom:928.770000px;}
.y1f4{bottom:932.550000px;}
.ya0{bottom:934.170000px;}
.y53{bottom:934.710000px;}
.yfc{bottom:938.490000px;}
.y274{bottom:940.650000px;}
.y5{bottom:943.170000px;}
.yc2{bottom:945.870000px;}
.y15c{bottom:949.110000px;}
.y2e{bottom:950.550000px;}
.y1cf{bottom:951.810000px;}
.y52{bottom:956.490000px;}
.y2a6{bottom:962.610000px;}
.y28e{bottom:965.310000px;}
.yc1{bottom:967.650000px;}
.y75{bottom:973.410000px;}
.y9f{bottom:973.950000px;}
.y273{bottom:974.130000px;}
.ye1{bottom:974.490000px;}
.y1b{bottom:977.730000px;}
.y24e{bottom:978.090000px;}
.yfb{bottom:978.270000px;}
.y4{bottom:984.570000px;}
.yc0{bottom:989.610000px;}
.y74{bottom:995.370000px;}
.y9e{bottom:995.730000px;}
.y51{bottom:996.270000px;}
.y2d{bottom:997.350000px;}
.y2a5{bottom:1002.390000px;}
.y1ce{bottom:1004.910000px;}
.ybf{bottom:1011.390000px;}
.y73{bottom:1017.870000px;}
.y50{bottom:1018.050000px;}
.y3{bottom:1019.850000px;}
.y272{bottom:1023.990000px;}
.y13c{bottom:1026.150000px;}
.y9d{bottom:1039.650000px;}
.y4f{bottom:1040.010000px;}
.y2{bottom:1042.710000px;}
.y1a{bottom:1049.010000px;}
.y9c{bottom:1061.430000px;}
.y2c{bottom:1061.790000px;}
.y1{bottom:1064.490000px;}
.y18{bottom:1080.180000px;}
.h27{height:22.500000px;}
.h18{height:22.860000px;}
.h4e{height:31.500000px;}
.h3e{height:33.300000px;}
.hf{height:33.840000px;}
.h3c{height:35.280000px;}
.h2a{height:35.856000px;}
.h3a{height:38.160000px;}
.h7{height:38.340000px;}
.h30{height:40.843828px;}
.h1c{height:42.480000px;}
.h36{height:42.516000px;}
.h1b{height:42.660000px;}
.h35{height:44.100000px;}
.h10{height:45.720703px;}
.h1f{height:48.436523px;}
.h12{height:49.536000px;}
.h11{height:49.680000px;}
.h43{height:49.860000px;}
.h22{height:50.597578px;}
.h3b{height:52.740000px;}
.h32{height:53.100000px;}
.h23{height:53.280000px;}
.h4b{height:53.316000px;}
.h4a{height:54.360000px;}
.hc{height:56.320312px;}
.h52{height:58.536000px;}
.hd{height:59.415469px;}
.h8{height:62.327813px;}
.h2c{height:62.820000px;}
.h21{height:63.360000px;}
.h37{height:65.520000px;}
.h1{height:69.086250px;}
.h2{height:69.552000px;}
.h25{height:70.740000px;}
.h26{height:70.776000px;}
.h31{height:72.396000px;}
.h2d{height:78.156000px;}
.h2b{height:78.300000px;}
.h51{height:81.000000px;}
.h24{height:81.078047px;}
.h4f{height:84.960000px;}
.h3f{height:85.176000px;}
.h46{height:92.160000px;}
.h4{height:94.500000px;}
.h6{height:95.245664px;}
.hb{height:97.416000px;}
.h47{height:98.820000px;}
.h17{height:99.874688px;}
.h50{height:104.940000px;}
.h16{height:110.736000px;}
.h1d{height:112.140000px;}
.h13{height:115.020000px;}
.h14{height:117.216000px;}
.h19{height:118.260000px;}
.h40{height:119.880000px;}
.he{height:125.406562px;}
.h3{height:126.252000px;}
.h44{height:127.440000px;}
.h48{height:127.476000px;}
.h2e{height:127.620000px;}
.h41{height:127.656000px;}
.h34{height:129.780000px;}
.h45{height:129.996000px;}
.h9{height:137.016000px;}
.h20{height:137.700000px;}
.h1e{height:138.816000px;}
.h3d{height:147.780000px;}
.h5{height:152.670000px;}
.h33{height:156.090000px;}
.ha{height:158.760000px;}
.h4d{height:165.600000px;}
.h42{height:170.100000px;}
.h28{height:170.130000px;}
.h49{height:198.030000px;}
.h15{height:198.540000px;}
.h29{height:201.240000px;}
.h4c{height:228.630000px;}
.h1a{height:250.950000px;}
.h39{height:278.130000px;}
.h38{height:279.750000px;}
.h2f{height:286.230000px;}
.h0{height:1188.000000px;}
.w2{width:79.560000px;}
.w10{width:100.260000px;}
.w1f{width:102.060000px;}
.w18{width:145.980000px;}
.w4{width:156.060000px;}
.w9{width:165.270000px;}
.w6{width:166.500000px;}
.w7{width:167.250000px;}
.w8{width:196.590000px;}
.w27{width:210.450000px;}
.wd{width:211.170000px;}
.w26{width:214.230000px;}
.w22{width:214.950000px;}
.wb{width:215.670000px;}
.w16{width:220.890000px;}
.w1b{width:231.690000px;}
.w29{width:232.410000px;}
.w15{width:233.490000px;}
.w1d{width:243.030000px;}
.w24{width:244.470000px;}
.w13{width:252.750000px;}
.w25{width:258.870000px;}
.we{width:269.670000px;}
.w2a{width:274.890000px;}
.w14{width:456.015000px;}
.wc{width:482.295000px;}
.w1c{width:487.515000px;}
.w23{width:504.975000px;}
.w28{width:508.935000px;}
.w5{width:542.085000px;}
.w19{width:577.005000px;}
.w11{width:601.845000px;}
.w3{width:603.825000px;}
.w20{width:616.245000px;}
.wa{width:699.585000px;}
.wf{width:702.105000px;}
.w12{width:710.205000px;}
.w1a{width:720.825000px;}
.w21{width:721.545000px;}
.w17{width:722.985000px;}
.w1e{width:763.665000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:6.840000px;}
.x1c{left:8.100000px;}
.x17{left:10.080000px;}
.x19{left:12.780000px;}
.x21{left:22.860000px;}
.x28{left:26.100000px;}
.xd{left:27.225000px;}
.x33{left:37.620000px;}
.xe{left:53.865000px;}
.x26{left:99.936000px;}
.x1{left:108.035986px;}
.xb{left:109.476000px;}
.x2{left:118.655986px;}
.x3{left:120.096000px;}
.x8{left:124.595986px;}
.x9{left:135.035986px;}
.xf{left:136.115986px;}
.x2d{left:137.555986px;}
.xa{left:162.029986px;}
.x10{left:189.029986px;}
.x5{left:201.090000px;}
.x1d{left:208.290000px;}
.x29{left:210.090000px;}
.x11{left:216.029986px;}
.x22{left:254.010000px;}
.x6{left:265.349986px;}
.xc{left:266.970000px;}
.x12{left:277.410000px;}
.x16{left:286.419000px;}
.x23{left:294.699000px;}
.x2a{left:300.099000px;}
.x2f{left:308.739000px;}
.x30{left:321.375000px;}
.x2b{left:325.335000px;}
.x18{left:326.775000px;}
.x1e{left:332.499000px;}
.x24{left:342.795000px;}
.x1f{left:363.675000px;}
.x13{left:446.115000px;}
.x1a{left:539.385000px;}
.x31{left:555.405000px;}
.x2c{left:571.425000px;}
.x25{left:587.265000px;}
.x20{left:598.785000px;}
.x14{left:644.145000px;}
.x27{left:766.734000px;}
.x15{left:791.789986px;}
.x7{left:800.969986px;}
.x1b{left:844.169986px;}
.x2e{left:855.149986px;}
.x32{left:863.069986px;}
@media print{
.v1{vertical-align:-80.640000pt;}
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-0.736000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.213333pt;}
.ls10{letter-spacing:-0.198933pt;}
.ls12{letter-spacing:-0.135467pt;}
.lsd{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.058667pt;}
.lse{letter-spacing:-0.023040pt;}
.ls1d{letter-spacing:-0.016000pt;}
.ls24{letter-spacing:-0.007040pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.033280pt;}
.lsb{letter-spacing:0.035840pt;}
.lsa{letter-spacing:0.058667pt;}
.ls16{letter-spacing:0.099733pt;}
.ls0{letter-spacing:0.102400pt;}
.ls8{letter-spacing:0.105067pt;}
.ls1b{letter-spacing:0.112000pt;}
.ls1a{letter-spacing:0.144000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.214400pt;}
.ls23{letter-spacing:0.224000pt;}
.ls4{letter-spacing:0.271467pt;}
.ls20{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.294400pt;}
.ls21{letter-spacing:0.311680pt;}
.ls17{letter-spacing:0.320000pt;}
.ls1{letter-spacing:22.156800pt;}
.lsf{letter-spacing:44.410027pt;}
.ls19{letter-spacing:49.232640pt;}
.ls1c{letter-spacing:57.871360pt;}
.ls7{letter-spacing:58.726400pt;}
.ls22{letter-spacing:59.151360pt;}
.ls6{letter-spacing:60.646400pt;}
.ls5{letter-spacing:61.286400pt;}
.ls3{letter-spacing:64.486400pt;}
.ws18{word-spacing:-85.120000pt;}
.wsd{word-spacing:-58.880000pt;}
.ws16{word-spacing:-53.120000pt;}
.wsf{word-spacing:-28.537600pt;}
.ws15{word-spacing:-28.536533pt;}
.ws13{word-spacing:-28.422933pt;}
.ws0{word-spacing:-28.323200pt;}
.ws1b{word-spacing:-28.316160pt;}
.wsc{word-spacing:-28.124267pt;}
.ws12{word-spacing:-28.109867pt;}
.ws5{word-spacing:-16.640107pt;}
.wse{word-spacing:-16.368640pt;}
.wsa{word-spacing:-16.271573pt;}
.ws10{word-spacing:-16.233173pt;}
.ws6{word-spacing:-15.897600pt;}
.ws3{word-spacing:-15.708267pt;}
.ws7{word-spacing:-15.661867pt;}
.ws8{word-spacing:-15.639040pt;}
.ws4{word-spacing:-15.603200pt;}
.wsb{word-spacing:-15.580160pt;}
.ws9{word-spacing:-15.544533pt;}
.ws11{word-spacing:-14.767360pt;}
.ws1{word-spacing:-13.954560pt;}
.ws17{word-spacing:-13.456000pt;}
.ws1a{word-spacing:-13.344000pt;}
.ws19{word-spacing:-11.686400pt;}
.ws14{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-14.511147pt;}
._29{margin-left:-12.583467pt;}
._5{margin-left:-8.631467pt;}
._8{margin-left:-6.974080pt;}
._9{margin-left:-5.888640pt;}
._27{margin-left:-4.558080pt;}
._6{margin-left:-3.665920pt;}
._a{margin-left:-2.649600pt;}
._0{margin-left:-1.582293pt;}
._2{width:1.052373pt;}
._28{width:1.943040pt;}
._e{width:2.841173pt;}
._1a{width:4.038613pt;}
._1b{width:5.173973pt;}
._31{width:6.064640pt;}
._10{width:7.006720pt;}
._11{width:8.169387pt;}
._12{width:9.340373pt;}
._f{width:10.296533pt;}
._c{width:11.540480pt;}
._b{width:12.482560pt;}
._d{width:13.504213pt;}
._15{width:14.937813pt;}
._16{width:17.546240pt;}
._17{width:19.305173pt;}
._1c{width:20.497707pt;}
._14{width:22.433280pt;}
._13{width:23.426773pt;}
._21{width:24.611840pt;}
._18{width:25.720320pt;}
._19{width:26.781653pt;}
._23{width:27.732480pt;}
._1d{width:30.087680pt;}
._2d{width:31.619840pt;}
._2c{width:32.994133pt;}
._25{width:34.739200pt;}
._24{width:35.850453pt;}
._20{width:40.921600pt;}
._1f{width:41.863680pt;}
._1e{width:42.974933pt;}
._26{width:44.046507pt;}
._22{width:62.263680pt;}
._2e{width:64.096000pt;}
._2f{width:65.376000pt;}
._4{width:79.212800pt;}
._2b{width:103.160107pt;}
._2a{width:104.293973pt;}
._32{width:174.108160pt;}
._33{width:175.101653pt;}
._34{width:176.633387pt;}
._1{width:180.855467pt;}
._30{width:373.409493pt;}
._3{width:751.770027pt;}
.fs6{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:80.000000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y139{bottom:2.720000pt;}
.y206{bottom:3.040000pt;}
.y1b3{bottom:4.640000pt;}
.y20b{bottom:4.800000pt;}
.y77{bottom:5.280000pt;}
.y15{bottom:5.600000pt;}
.y19f{bottom:6.720000pt;}
.y1d8{bottom:6.880000pt;}
.y1ed{bottom:7.680000pt;}
.y208{bottom:8.320000pt;}
.y15b{bottom:9.120000pt;}
.y289{bottom:9.760000pt;}
.y21c{bottom:10.560000pt;}
.y28a{bottom:10.720000pt;}
.y201{bottom:10.880000pt;}
.y21d{bottom:11.520000pt;}
.y1b5{bottom:11.560000pt;}
.y23c{bottom:11.680000pt;}
.y267{bottom:12.320000pt;}
.y1b6{bottom:12.680000pt;}
.y18e{bottom:12.794667pt;}
.y152{bottom:12.960000pt;}
.y80{bottom:13.120000pt;}
.y175{bottom:14.560000pt;}
.y172{bottom:14.720000pt;}
.y1e9{bottom:15.360000pt;}
.y176{bottom:15.520000pt;}
.y1c4{bottom:15.546667pt;}
.y1ee{bottom:15.560000pt;}
.y173{bottom:15.680000pt;}
.y1ea{bottom:16.320000pt;}
.y13d{bottom:16.640000pt;}
.y13b{bottom:16.800000pt;}
.y162{bottom:17.440000pt;}
.y1f2{bottom:17.920000pt;}
.y170{bottom:18.080000pt;}
.y229{bottom:18.240000pt;}
.y205{bottom:18.560000pt;}
.y209{bottom:18.720000pt;}
.y185{bottom:18.760000pt;}
.y191{bottom:18.880000pt;}
.y271{bottom:19.034667pt;}
.y195{bottom:19.040000pt;}
.y1b2{bottom:20.480000pt;}
.y21a{bottom:20.640000pt;}
.y240{bottom:21.280000pt;}
.y202{bottom:21.440000pt;}
.y1e7{bottom:21.920000pt;}
.y282{bottom:21.946667pt;}
.y17c{bottom:22.720000pt;}
.y89{bottom:22.880000pt;}
.y1bc{bottom:23.520000pt;}
.y1c1{bottom:23.546667pt;}
.y1ec{bottom:23.560000pt;}
.y204{bottom:23.840000pt;}
.y26f{bottom:24.154667pt;}
.y1d0{bottom:24.160000pt;}
.y1fa{bottom:24.320000pt;}
.y1bd{bottom:24.640000pt;}
.y257{bottom:24.800000pt;}
.y14{bottom:24.986667pt;}
.y1d2{bottom:25.760000pt;}
.y193{bottom:25.920000pt;}
.y18d{bottom:26.554667pt;}
.y220{bottom:26.560000pt;}
.y1e0{bottom:26.586667pt;}
.y29e{bottom:26.720000pt;}
.y151{bottom:27.040000pt;}
.y23b{bottom:27.520000pt;}
.y266{bottom:28.320000pt;}
.y231{bottom:29.600000pt;}
.y251{bottom:29.760000pt;}
.y1b8{bottom:30.560000pt;}
.y7f{bottom:30.720000pt;}
.y8c{bottom:30.880000pt;}
.y1ba{bottom:31.520000pt;}
.y1c3{bottom:31.546667pt;}
.y213{bottom:31.674667pt;}
.y1f1{bottom:31.680000pt;}
.y1be{bottom:32.640000pt;}
.y146{bottom:32.680000pt;}
.y161{bottom:33.440000pt;}
.y1f3{bottom:33.760000pt;}
.y228{bottom:34.080000pt;}
.y1fd{bottom:34.240000pt;}
.y28d{bottom:34.400000pt;}
.y1d3{bottom:34.560000pt;}
.y270{bottom:34.714667pt;}
.y194{bottom:34.720000pt;}
.y19c{bottom:34.746667pt;}
.y183{bottom:34.760000pt;}
.y16f{bottom:35.360000pt;}
.y290{bottom:35.520000pt;}
.y24f{bottom:36.640000pt;}
.y1c0{bottom:37.306667pt;}
.y292{bottom:37.440000pt;}
.y22e{bottom:37.600000pt;}
.y1b1{bottom:37.760000pt;}
.y219{bottom:37.920000pt;}
.y1f9{bottom:38.080000pt;}
.y17b{bottom:38.720000pt;}
.y1c8{bottom:38.880000pt;}
.y287{bottom:39.200000pt;}
.y281{bottom:39.226667pt;}
.y1e6{bottom:39.360000pt;}
.y1c5{bottom:39.386667pt;}
.y2a0{bottom:39.400000pt;}
.y253{bottom:39.680000pt;}
.y18c{bottom:40.314667pt;}
.y7a{bottom:40.480000pt;}
.y256{bottom:40.640000pt;}
.y197{bottom:41.440000pt;}
.y19a{bottom:41.466667pt;}
.y224{bottom:42.080000pt;}
.y28c{bottom:42.400000pt;}
.y1df{bottom:42.426667pt;}
.y21f{bottom:42.440000pt;}
.y153{bottom:43.040000pt;}
.y23a{bottom:43.680000pt;}
.y265{bottom:44.160000pt;}
.y13{bottom:44.346667pt;}
.y1cb{bottom:45.280000pt;}
.y212{bottom:45.434667pt;}
.y22c{bottom:45.440000pt;}
.y178{bottom:45.600000pt;}
.y250{bottom:45.760000pt;}
.y17d{bottom:46.560000pt;}
.y141{bottom:46.720000pt;}
.y1b9{bottom:47.360000pt;}
.y1c2{bottom:47.386667pt;}
.y15d{bottom:48.160000pt;}
.y88{bottom:48.320000pt;}
.y8b{bottom:48.480000pt;}
.y7e{bottom:48.520000pt;}
.y254{bottom:48.640000pt;}
.y145{bottom:48.680000pt;}
.y222{bottom:48.960000pt;}
.y160{bottom:49.280000pt;}
.y227{bottom:49.920000pt;}
.y83{bottom:50.080000pt;}
.y198{bottom:50.400000pt;}
.y19b{bottom:50.426667pt;}
.y180{bottom:50.600000pt;}
.y28f{bottom:51.360000pt;}
.y20a{bottom:51.680000pt;}
.y1f8{bottom:51.840000pt;}
.y20f{bottom:52.314667pt;}
.y247{bottom:52.320000pt;}
.y16e{bottom:52.640000pt;}
.y19{bottom:53.440000pt;}
.y1b0{bottom:53.600000pt;}
.y18b{bottom:54.074667pt;}
.y17a{bottom:54.560000pt;}
.y218{bottom:55.200000pt;}
.y285{bottom:55.520000pt;}
.y1a5{bottom:56.320000pt;}
.y255{bottom:56.480000pt;}
.y280{bottom:56.506667pt;}
.y1e5{bottom:56.640000pt;}
.y187{bottom:56.794667pt;}
.y1f5{bottom:56.960000pt;}
.y150{bottom:57.120000pt;}
.y223{bottom:57.920000pt;}
.y79{bottom:58.120000pt;}
.y1de{bottom:58.266667pt;}
.y211{bottom:59.194667pt;}
.y259{bottom:59.200000pt;}
.y22b{bottom:59.226667pt;}
.y1ca{bottom:59.360000pt;}
.y239{bottom:59.520000pt;}
.y264{bottom:60.186667pt;}
.y1e2{bottom:60.320000pt;}
.y140{bottom:60.800000pt;}
.y14d{bottom:60.960000pt;}
.y249{bottom:61.280000pt;}
.y230{bottom:61.306667pt;}
.y144{bottom:62.760000pt;}
.y12{bottom:63.706667pt;}
.y17f{bottom:64.360000pt;}
.y233{bottom:64.480000pt;}
.y15f{bottom:65.120000pt;}
.y1da{bottom:65.146667pt;}
.y1c7{bottom:65.760000pt;}
.y226{bottom:65.920000pt;}
.y87{bottom:66.080000pt;}
.y8a{bottom:66.106667pt;}
.y7d{bottom:66.120000pt;}
.y299{bottom:66.400000pt;}
.y182{bottom:66.440000pt;}
.y82{bottom:67.680000pt;}
.y215{bottom:68.320000pt;}
.y16d{bottom:68.480000pt;}
.y25a{bottom:69.280000pt;}
.y22d{bottom:69.306667pt;}
.y179{bottom:70.400000pt;}
.y18a{bottom:70.714667pt;}
.y1af{bottom:71.040000pt;}
.y14f{bottom:71.200000pt;}
.y1a1{bottom:71.240000pt;}
.y294{bottom:71.360000pt;}
.y1a4{bottom:72.360000pt;}
.y1e4{bottom:72.480000pt;}
.y210{bottom:73.114667pt;}
.y1c9{bottom:73.120000pt;}
.y27f{bottom:73.786667pt;}
.y1dd{bottom:74.106667pt;}
.y13f{bottom:74.880000pt;}
.y14c{bottom:75.040000pt;}
.y238{bottom:75.520000pt;}
.y263{bottom:76.026667pt;}
.y25d{bottom:76.826667pt;}
.y143{bottom:76.840000pt;}
.y248{bottom:77.120000pt;}
.y22f{bottom:77.306667pt;}
.y1a8{bottom:78.240000pt;}
.y15e{bottom:80.960000pt;}
.y225{bottom:81.760000pt;}
.y1f7{bottom:82.240000pt;}
.y181{bottom:82.280000pt;}
.y298{bottom:82.400000pt;}
.y284{bottom:83.040000pt;}
.y11{bottom:83.226667pt;}
.y86{bottom:83.680000pt;}
.y7c{bottom:83.720000pt;}
.y189{bottom:84.474667pt;}
.y16c{bottom:85.920000pt;}
.y1ae{bottom:86.880000pt;}
.y1a3{bottom:88.200000pt;}
.y1e3{bottom:88.320000pt;}
.y24c{bottom:88.520000pt;}
.y1dc{bottom:89.946667pt;}
.y25c{bottom:90.746667pt;}
.y237{bottom:91.360000pt;}
.y1a7{bottom:92.000000pt;}
.y262{bottom:92.186667pt;}
.ye{bottom:92.666667pt;}
.y1f6{bottom:96.000000pt;}
.y1cc{bottom:96.032000pt;}
.y279{bottom:97.306667pt;}
.y184{bottom:98.120000pt;}
.y188{bottom:98.234667pt;}
.y297{bottom:98.240000pt;}
.y165{bottom:100.320000pt;}
.y85{bottom:101.280000pt;}
.y7b{bottom:101.320000pt;}
.y13a{bottom:101.632000pt;}
.y16b{bottom:101.760000pt;}
.y10{bottom:102.586667pt;}
.y2a4{bottom:102.592000pt;}
.y4e{bottom:103.392000pt;}
.y1a2{bottom:104.040000pt;}
.y1ad{bottom:104.160000pt;}
.y217{bottom:104.320000pt;}
.y24b{bottom:104.360000pt;}
.y72{bottom:104.512000pt;}
.y14b{bottom:104.960000pt;}
.y236{bottom:105.280000pt;}
.y1db{bottom:105.786667pt;}
.y261{bottom:108.026667pt;}
.y27e{bottom:109.786667pt;}
.y296{bottom:112.160000pt;}
.ye0{bottom:113.152000pt;}
.y164{bottom:114.080000pt;}
.y26e{bottom:115.872000pt;}
.y11c{bottom:116.832000pt;}
.yfa{bottom:118.432000pt;}
.y9b{bottom:118.592000pt;}
.y14a{bottom:119.040000pt;}
.y235{bottom:119.200000pt;}
.y84{bottom:119.360000pt;}
.y1ac{bottom:120.000000pt;}
.y216{bottom:120.160000pt;}
.yf{bottom:121.946667pt;}
.y2a3{bottom:121.952000pt;}
.y4d{bottom:122.912000pt;}
.y71{bottom:123.872000pt;}
.y260{bottom:124.026667pt;}
.y295{bottom:126.080000pt;}
.y2bd{bottom:127.872000pt;}
.y186{bottom:131.072000pt;}
.y20e{bottom:132.192000pt;}
.ydf{bottom:132.512000pt;}
.y234{bottom:132.960000pt;}
.y16a{bottom:134.920000pt;}
.y149{bottom:135.040000pt;}
.y1ab{bottom:135.840000pt;}
.y286{bottom:136.000000pt;}
.y11b{bottom:136.186667pt;}
.yf9{bottom:137.786667pt;}
.y9a{bottom:137.946667pt;}
.y25f{bottom:140.826667pt;}
.y70{bottom:143.226667pt;}
.y27d{bottom:144.346667pt;}
.y138{bottom:147.066667pt;}
.y1f0{bottom:148.826667pt;}
.y148{bottom:149.120000pt;}
.y169{bottom:150.760000pt;}
.y2a2{bottom:151.706667pt;}
.y1aa{bottom:151.840000pt;}
.y24d{bottom:152.026667pt;}
.y99{bottom:157.146667pt;}
.y25e{bottom:157.306667pt;}
.y4c{bottom:158.266667pt;}
.y27c{bottom:160.186667pt;}
.y6f{bottom:162.586667pt;}
.y2bc{bottom:163.226667pt;}
.y168{bottom:166.760000pt;}
.ybe{bottom:167.546667pt;}
.y1a9{bottom:167.680000pt;}
.yde{bottom:168.026667pt;}
.y26d{bottom:168.826667pt;}
.y11a{bottom:171.546667pt;}
.y27b{bottom:176.186667pt;}
.yf8{bottom:176.666667pt;}
.y98{bottom:176.986667pt;}
.y4b{bottom:177.626667pt;}
.y6e{bottom:182.106667pt;}
.y26c{bottom:182.586667pt;}
.y167{bottom:182.600000pt;}
.ybd{bottom:186.906667pt;}
.ydd{bottom:187.386667pt;}
.y119{bottom:191.066667pt;}
.y27a{bottom:192.026667pt;}
.y24a{bottom:195.226667pt;}
.y28b{bottom:195.386667pt;}
.yf7{bottom:196.026667pt;}
.y97{bottom:196.186667pt;}
.y4a{bottom:196.986667pt;}
.y166{bottom:198.440000pt;}
.y2a1{bottom:198.906667pt;}
.y137{bottom:200.186667pt;}
.y6d{bottom:201.466667pt;}
.y2bb{bottom:201.946667pt;}
.ybc{bottom:206.266667pt;}
.ydc{bottom:206.746667pt;}
.y1ff{bottom:210.266667pt;}
.y118{bottom:210.426667pt;}
.y1a0{bottom:214.746667pt;}
.yf6{bottom:215.386667pt;}
.y96{bottom:215.866667pt;}
.y49{bottom:216.346667pt;}
.y1ef{bottom:217.946667pt;}
.y136{bottom:219.546667pt;}
.y6c{bottom:220.826667pt;}
.ybb{bottom:225.786667pt;}
.ydb{bottom:226.106667pt;}
.y1cd{bottom:228.354667pt;}
.y117{bottom:229.786667pt;}
.yf5{bottom:234.746667pt;}
.y95{bottom:235.226667pt;}
.y26b{bottom:235.706667pt;}
.y48{bottom:235.866667pt;}
.y2ba{bottom:237.306667pt;}
.y135{bottom:238.906667pt;}
.yba{bottom:245.146667pt;}
.yda{bottom:245.466667pt;}
.y29f{bottom:246.266667pt;}
.y116{bottom:249.146667pt;}
.y26a{bottom:249.466667pt;}
.y15a{bottom:250.906667pt;}
.yf4{bottom:254.266667pt;}
.y47{bottom:255.066667pt;}
.y6b{bottom:256.186667pt;}
.y2b9{bottom:256.826667pt;}
.y134{bottom:258.266667pt;}
.y20d{bottom:259.226667pt;}
.y17e{bottom:264.346667pt;}
.y1eb{bottom:266.746667pt;}
.y115{bottom:268.506667pt;}
.y94{bottom:270.906667pt;}
.y46{bottom:274.746667pt;}
.y6a{bottom:275.706667pt;}
.y133{bottom:277.786667pt;}
.yb9{bottom:280.506667pt;}
.yd9{bottom:280.986667pt;}
.y288{bottom:281.826667pt;}
.y232{bottom:283.586667pt;}
.yf3{bottom:289.666667pt;}
.y20c{bottom:290.946667pt;}
.y2b8{bottom:292.226667pt;}
.y45{bottom:294.146667pt;}
.y69{bottom:295.106667pt;}
.y132{bottom:297.186667pt;}
.y29d{bottom:298.306667pt;}
.yb8{bottom:299.906667pt;}
.yd8{bottom:300.386667pt;}
.y159{bottom:300.546667pt;}
.y114{bottom:304.066667pt;}
.y1fe{bottom:304.706667pt;}
.y93{bottom:306.306667pt;}
.yf2{bottom:309.026667pt;}
.y2b7{bottom:311.586667pt;}
.y44{bottom:313.826667pt;}
.y68{bottom:314.466667pt;}
.y1e8{bottom:315.426667pt;}
.y131{bottom:316.546667pt;}
.yb7{bottom:319.266667pt;}
.y158{bottom:319.906667pt;}
.y113{bottom:323.266667pt;}
.y283{bottom:323.426667pt;}
.y246{bottom:324.386667pt;}
.y92{bottom:325.826667pt;}
.y2b6{bottom:330.946667pt;}
.y43{bottom:333.186667pt;}
.y67{bottom:333.826667pt;}
.yd7{bottom:335.746667pt;}
.y157{bottom:339.426667pt;}
.y112{bottom:342.946667pt;}
.yf1{bottom:344.386667pt;}
.y91{bottom:345.186667pt;}
.y130{bottom:351.906667pt;}
.y42{bottom:352.866667pt;}
.y66{bottom:353.186667pt;}
.yb6{bottom:354.786667pt;}
.yd6{bottom:355.106667pt;}
.y156{bottom:358.786667pt;}
.y111{bottom:362.466667pt;}
.yf0{bottom:363.746667pt;}
.y90{bottom:364.546667pt;}
.y2b5{bottom:366.466667pt;}
.y1e1{bottom:368.226667pt;}
.y12f{bottom:371.426667pt;}
.y41{bottom:372.226667pt;}
.y1c6{bottom:372.386667pt;}
.yb5{bottom:374.146667pt;}
.yd5{bottom:374.626667pt;}
.y29c{bottom:374.946667pt;}
.y155{bottom:378.146667pt;}
.y19e{bottom:379.586667pt;}
.y110{bottom:381.826667pt;}
.yef{bottom:383.266667pt;}
.y207{bottom:383.746667pt;}
.y8f{bottom:383.906667pt;}
.y2b4{bottom:385.826667pt;}
.y29b{bottom:388.706667pt;}
.y65{bottom:389.346667pt;}
.y12e{bottom:390.786667pt;}
.y40{bottom:391.586667pt;}
.yb4{bottom:393.506667pt;}
.yd4{bottom:393.986667pt;}
.y177{bottom:398.786667pt;}
.y10f{bottom:401.186667pt;}
.yee{bottom:402.626667pt;}
.y64{bottom:408.866667pt;}
.y12d{bottom:410.146667pt;}
.y3f{bottom:411.266667pt;}
.y154{bottom:412.546667pt;}
.yb3{bottom:412.866667pt;}
.y203{bottom:415.106667pt;}
.y8e{bottom:418.306667pt;}
.y269{bottom:420.066667pt;}
.y10e{bottom:420.546667pt;}
.y2b3{bottom:421.186667pt;}
.yed{bottom:421.986667pt;}
.y14e{bottom:425.026667pt;}
.y63{bottom:428.386667pt;}
.yd3{bottom:429.346667pt;}
.y12c{bottom:429.506667pt;}
.y19d{bottom:429.826667pt;}
.y3e{bottom:430.626667pt;}
.y8d{bottom:434.306667pt;}
.y268{bottom:439.426667pt;}
.y10d{bottom:440.066667pt;}
.y2b2{bottom:440.546667pt;}
.y2b{bottom:441.026667pt;}
.y22a{bottom:445.826667pt;}
.y62{bottom:447.746667pt;}
.yb2{bottom:448.386667pt;}
.yd2{bottom:448.706667pt;}
.y12b{bottom:448.866667pt;}
.y17{bottom:449.986667pt;}
.y245{bottom:451.266667pt;}
.yec{bottom:454.146667pt;}
.y2a{bottom:457.826667pt;}
.y25b{bottom:459.266667pt;}
.y200{bottom:461.986667pt;}
.y61{bottom:467.106667pt;}
.yb1{bottom:467.746667pt;}
.yd1{bottom:468.066667pt;}
.y12a{bottom:468.386667pt;}
.y16{bottom:470.306667pt;}
.y199{bottom:473.826667pt;}
.y10c{bottom:475.746667pt;}
.y2b1{bottom:475.906667pt;}
.y29{bottom:481.186667pt;}
.y278{bottom:484.226667pt;}
.y3d{bottom:485.666667pt;}
.y60{bottom:486.466667pt;}
.yb0{bottom:487.106667pt;}
.y129{bottom:487.746667pt;}
.yeb{bottom:489.346667pt;}
.yd{bottom:492.066667pt;}
.y10b{bottom:495.266667pt;}
.y2b0{bottom:495.426667pt;}
.y1bf{bottom:496.706667pt;}
.y1d9{bottom:497.186667pt;}
.y244{bottom:497.986667pt;}
.yd0{bottom:503.426667pt;}
.y3c{bottom:505.053333pt;}
.yaf{bottom:506.493333pt;}
.y128{bottom:507.133333pt;}
.y28{bottom:508.253333pt;}
.y174{bottom:509.533333pt;}
.y5f{bottom:522.013333pt;}
.ycf{bottom:522.973333pt;}
.y3b{bottom:524.413333pt;}
.y147{bottom:524.893333pt;}
.yae{bottom:525.853333pt;}
.y127{bottom:526.493333pt;}
.y10a{bottom:530.653333pt;}
.y2af{bottom:530.813333pt;}
.y27{bottom:534.173333pt;}
.y196{bottom:536.733333pt;}
.y81{bottom:537.693333pt;}
.y5e{bottom:541.373333pt;}
.yce{bottom:542.653333pt;}
.y3a{bottom:543.773333pt;}
.yad{bottom:545.373333pt;}
.y126{bottom:546.013333pt;}
.yea{bottom:546.653333pt;}
.y243{bottom:547.613333pt;}
.y109{bottom:550.013333pt;}
.y2ae{bottom:550.173333pt;}
.y29a{bottom:551.613333pt;}
.y1fc{bottom:551.933333pt;}
.y171{bottom:558.173333pt;}
.y26{bottom:560.253333pt;}
.y5d{bottom:560.733333pt;}
.y242{bottom:561.373333pt;}
.ycd{bottom:562.173333pt;}
.y39{bottom:563.293333pt;}
.y125{bottom:565.373333pt;}
.ye9{bottom:566.013333pt;}
.y108{bottom:569.373333pt;}
.y221{bottom:570.173333pt;}
.y293{bottom:571.453333pt;}
.y1bb{bottom:577.053333pt;}
.y5c{bottom:580.093333pt;}
.yac{bottom:580.733333pt;}
.ycc{bottom:581.853333pt;}
.y124{bottom:584.733333pt;}
.ye8{bottom:585.373333pt;}
.y2ad{bottom:585.533333pt;}
.y25{bottom:586.333333pt;}
.y107{bottom:588.733333pt;}
.y38{bottom:599.293333pt;}
.y192{bottom:599.613333pt;}
.yab{bottom:600.093333pt;}
.y123{bottom:604.093333pt;}
.y163{bottom:606.973333pt;}
.y106{bottom:608.253333pt;}
.y241{bottom:608.733333pt;}
.y24{bottom:612.253333pt;}
.ycb{bottom:617.533333pt;}
.y37{bottom:618.973333pt;}
.yaa{bottom:619.453333pt;}
.ye7{bottom:620.733333pt;}
.y5b{bottom:621.693333pt;}
.y122{bottom:623.453333pt;}
.y105{bottom:627.613333pt;}
.y2ac{bottom:629.053333pt;}
.y23{bottom:638.333333pt;}
.ya9{bottom:638.973333pt;}
.ye6{bottom:640.253333pt;}
.yc{bottom:642.333333pt;}
.y121{bottom:642.973333pt;}
.y1b7{bottom:643.773333pt;}
.y258{bottom:646.333333pt;}
.y104{bottom:646.973333pt;}
.y1d7{bottom:649.533333pt;}
.y2ab{bottom:652.413333pt;}
.yca{bottom:652.893333pt;}
.y23f{bottom:655.933333pt;}
.y36{bottom:657.693333pt;}
.ya8{bottom:658.333333pt;}
.ye5{bottom:659.613333pt;}
.y120{bottom:662.333333pt;}
.yb{bottom:662.493333pt;}
.y22{bottom:664.413333pt;}
.yc9{bottom:672.413333pt;}
.ya7{bottom:677.693333pt;}
.y5a{bottom:678.973333pt;}
.y11f{bottom:681.693333pt;}
.y78{bottom:682.173333pt;}
.y103{bottom:682.333333pt;}
.y21e{bottom:687.613333pt;}
.y2aa{bottom:687.773333pt;}
.y21{bottom:691.613333pt;}
.yc8{bottom:692.093333pt;}
.y35{bottom:693.053333pt;}
.ya6{bottom:697.053333pt;}
.y59{bottom:698.333333pt;}
.y1d6{bottom:699.933333pt;}
.y11e{bottom:701.053333pt;}
.y102{bottom:701.853333pt;}
.y142{bottom:702.813333pt;}
.ya{bottom:702.973333pt;}
.y34{bottom:712.573333pt;}
.ye4{bottom:714.333333pt;}
.ya5{bottom:716.413333pt;}
.y58{bottom:717.853333pt;}
.y20{bottom:718.493333pt;}
.y101{bottom:721.213333pt;}
.y23e{bottom:722.013333pt;}
.y2a9{bottom:723.133333pt;}
.y9{bottom:723.293333pt;}
.y1b4{bottom:724.413333pt;}
.y190{bottom:726.173333pt;}
.yc7{bottom:727.773333pt;}
.y33{bottom:731.973333pt;}
.y291{bottom:733.733333pt;}
.ye3{bottom:733.893333pt;}
.y11d{bottom:734.693333pt;}
.ya4{bottom:735.973333pt;}
.y57{bottom:737.253333pt;}
.y18f{bottom:739.973333pt;}
.y100{bottom:740.613333pt;}
.y2a8{bottom:742.533333pt;}
.y8{bottom:743.493333pt;}
.y1f{bottom:745.573333pt;}
.yc6{bottom:747.173333pt;}
.y277{bottom:747.653333pt;}
.y1d5{bottom:749.573333pt;}
.y32{bottom:751.333333pt;}
.ye2{bottom:753.253333pt;}
.ya3{bottom:755.333333pt;}
.yff{bottom:759.973333pt;}
.y2a7{bottom:762.053333pt;}
.y7{bottom:763.813333pt;}
.yc5{bottom:766.533333pt;}
.y1d4{bottom:769.093333pt;}
.y1a6{bottom:769.893333pt;}
.y252{bottom:770.693333pt;}
.y23d{bottom:771.973333pt;}
.y1e{bottom:772.453333pt;}
.y56{bottom:772.613333pt;}
.y21b{bottom:774.213333pt;}
.yc4{bottom:786.053333pt;}
.y31{bottom:786.693333pt;}
.ya2{bottom:791.493333pt;}
.y55{bottom:791.973333pt;}
.yfe{bottom:795.333333pt;}
.y276{bottom:797.413333pt;}
.y1d1{bottom:798.853333pt;}
.y1d{bottom:799.333333pt;}
.y30{bottom:806.053333pt;}
.y1fb{bottom:806.373333pt;}
.y76{bottom:807.333333pt;}
.y6{bottom:807.813333pt;}
.y13e{bottom:808.453333pt;}
.ya1{bottom:811.013333pt;}
.y54{bottom:811.333333pt;}
.yfd{bottom:814.853333pt;}
.y275{bottom:816.773333pt;}
.y214{bottom:817.413333pt;}
.y1c{bottom:820.933333pt;}
.yc3{bottom:821.413333pt;}
.y2f{bottom:825.573333pt;}
.y1f4{bottom:828.933333pt;}
.ya0{bottom:830.373333pt;}
.y53{bottom:830.853333pt;}
.yfc{bottom:834.213333pt;}
.y274{bottom:836.133333pt;}
.y5{bottom:838.373333pt;}
.yc2{bottom:840.773333pt;}
.y15c{bottom:843.653333pt;}
.y2e{bottom:844.933333pt;}
.y1cf{bottom:846.053333pt;}
.y52{bottom:850.213333pt;}
.y2a6{bottom:855.653333pt;}
.y28e{bottom:858.053333pt;}
.yc1{bottom:860.133333pt;}
.y75{bottom:865.253333pt;}
.y9f{bottom:865.733333pt;}
.y273{bottom:865.893333pt;}
.ye1{bottom:866.213333pt;}
.y1b{bottom:869.093333pt;}
.y24e{bottom:869.413333pt;}
.yfb{bottom:869.573333pt;}
.y4{bottom:875.173333pt;}
.yc0{bottom:879.653333pt;}
.y74{bottom:884.773333pt;}
.y9e{bottom:885.093333pt;}
.y51{bottom:885.573333pt;}
.y2d{bottom:886.533333pt;}
.y2a5{bottom:891.013333pt;}
.y1ce{bottom:893.253333pt;}
.ybf{bottom:899.013333pt;}
.y73{bottom:904.773333pt;}
.y50{bottom:904.933333pt;}
.y3{bottom:906.533333pt;}
.y272{bottom:910.213333pt;}
.y13c{bottom:912.133333pt;}
.y9d{bottom:924.133333pt;}
.y4f{bottom:924.453333pt;}
.y2{bottom:926.853333pt;}
.y1a{bottom:932.453333pt;}
.y9c{bottom:943.493333pt;}
.y2c{bottom:943.813333pt;}
.y1{bottom:946.213333pt;}
.y18{bottom:960.160000pt;}
.h27{height:20.000000pt;}
.h18{height:20.320000pt;}
.h4e{height:28.000000pt;}
.h3e{height:29.600000pt;}
.hf{height:30.080000pt;}
.h3c{height:31.360000pt;}
.h2a{height:31.872000pt;}
.h3a{height:33.920000pt;}
.h7{height:34.080000pt;}
.h30{height:36.305625pt;}
.h1c{height:37.760000pt;}
.h36{height:37.792000pt;}
.h1b{height:37.920000pt;}
.h35{height:39.200000pt;}
.h10{height:40.640625pt;}
.h1f{height:43.054688pt;}
.h12{height:44.032000pt;}
.h11{height:44.160000pt;}
.h43{height:44.320000pt;}
.h22{height:44.975625pt;}
.h3b{height:46.880000pt;}
.h32{height:47.200000pt;}
.h23{height:47.360000pt;}
.h4b{height:47.392000pt;}
.h4a{height:48.320000pt;}
.hc{height:50.062500pt;}
.h52{height:52.032000pt;}
.hd{height:52.813750pt;}
.h8{height:55.402500pt;}
.h2c{height:55.840000pt;}
.h21{height:56.320000pt;}
.h37{height:58.240000pt;}
.h1{height:61.410000pt;}
.h2{height:61.824000pt;}
.h25{height:62.880000pt;}
.h26{height:62.912000pt;}
.h31{height:64.352000pt;}
.h2d{height:69.472000pt;}
.h2b{height:69.600000pt;}
.h51{height:72.000000pt;}
.h24{height:72.069375pt;}
.h4f{height:75.520000pt;}
.h3f{height:75.712000pt;}
.h46{height:81.920000pt;}
.h4{height:84.000000pt;}
.h6{height:84.662813pt;}
.hb{height:86.592000pt;}
.h47{height:87.840000pt;}
.h17{height:88.777500pt;}
.h50{height:93.280000pt;}
.h16{height:98.432000pt;}
.h1d{height:99.680000pt;}
.h13{height:102.240000pt;}
.h14{height:104.192000pt;}
.h19{height:105.120000pt;}
.h40{height:106.560000pt;}
.he{height:111.472500pt;}
.h3{height:112.224000pt;}
.h44{height:113.280000pt;}
.h48{height:113.312000pt;}
.h2e{height:113.440000pt;}
.h41{height:113.472000pt;}
.h34{height:115.360000pt;}
.h45{height:115.552000pt;}
.h9{height:121.792000pt;}
.h20{height:122.400000pt;}
.h1e{height:123.392000pt;}
.h3d{height:131.360000pt;}
.h5{height:135.706667pt;}
.h33{height:138.746667pt;}
.ha{height:141.120000pt;}
.h4d{height:147.200000pt;}
.h42{height:151.200000pt;}
.h28{height:151.226667pt;}
.h49{height:176.026667pt;}
.h15{height:176.480000pt;}
.h29{height:178.880000pt;}
.h4c{height:203.226667pt;}
.h1a{height:223.066667pt;}
.h39{height:247.226667pt;}
.h38{height:248.666667pt;}
.h2f{height:254.426667pt;}
.h0{height:1056.000000pt;}
.w2{width:70.720000pt;}
.w10{width:89.120000pt;}
.w1f{width:90.720000pt;}
.w18{width:129.760000pt;}
.w4{width:138.720000pt;}
.w9{width:146.906667pt;}
.w6{width:148.000000pt;}
.w7{width:148.666667pt;}
.w8{width:174.746667pt;}
.w27{width:187.066667pt;}
.wd{width:187.706667pt;}
.w26{width:190.426667pt;}
.w22{width:191.066667pt;}
.wb{width:191.706667pt;}
.w16{width:196.346667pt;}
.w1b{width:205.946667pt;}
.w29{width:206.586667pt;}
.w15{width:207.546667pt;}
.w1d{width:216.026667pt;}
.w24{width:217.306667pt;}
.w13{width:224.666667pt;}
.w25{width:230.106667pt;}
.we{width:239.706667pt;}
.w2a{width:244.346667pt;}
.w14{width:405.346667pt;}
.wc{width:428.706667pt;}
.w1c{width:433.346667pt;}
.w23{width:448.866667pt;}
.w28{width:452.386667pt;}
.w5{width:481.853333pt;}
.w19{width:512.893333pt;}
.w11{width:534.973333pt;}
.w3{width:536.733333pt;}
.w20{width:547.773333pt;}
.wa{width:621.853333pt;}
.wf{width:624.093333pt;}
.w12{width:631.293333pt;}
.w1a{width:640.733333pt;}
.w21{width:641.373333pt;}
.w17{width:642.653333pt;}
.w1e{width:678.813333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.080000pt;}
.x1c{left:7.200000pt;}
.x17{left:8.960000pt;}
.x19{left:11.360000pt;}
.x21{left:20.320000pt;}
.x28{left:23.200000pt;}
.xd{left:24.200000pt;}
.x33{left:33.440000pt;}
.xe{left:47.880000pt;}
.x26{left:88.832000pt;}
.x1{left:96.031988pt;}
.xb{left:97.312000pt;}
.x2{left:105.471988pt;}
.x3{left:106.752000pt;}
.x8{left:110.751988pt;}
.x9{left:120.031988pt;}
.xf{left:120.991988pt;}
.x2d{left:122.271988pt;}
.xa{left:144.026655pt;}
.x10{left:168.026655pt;}
.x5{left:178.746667pt;}
.x1d{left:185.146667pt;}
.x29{left:186.746667pt;}
.x11{left:192.026655pt;}
.x22{left:225.786667pt;}
.x6{left:235.866655pt;}
.xc{left:237.306667pt;}
.x12{left:246.586667pt;}
.x16{left:254.594667pt;}
.x23{left:261.954667pt;}
.x2a{left:266.754667pt;}
.x2f{left:274.434667pt;}
.x30{left:285.666667pt;}
.x2b{left:289.186667pt;}
.x18{left:290.466667pt;}
.x1e{left:295.554667pt;}
.x24{left:304.706667pt;}
.x1f{left:323.266667pt;}
.x13{left:396.546667pt;}
.x1a{left:479.453333pt;}
.x31{left:493.693333pt;}
.x2c{left:507.933333pt;}
.x25{left:522.013333pt;}
.x20{left:532.253333pt;}
.x14{left:572.573333pt;}
.x27{left:681.541333pt;}
.x15{left:703.813321pt;}
.x7{left:711.973321pt;}
.x1b{left:750.373321pt;}
.x2e{left:760.133321pt;}
.x32{left:767.173321pt;}
}




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