
    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_a73505449aa07ed51119f7ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.215332;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_46611e50f572e56f129506e7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000488;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_eb835cfe79afdb5919ca83d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.006348;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_89887222dd41fa844c890c4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_66e0d68fd6ad098f2ee7eea5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_1a43997db483042457957c30.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8ac663b5b436727d1128e111.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093000;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_ec52175f64a3c3c0dc5ca211.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.215332;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_ae8cea28389d8e173aed2417.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091309;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_fa8e1c4b43df3520cdc7949a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.870117;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_85799ded8b39e9a17ecaca5b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.054688;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_a1f9b43013ad5696db8ef941.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_e7d1ce015b629482e365bf25.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.689941;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_491b3ed4d8034bbb00bf638f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.091309;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_2831da8d1b988239d77a0952.woff2')format("woff");}.fff{font-family:fff;line-height:0.677246;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_9151aa47903ec9155a7aab1b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.960938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v8{vertical-align:-27.180000px;}
.v2{vertical-align:-19.998000px;}
.v7{vertical-align:-18.180000px;}
.v3{vertical-align:-9.899940px;}
.va{vertical-align:-8.100000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:9.000000px;}
.v9{vertical-align:16.362000px;}
.v5{vertical-align:18.180000px;}
.v1{vertical-align:19.998000px;}
.vb{vertical-align:24.462000px;}
.v6{vertical-align:27.180000px;}
.v4{vertical-align:29.898000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.003060px;}
.lsb{letter-spacing:0.003120px;}
.ls6{letter-spacing:0.005940px;}
.ls1{letter-spacing:0.006000px;}
.ls7{letter-spacing:0.006060px;}
.ls9{letter-spacing:0.009000px;}
.ls8{letter-spacing:0.012000px;}
.ls4{letter-spacing:0.024000px;}
.ls2{letter-spacing:0.792000px;}
.ls3{letter-spacing:4.686000px;}
.ls5{letter-spacing:10.716000px;}
.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;}
}
.ws2{word-spacing:-90.993058px;}
.wsd{word-spacing:-86.660055px;}
.wsb{word-spacing:-51.984000px;}
.ws5{word-spacing:-39.798000px;}
.wsa{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.500000px;}
.ws6{word-spacing:-15.000000px;}
.ws8{word-spacing:-13.500000px;}
.ws0{word-spacing:-10.500000px;}
.ws7{word-spacing:-9.750000px;}
.ws9{word-spacing:-9.000000px;}
.ws3{word-spacing:0.000000px;}
.ws4{word-spacing:35.988000px;}
.wsc{word-spacing:108.000000px;}
._e{margin-left:-2190.630120px;}
._1a{margin-left:-4.818000px;}
._9{margin-left:-3.300000px;}
._12{margin-left:-2.244000px;}
._8{margin-left:-1.188000px;}
._3{width:1.716000px;}
._4{width:3.168000px;}
._11{width:4.224000px;}
._7{width:5.346000px;}
._2{width:7.194000px;}
._6{width:8.778000px;}
._14{width:9.834000px;}
._16{width:10.890000px;}
._10{width:12.078000px;}
._d{width:13.266000px;}
._c{width:14.850000px;}
._13{width:17.622000px;}
._b{width:18.678000px;}
._a{width:20.592000px;}
._5{width:22.704000px;}
._1{width:24.354000px;}
._18{width:25.542000px;}
._15{width:26.664000px;}
._21{width:28.404000px;}
._17{width:29.454000px;}
._1d{width:31.284000px;}
._22{width:33.066000px;}
._1b{width:34.848000px;}
._f{width:39.204000px;}
._1f{width:42.636000px;}
._20{width:70.224000px;}
._19{width:91.938000px;}
._24{width:126.000000px;}
._23{width:162.000000px;}
._1c{width:195.492000px;}
._1e{width:947.189940px;}
._0{width:977.969940px;}
._25{width:998.189940px;}
.fc2{color:rgb(80,87,89);}
.fc1{color:rgb(211,207,229);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs9{font-size:39.000000px;}
.fs3{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fsb{font-size:120.000000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:3.000000px;}
.y1d6{bottom:4.177485px;}
.yf3{bottom:14.647494px;}
.yf0{bottom:14.647496px;}
.yed{bottom:14.647498px;}
.yf5{bottom:14.647501px;}
.yf9{bottom:14.647505px;}
.ye1{bottom:16.106996px;}
.y92{bottom:16.106998px;}
.yd8{bottom:16.106999px;}
.ya9{bottom:16.107002px;}
.yde{bottom:16.107006px;}
.y96{bottom:17.240998px;}
.ya0{bottom:19.072501px;}
.y94{bottom:19.679998px;}
.ya3{bottom:19.680002px;}
.y9b{bottom:21.651000px;}
.y99{bottom:23.430000px;}
.y2{bottom:24.739495px;}
.y9e{bottom:24.929998px;}
.yee{bottom:28.307998px;}
.y107{bottom:28.682995px;}
.yca{bottom:31.283998px;}
.ye0{bottom:31.658996px;}
.yd1{bottom:31.658998px;}
.ye4{bottom:31.659003px;}
.y97{bottom:36.365998px;}
.yab{bottom:38.620506px;}
.yb2{bottom:38.924999px;}
.yad{bottom:39.757496px;}
.yb4{bottom:40.567504px;}
.yec{bottom:41.966998px;}
.y101{bottom:42.716996px;}
.y114{bottom:42.717003px;}
.yba{bottom:43.304998px;}
.yc5{bottom:43.305005px;}
.ya1{bottom:43.447502px;}
.ybc{bottom:44.257498px;}
.yc0{bottom:44.257502px;}
.y9c{bottom:44.526000px;}
.ycb{bottom:46.460998px;}
.yda{bottom:46.461002px;}
.yce{bottom:46.835998px;}
.ydc{bottom:46.836002px;}
.y1{bottom:53.100005px;}
.y12b{bottom:56.752509px;}
.yb7{bottom:68.140500px;}
.ye6{bottom:73.852502px;}
.yd6{bottom:82.247998px;}
.yb8{bottom:83.317500px;}
.y141{bottom:84.821990px;}
.ybe{bottom:87.958500px;}
.yb6{bottom:98.494500px;}
.y110{bottom:98.856005px;}
.yb0{bottom:101.015995px;}
.y125{bottom:112.891483px;}
.yc3{bottom:115.531487px;}
.yc4{bottom:121.960510px;}
.yc1{bottom:121.960528px;}
.yfc{bottom:126.925528px;}
.y14b{bottom:129.560985px;}
.yaf{bottom:131.370010px;}
.y4c{bottom:136.129500px;}
.y77{bottom:137.702970px;}
.y73{bottom:137.702985px;}
.y66{bottom:137.703030px;}
.y8b{bottom:137.703060px;}
.y143{bottom:139.369534px;}
.y144{bottom:139.369556px;}
.ya6{bottom:142.727994px;}
.yc2{bottom:145.885487px;}
.y1d1{bottom:146.392455px;}
.y1b9{bottom:146.392530px;}
.ya7{bottom:157.905009px;}
.y188{bottom:162.406485px;}
.y1d0{bottom:167.090955px;}
.y1b8{bottom:167.091030px;}
.y142{bottom:167.438961px;}
.y140{bottom:167.438965px;}
.y1d8{bottom:168.001465px;}
.y103{bottom:169.030505px;}
.y139{bottom:169.030513px;}
.y4b{bottom:169.519515px;}
.y72{bottom:171.092985px;}
.y8d{bottom:171.093000px;}
.y65{bottom:171.093030px;}
.y80{bottom:171.359775px;}
.ya5{bottom:173.081994px;}
.y8f{bottom:173.436000px;}
.y187{bottom:183.104985px;}
.y13{bottom:184.201538px;}
.y1cf{bottom:187.789455px;}
.y1b7{bottom:187.789485px;}
.y11{bottom:190.047030px;}
.y13f{bottom:195.508480px;}
.y4a{bottom:202.909500px;}
.y186{bottom:203.803515px;}
.y11b{bottom:204.012000px;}
.y64{bottom:204.482970px;}
.y71{bottom:204.483000px;}
.y8e{bottom:205.000500px;}
.ybf{bottom:207.460483px;}
.ybd{bottom:207.460485px;}
.y1b6{bottom:208.487970px;}
.y1ce{bottom:208.488030px;}
.y10{bottom:223.437030px;}
.y13e{bottom:223.577999px;}
.y185{bottom:224.502015px;}
.y1b5{bottom:229.186500px;}
.y1cd{bottom:229.186530px;}
.y11a{bottom:234.366000px;}
.y49{bottom:236.299515px;}
.y76{bottom:237.872970px;}
.y63{bottom:237.872985px;}
.y8c{bottom:237.873000px;}
.y7e{bottom:237.873015px;}
.y83{bottom:237.873060px;}
.y86{bottom:238.139790px;}
.y184{bottom:245.200455px;}
.y1b4{bottom:249.885030px;}
.y13d{bottom:251.647518px;}
.y183{bottom:265.898955px;}
.y145{bottom:267.272989px;}
.y119{bottom:269.265000px;}
.y48{bottom:269.689515px;}
.y1b3{bottom:270.583530px;}
.y75{bottom:271.262985px;}
.y62{bottom:271.263000px;}
.y85{bottom:271.263030px;}
.y13c{bottom:279.716991px;}
.y182{bottom:286.597485px;}
.y1b2{bottom:291.281970px;}
.y1cc{bottom:291.282000px;}
.ybb{bottom:294.864002px;}
.y47{bottom:303.079515px;}
.y61{bottom:304.652970px;}
.y7f{bottom:304.652985px;}
.y70{bottom:304.653000px;}
.y181{bottom:307.295985px;}
.y13b{bottom:307.786511px;}
.y117{bottom:310.070991px;}
.y118{bottom:310.070995px;}
.y1b1{bottom:311.980470px;}
.y1cb{bottom:311.980500px;}
.y180{bottom:327.994530px;}
.y1b0{bottom:332.679000px;}
.y1d5{bottom:335.827500px;}
.y13a{bottom:335.855984px;}
.y138{bottom:335.855987px;}
.y46{bottom:336.469515px;}
.y2d{bottom:338.042970px;}
.y60{bottom:338.042985px;}
.y6f{bottom:338.043000px;}
.y7d{bottom:338.043015px;}
.y116{bottom:338.140511px;}
.y17f{bottom:348.693030px;}
.y1af{bottom:353.377500px;}
.y137{bottom:363.925503px;}
.y113{bottom:366.209982px;}
.y115{bottom:366.209984px;}
.y17e{bottom:369.391515px;}
.y45{bottom:369.859515px;}
.y2c{bottom:371.432985px;}
.y5f{bottom:371.433000px;}
.y7c{bottom:371.433030px;}
.y1ae{bottom:374.076000px;}
.yb5{bottom:382.267500px;}
.yb9{bottom:382.267502px;}
.y17d{bottom:390.090015px;}
.y136{bottom:391.995022px;}
.yf{bottom:392.997015px;}
.y112{bottom:394.279503px;}
.y1ad{bottom:394.774485px;}
.y1ca{bottom:394.774500px;}
.yea{bottom:400.482015px;}
.y44{bottom:403.249470px;}
.y5e{bottom:404.822970px;}
.y74{bottom:404.822985px;}
.y2b{bottom:404.823000px;}
.y89{bottom:404.823015px;}
.y17c{bottom:410.788500px;}
.y1c9{bottom:415.473000px;}
.y1ac{bottom:415.473015px;}
.y135{bottom:420.064495px;}
.y111{bottom:422.349022px;}
.ye9{bottom:430.836015px;}
.ye{bottom:431.386515px;}
.y17b{bottom:431.487000px;}
.y1c8{bottom:436.171500px;}
.y1ab{bottom:436.171515px;}
.y43{bottom:436.639485px;}
.y2a{bottom:438.212970px;}
.y5d{bottom:438.212985px;}
.y6e{bottom:438.213015px;}
.y82{bottom:443.212515px;}
.y14{bottom:443.580000px;}
.y134{bottom:448.134014px;}
.y10f{bottom:450.418495px;}
.y17a{bottom:452.185485px;}
.y1c7{bottom:456.870000px;}
.y1aa{bottom:456.870015px;}
.ye8{bottom:465.735030px;}
.yb3{bottom:467.767511px;}
.yd{bottom:468.777000px;}
.y42{bottom:470.029500px;}
.y29{bottom:471.602985px;}
.y5c{bottom:471.603000px;}
.y88{bottom:471.603015px;}
.y179{bottom:472.883985px;}
.y133{bottom:476.203487px;}
.y1a9{bottom:477.568515px;}
.y10e{bottom:478.488014px;}
.y178{bottom:493.582530px;}
.y1a8{bottom:498.267015px;}
.y41{bottom:503.419515px;}
.y132{bottom:504.273006px;}
.y6d{bottom:504.992985px;}
.y28{bottom:504.993000px;}
.y5b{bottom:504.993015px;}
.ye5{bottom:506.541013px;}
.ye7{bottom:506.541023px;}
.y10d{bottom:506.557487px;}
.yc{bottom:507.166500px;}
.y177{bottom:514.281015px;}
.y1a7{bottom:518.965515px;}
.y131{bottom:532.342480px;}
.y10c{bottom:534.627006px;}
.y176{bottom:534.979515px;}
.y40{bottom:536.809485px;}
.ye3{bottom:537.645012px;}
.y27{bottom:538.382970px;}
.y5a{bottom:538.382985px;}
.y6c{bottom:538.383000px;}
.y87{bottom:538.383015px;}
.y1a6{bottom:539.664015px;}
.y1c6{bottom:539.664030px;}
.yb{bottom:544.557030px;}
.yb1{bottom:547.792516px;}
.yae{bottom:547.792520px;}
.y175{bottom:555.678015px;}
.y1a5{bottom:560.362500px;}
.y1c5{bottom:560.362530px;}
.y130{bottom:560.411999px;}
.y10b{bottom:562.696480px;}
.ye2{bottom:568.749001px;}
.y3f{bottom:570.199500px;}
.y6b{bottom:571.772970px;}
.y26{bottom:571.772985px;}
.y59{bottom:571.773000px;}
.y84{bottom:571.773015px;}
.y174{bottom:576.376500px;}
.y1a4{bottom:581.061000px;}
.y1c4{bottom:581.061030px;}
.ya{bottom:582.946530px;}
.y12f{bottom:588.481518px;}
.y10a{bottom:590.765999px;}
.y173{bottom:597.075000px;}
.ydf{bottom:599.852989px;}
.y1a3{bottom:601.759500px;}
.y1c3{bottom:601.759515px;}
.y3e{bottom:603.589500px;}
.y58{bottom:605.162985px;}
.y25{bottom:605.163000px;}
.y7b{bottom:605.163015px;}
.y12e{bottom:616.550991px;}
.y172{bottom:617.773515px;}
.y109{bottom:618.835518px;}
.y9{bottom:620.337015px;}
.y1a2{bottom:622.458000px;}
.y1c2{bottom:622.458015px;}
.yac{bottom:624.532489px;}
.ydd{bottom:630.957024px;}
.y3d{bottom:636.979485px;}
.y171{bottom:638.471985px;}
.y57{bottom:638.552985px;}
.y6a{bottom:638.553000px;}
.y24{bottom:638.553015px;}
.y14f{bottom:639.853500px;}
.y1a1{bottom:643.156515px;}
.y12d{bottom:644.620510px;}
.y106{bottom:646.904990px;}
.y108{bottom:646.904991px;}
.y8{bottom:653.727030px;}
.y170{bottom:659.170500px;}
.ydb{bottom:662.061013px;}
.y1c1{bottom:663.855000px;}
.y1a0{bottom:663.855015px;}
.y14e{bottom:670.207500px;}
.y3c{bottom:670.369500px;}
.y158{bottom:671.625000px;}
.y69{bottom:671.942970px;}
.y23{bottom:671.942985px;}
.y56{bottom:671.943000px;}
.y7a{bottom:671.943015px;}
.y12a{bottom:672.690006px;}
.y12c{bottom:672.690010px;}
.y105{bottom:674.974510px;}
.y154{bottom:676.392000px;}
.y16f{bottom:679.868985px;}
.y1c0{bottom:684.553500px;}
.y19f{bottom:684.553515px;}
.y7{bottom:692.116515px;}
.yd9{bottom:693.165013px;}
.y14d{bottom:700.561500px;}
.y16e{bottom:700.567485px;}
.y129{bottom:700.759502px;}
.y157{bottom:701.979000px;}
.yaa{bottom:702.936009px;}
.y100{bottom:703.044004px;}
.y104{bottom:703.044006px;}
.y102{bottom:703.044010px;}
.y3b{bottom:703.759500px;}
.y1bf{bottom:705.251985px;}
.y19e{bottom:705.252015px;}
.y55{bottom:705.332985px;}
.y22{bottom:705.333000px;}
.y79{bottom:705.333015px;}
.y153{bottom:706.746000px;}
.y16d{bottom:721.266000px;}
.y1be{bottom:725.950485px;}
.y19d{bottom:725.950500px;}
.y1d4{bottom:727.368000px;}
.y128{bottom:728.828999px;}
.y14c{bottom:730.915500px;}
.yff{bottom:731.113503px;}
.y156{bottom:732.333000px;}
.y152{bottom:737.100000px;}
.y3a{bottom:737.149515px;}
.y21{bottom:738.722985px;}
.y54{bottom:738.723000px;}
.y78{bottom:738.723015px;}
.y16c{bottom:741.964515px;}
.y19c{bottom:746.649000px;}
.yd7{bottom:754.623001px;}
.yd5{bottom:754.623017px;}
.y127{bottom:756.898495px;}
.yfe{bottom:759.182999px;}
.y16b{bottom:762.663015px;}
.y155{bottom:762.687000px;}
.y1bd{bottom:767.347500px;}
.y19b{bottom:767.347515px;}
.y151{bottom:767.454000px;}
.y39{bottom:770.539500px;}
.y20{bottom:772.112985px;}
.y53{bottom:772.113000px;}
.y68{bottom:772.113015px;}
.ya4{bottom:779.066991px;}
.ya8{bottom:779.066998px;}
.y16a{bottom:783.361515px;}
.y126{bottom:784.967991px;}
.y124{bottom:784.968002px;}
.yd4{bottom:785.727013px;}
.yfb{bottom:787.252472px;}
.yfd{bottom:787.252495px;}
.y6{bottom:787.287015px;}
.y1d3{bottom:788.046000px;}
.y19a{bottom:788.046015px;}
.y150{bottom:797.808000px;}
.y38{bottom:803.929500px;}
.y169{bottom:804.060000px;}
.y67{bottom:805.502985px;}
.y1f{bottom:805.503000px;}
.y8a{bottom:805.503015px;}
.y199{bottom:808.744485px;}
.y1bc{bottom:808.744500px;}
.ya2{bottom:810.170998px;}
.y123{bottom:813.037510px;}
.yfa{bottom:815.321991px;}
.yd3{bottom:816.831001px;}
.y15b{bottom:817.095000px;}
.y5{bottom:820.677015px;}
.y168{bottom:824.758500px;}
.y198{bottom:829.443000px;}
.y37{bottom:837.319515px;}
.y1e{bottom:838.892985px;}
.y52{bottom:838.893000px;}
.y122{bottom:841.107006px;}
.yf8{bottom:843.391510px;}
.y167{bottom:845.457000px;}
.y15a{bottom:847.449000px;}
.yd2{bottom:847.935013px;}
.y9f{bottom:848.421013px;}
.y197{bottom:850.141485px;}
.y1bb{bottom:850.141500px;}
.y1d2{bottom:850.141515px;}
.y166{bottom:866.155500px;}
.y121{bottom:869.176502px;}
.y36{bottom:870.709500px;}
.y196{bottom:870.840000px;}
.y1ba{bottom:870.840015px;}
.yf7{bottom:871.461006px;}
.y1d{bottom:872.283000px;}
.y159{bottom:877.803000px;}
.yd0{bottom:879.039002px;}
.y14a{bottom:879.964500px;}
.y9d{bottom:885.454502px;}
.y165{bottom:886.854000px;}
.y195{bottom:891.538500px;}
.y4{bottom:891.840015px;}
.y120{bottom:897.245998px;}
.yf6{bottom:899.530502px;}
.y35{bottom:904.099500px;}
.y51{bottom:905.672985px;}
.y1c{bottom:905.673000px;}
.y81{bottom:905.673015px;}
.y164{bottom:907.552500px;}
.ycf{bottom:910.143002px;}
.y149{bottom:910.318500px;}
.y194{bottom:912.237000px;}
.y11f{bottom:925.315506px;}
.yf4{bottom:927.599998px;}
.y163{bottom:928.251000px;}
.y193{bottom:932.935500px;}
.y9a{bottom:934.204500px;}
.y3{bottom:934.338000px;}
.y34{bottom:937.489485px;}
.y1b{bottom:939.063000px;}
.ycd{bottom:941.247002px;}
.y148{bottom:945.217500px;}
.y162{bottom:948.949500px;}
.y11e{bottom:953.385002px;}
.y192{bottom:953.634000px;}
.yf2{bottom:955.669506px;}
.y161{bottom:969.648000px;}
.y33{bottom:970.879500px;}
.ycc{bottom:972.351002px;}
.y50{bottom:972.452985px;}
.y1a{bottom:972.453000px;}
.y191{bottom:974.332500px;}
.y98{bottom:976.395000px;}
.y11d{bottom:981.454504px;}
.yf1{bottom:983.739002px;}
.y160{bottom:990.346500px;}
.y190{bottom:995.031000px;}
.y32{bottom:1004.269500px;}
.y19{bottom:1005.843000px;}
.y11c{bottom:1009.524002px;}
.y15f{bottom:1011.045015px;}
.yef{bottom:1011.808504px;}
.y18f{bottom:1015.729500px;}
.y95{bottom:1022.145002px;}
.y15e{bottom:1031.743515px;}
.yc9{bottom:1033.809002px;}
.y18e{bottom:1036.428000px;}
.y31{bottom:1037.659500px;}
.y18{bottom:1039.233000px;}
.yeb{bottom:1039.878002px;}
.y15d{bottom:1052.442000px;}
.y93{bottom:1055.517002px;}
.y18d{bottom:1057.126500px;}
.y30{bottom:1071.049500px;}
.y4f{bottom:1072.623000px;}
.y15c{bottom:1073.140500px;}
.y18c{bottom:1077.825000px;}
.y147{bottom:1080.270000px;}
.y91{bottom:1093.767002px;}
.y18b{bottom:1098.523500px;}
.y2f{bottom:1104.439500px;}
.y4e{bottom:1106.013000px;}
.yc8{bottom:1110.624000px;}
.yc7{bottom:1118.805000px;}
.y18a{bottom:1119.222000px;}
.y17{bottom:1130.295000px;}
.y2e{bottom:1137.829500px;}
.y4d{bottom:1139.403000px;}
.y189{bottom:1139.920500px;}
.y90{bottom:1140.978000px;}
.y15{bottom:1142.295000px;}
.yc6{bottom:1144.402500px;}
.y146{bottom:1145.523000px;}
.y1d7{bottom:1159.889985px;}
.y12{bottom:1234.889985px;}
.hd{height:12.000000px;}
.hf{height:13.500000px;}
.h45{height:30.319500px;}
.h7{height:30.474609px;}
.h3b{height:31.069500px;}
.he{height:31.788000px;}
.h19{height:33.354000px;}
.h33{height:34.104000px;}
.h1b{height:35.622000px;}
.h10{height:37.086000px;}
.h37{height:37.864922px;}
.h49{height:38.748047px;}
.h1{height:38.911500px;}
.h5{height:39.231445px;}
.h21{height:39.283500px;}
.h39{height:39.418945px;}
.h1a{height:40.500000px;}
.h15{height:41.651414px;}
.h8{height:43.260000px;}
.h24{height:43.798828px;}
.h1e{height:44.440500px;}
.h14{height:44.504883px;}
.hc{height:47.109375px;}
.h6{height:47.888672px;}
.h1d{height:48.000000px;}
.h11{height:48.178711px;}
.h48{height:48.761719px;}
.h3a{height:49.988953px;}
.h2{height:50.440430px;}
.h20{height:51.000000px;}
.h12{height:52.558594px;}
.h30{height:54.609199px;}
.h18{height:56.044922px;}
.h38{height:57.639000px;}
.h3f{height:59.139000px;}
.h3{height:61.318359px;}
.h4{height:61.649414px;}
.h17{height:63.035156px;}
.h2f{height:63.708000px;}
.h31{height:64.458000px;}
.h34{height:65.208000px;}
.h1c{height:73.872000px;}
.h25{height:78.381000px;}
.h28{height:78.990000px;}
.h26{height:80.653500px;}
.h29{height:82.275000px;}
.h3d{height:87.208500px;}
.h4b{height:87.363281px;}
.h2b{height:87.750000px;}
.h22{height:88.033500px;}
.h2c{height:89.653500px;}
.h1f{height:90.190500px;}
.ha{height:91.731445px;}
.h32{height:95.562000px;}
.h42{height:115.278000px;}
.h2a{height:167.775000px;}
.h43{height:171.417000px;}
.h2d{height:177.057000px;}
.h13{height:187.600267px;}
.h40{height:199.486500px;}
.h41{height:227.555985px;}
.h27{height:233.524500px;}
.h36{height:251.082000px;}
.h16{height:254.380297px;}
.h3c{height:255.625515px;}
.h2e{height:262.556985px;}
.h35{height:282.185985px;}
.h23{height:316.950000px;}
.h3e{height:339.834000px;}
.h47{height:354.132000px;}
.h44{height:536.320500px;}
.hb{height:564.285000px;}
.h9{height:894.597000px;}
.h4a{height:918.000000px;}
.h46{height:1188.000000px;}
.h0{height:1263.000000px;}
.w3{width:15.000000px;}
.w6{width:25.884000px;}
.wd{width:34.425000px;}
.w15{width:48.000000px;}
.w17{width:63.675000px;}
.w14{width:67.500000px;}
.w13{width:72.000000px;}
.w11{width:73.500000px;}
.w4{width:78.045000px;}
.wf{width:79.800000px;}
.w1c{width:85.800000px;}
.wb{width:87.300000px;}
.we{width:91.425000px;}
.w18{width:94.350000px;}
.w1b{width:97.200000px;}
.w9{width:97.950000px;}
.wa{width:100.425000px;}
.w1a{width:100.500000px;}
.w10{width:103.200000px;}
.w12{width:105.000000px;}
.w19{width:106.500000px;}
.wc{width:108.975000px;}
.w16{width:112.500000px;}
.w5{width:130.815000px;}
.w8{width:137.925000px;}
.w7{width:161.700000px;}
.w1e{width:705.000000px;}
.w2{width:879.900000px;}
.w1{width:892.499995px;}
.w0{width:892.500000px;}
.w1f{width:906.000000px;}
.w1d{width:918.000000px;}
.x0{left:0.000000px;}
.x9{left:4.500000px;}
.x3b{left:7.088995px;}
.x38{left:8.174993px;}
.x10{left:9.187497px;}
.x42{left:10.921501px;}
.x7{left:12.000000px;}
.x1d{left:14.142005px;}
.x24{left:16.260000px;}
.x2e{left:18.277494px;}
.x39{left:19.969493px;}
.x32{left:21.123005px;}
.x3f{left:22.686001px;}
.x29{left:24.006007px;}
.x1b{left:25.090507px;}
.x1f{left:26.250007px;}
.x21{left:28.239007px;}
.x23{left:29.504996px;}
.x19{left:30.718505px;}
.x28{left:32.593505px;}
.x48{left:34.146000px;}
.x1e{left:35.227505px;}
.x37{left:36.877505px;}
.x26{left:38.388005px;}
.x20{left:39.900005px;}
.x27{left:42.400500px;}
.x17{left:44.788500px;}
.x2b{left:45.922495px;}
.x25{left:47.535000px;}
.x2c{left:48.996000px;}
.x2a{left:50.233500px;}
.x15{left:54.780008px;}
.x4f{left:106.500000px;}
.xe{left:121.875000px;}
.x22{left:126.075005px;}
.x6{left:127.575000px;}
.x4{left:130.099500px;}
.x2d{left:157.500006px;}
.x2{left:160.206000px;}
.xc{left:170.100000px;}
.x4e{left:181.575000px;}
.x49{left:214.500006px;}
.x12{left:218.016003px;}
.x14{left:232.800007px;}
.x3a{left:235.575005px;}
.x2f{left:245.925007px;}
.x3{left:258.762000px;}
.x51{left:265.831485px;}
.x3c{left:296.250000px;}
.x4a{left:308.700004px;}
.x30{left:322.725014px;}
.xf{left:330.750003px;}
.x5{left:334.132500px;}
.x50{left:350.250000px;}
.x3d{left:387.600014px;}
.x16{left:392.250000px;}
.x43{left:393.750000px;}
.x31{left:422.924995px;}
.x11{left:439.499995px;}
.x1{left:442.874995px;}
.x4b{left:462.000000px;}
.x3e{left:491.100014px;}
.x33{left:493.424995px;}
.x44{left:497.250000px;}
.x18{left:527.924995px;}
.x40{left:561.600014px;}
.x4c{left:564.000023px;}
.x45{left:567.750023px;}
.x34{left:595.424995px;}
.x1a{left:623.625023px;}
.x4d{left:633.000023px;}
.x35{left:664.424995px;}
.x46{left:669.750023px;}
.xb{left:697.590000px;}
.x1c{left:721.799995px;}
.x36{left:728.924995px;}
.x41{left:732.600014px;}
.x47{left:738.750023px;}
.xa{left:750.360000px;}
.x13{left:796.455000px;}
.xd{left:804.150015px;}
.x8{left:873.253500px;}
.x52{left:899.670000px;}
@media print{
.v8{vertical-align:-24.160000pt;}
.v2{vertical-align:-17.776000pt;}
.v7{vertical-align:-16.160000pt;}
.v3{vertical-align:-8.799947pt;}
.va{vertical-align:-7.200000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:8.000000pt;}
.v9{vertical-align:14.544000pt;}
.v5{vertical-align:16.160000pt;}
.v1{vertical-align:17.776000pt;}
.vb{vertical-align:21.744000pt;}
.v6{vertical-align:24.160000pt;}
.v4{vertical-align:26.576000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.002720pt;}
.lsb{letter-spacing:0.002773pt;}
.ls6{letter-spacing:0.005280pt;}
.ls1{letter-spacing:0.005333pt;}
.ls7{letter-spacing:0.005387pt;}
.ls9{letter-spacing:0.008000pt;}
.ls8{letter-spacing:0.010667pt;}
.ls4{letter-spacing:0.021333pt;}
.ls2{letter-spacing:0.704000pt;}
.ls3{letter-spacing:4.165333pt;}
.ls5{letter-spacing:9.525333pt;}
.ws2{word-spacing:-80.882718pt;}
.wsd{word-spacing:-77.031160pt;}
.wsb{word-spacing:-46.208000pt;}
.ws5{word-spacing:-35.376000pt;}
.wsa{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.666667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws0{word-spacing:-9.333333pt;}
.ws7{word-spacing:-8.666667pt;}
.ws9{word-spacing:-8.000000pt;}
.ws3{word-spacing:0.000000pt;}
.ws4{word-spacing:31.989333pt;}
.wsc{word-spacing:96.000000pt;}
._e{margin-left:-1947.226773pt;}
._1a{margin-left:-4.282667pt;}
._9{margin-left:-2.933333pt;}
._12{margin-left:-1.994667pt;}
._8{margin-left:-1.056000pt;}
._3{width:1.525333pt;}
._4{width:2.816000pt;}
._11{width:3.754667pt;}
._7{width:4.752000pt;}
._2{width:6.394667pt;}
._6{width:7.802667pt;}
._14{width:8.741333pt;}
._16{width:9.680000pt;}
._10{width:10.736000pt;}
._d{width:11.792000pt;}
._c{width:13.200000pt;}
._13{width:15.664000pt;}
._b{width:16.602667pt;}
._a{width:18.304000pt;}
._5{width:20.181333pt;}
._1{width:21.648000pt;}
._18{width:22.704000pt;}
._15{width:23.701333pt;}
._21{width:25.248000pt;}
._17{width:26.181333pt;}
._1d{width:27.808000pt;}
._22{width:29.392000pt;}
._1b{width:30.976000pt;}
._f{width:34.848000pt;}
._1f{width:37.898667pt;}
._20{width:62.421333pt;}
._19{width:81.722667pt;}
._24{width:112.000000pt;}
._23{width:144.000000pt;}
._1c{width:173.770667pt;}
._1e{width:841.946613pt;}
._0{width:869.306613pt;}
._25{width:887.279947pt;}
.fs7{font-size:32.000000pt;}
.fs9{font-size:34.666667pt;}
.fs3{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fsb{font-size:106.666667pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:2.666667pt;}
.y1d6{bottom:3.713320pt;}
.yf3{bottom:13.019995pt;}
.yf0{bottom:13.019996pt;}
.yed{bottom:13.019998pt;}
.yf5{bottom:13.020001pt;}
.yf9{bottom:13.020004pt;}
.ye1{bottom:14.317329pt;}
.y92{bottom:14.317331pt;}
.yd8{bottom:14.317332pt;}
.ya9{bottom:14.317335pt;}
.yde{bottom:14.317339pt;}
.y96{bottom:15.325331pt;}
.ya0{bottom:16.953335pt;}
.y94{bottom:17.493331pt;}
.ya3{bottom:17.493335pt;}
.y9b{bottom:19.245333pt;}
.y99{bottom:20.826666pt;}
.y2{bottom:21.990662pt;}
.y9e{bottom:22.159998pt;}
.yee{bottom:25.162665pt;}
.y107{bottom:25.495995pt;}
.yca{bottom:27.807998pt;}
.ye0{bottom:28.141329pt;}
.yd1{bottom:28.141332pt;}
.ye4{bottom:28.141336pt;}
.y97{bottom:32.325331pt;}
.yab{bottom:34.329339pt;}
.yb2{bottom:34.599999pt;}
.yad{bottom:35.339996pt;}
.yb4{bottom:36.060004pt;}
.yec{bottom:37.303998pt;}
.y101{bottom:37.970663pt;}
.y114{bottom:37.970669pt;}
.yba{bottom:38.493332pt;}
.yc5{bottom:38.493338pt;}
.ya1{bottom:38.620001pt;}
.ybc{bottom:39.339998pt;}
.yc0{bottom:39.340002pt;}
.y9c{bottom:39.578666pt;}
.ycb{bottom:41.298665pt;}
.yda{bottom:41.298669pt;}
.yce{bottom:41.631998pt;}
.ydc{bottom:41.632002pt;}
.y1{bottom:47.200005pt;}
.y12b{bottom:50.446675pt;}
.yb7{bottom:60.569334pt;}
.ye6{bottom:65.646669pt;}
.yd6{bottom:73.109332pt;}
.yb8{bottom:74.060000pt;}
.y141{bottom:75.397325pt;}
.ybe{bottom:78.185334pt;}
.yb6{bottom:87.550667pt;}
.y110{bottom:87.872004pt;}
.yb0{bottom:89.791995pt;}
.y125{bottom:100.347985pt;}
.yc3{bottom:102.694655pt;}
.yc4{bottom:108.409342pt;}
.yc1{bottom:108.409359pt;}
.yfc{bottom:112.822692pt;}
.y14b{bottom:115.165320pt;}
.yaf{bottom:116.773342pt;}
.y4c{bottom:121.004000pt;}
.y77{bottom:122.402640pt;}
.y73{bottom:122.402653pt;}
.y66{bottom:122.402693pt;}
.y8b{bottom:122.402720pt;}
.y143{bottom:123.884030pt;}
.y144{bottom:123.884050pt;}
.ya6{bottom:126.869328pt;}
.yc2{bottom:129.675988pt;}
.y1d1{bottom:130.126627pt;}
.y1b9{bottom:130.126693pt;}
.ya7{bottom:140.360008pt;}
.y188{bottom:144.361320pt;}
.y1d0{bottom:148.525293pt;}
.y1b8{bottom:148.525360pt;}
.y142{bottom:148.834632pt;}
.y140{bottom:148.834635pt;}
.y1d8{bottom:149.334635pt;}
.y103{bottom:150.249338pt;}
.y139{bottom:150.249345pt;}
.y4b{bottom:150.684013pt;}
.y72{bottom:152.082653pt;}
.y8d{bottom:152.082667pt;}
.y65{bottom:152.082693pt;}
.y80{bottom:152.319800pt;}
.ya5{bottom:153.850662pt;}
.y8f{bottom:154.165333pt;}
.y187{bottom:162.759987pt;}
.y13{bottom:163.734701pt;}
.y1cf{bottom:166.923960pt;}
.y1b7{bottom:166.923987pt;}
.y11{bottom:168.930693pt;}
.y13f{bottom:173.785316pt;}
.y4a{bottom:180.364000pt;}
.y186{bottom:181.158680pt;}
.y11b{bottom:181.344000pt;}
.y64{bottom:181.762640pt;}
.y71{bottom:181.762667pt;}
.y8e{bottom:182.222667pt;}
.ybf{bottom:184.409318pt;}
.ybd{bottom:184.409320pt;}
.y1b6{bottom:185.322640pt;}
.y1ce{bottom:185.322693pt;}
.y10{bottom:198.610693pt;}
.y13e{bottom:198.735999pt;}
.y185{bottom:199.557347pt;}
.y1b5{bottom:203.721333pt;}
.y1cd{bottom:203.721360pt;}
.y11a{bottom:208.325333pt;}
.y49{bottom:210.044013pt;}
.y76{bottom:211.442640pt;}
.y63{bottom:211.442653pt;}
.y8c{bottom:211.442667pt;}
.y7e{bottom:211.442680pt;}
.y83{bottom:211.442720pt;}
.y86{bottom:211.679813pt;}
.y184{bottom:217.955960pt;}
.y1b4{bottom:222.120027pt;}
.y13d{bottom:223.686683pt;}
.y183{bottom:236.354627pt;}
.y145{bottom:237.575990pt;}
.y119{bottom:239.346667pt;}
.y48{bottom:239.724013pt;}
.y1b3{bottom:240.518693pt;}
.y75{bottom:241.122653pt;}
.y62{bottom:241.122667pt;}
.y85{bottom:241.122693pt;}
.y13c{bottom:248.637326pt;}
.y182{bottom:254.753320pt;}
.y1b2{bottom:258.917307pt;}
.y1cc{bottom:258.917333pt;}
.ybb{bottom:262.101335pt;}
.y47{bottom:269.404013pt;}
.y61{bottom:270.802640pt;}
.y7f{bottom:270.802653pt;}
.y70{bottom:270.802667pt;}
.y181{bottom:273.151987pt;}
.y13b{bottom:273.588009pt;}
.y117{bottom:275.618658pt;}
.y118{bottom:275.618662pt;}
.y1b1{bottom:277.315973pt;}
.y1cb{bottom:277.316000pt;}
.y180{bottom:291.550693pt;}
.y1b0{bottom:295.714667pt;}
.y1d5{bottom:298.513333pt;}
.y13a{bottom:298.538652pt;}
.y138{bottom:298.538655pt;}
.y46{bottom:299.084013pt;}
.y2d{bottom:300.482640pt;}
.y60{bottom:300.482653pt;}
.y6f{bottom:300.482667pt;}
.y7d{bottom:300.482680pt;}
.y116{bottom:300.569343pt;}
.y17f{bottom:309.949360pt;}
.y1af{bottom:314.113333pt;}
.y137{bottom:323.489336pt;}
.y113{bottom:325.519984pt;}
.y115{bottom:325.519986pt;}
.y17e{bottom:328.348013pt;}
.y45{bottom:328.764013pt;}
.y2c{bottom:330.162653pt;}
.y5f{bottom:330.162667pt;}
.y7c{bottom:330.162693pt;}
.y1ae{bottom:332.512000pt;}
.yb5{bottom:339.793333pt;}
.yb9{bottom:339.793335pt;}
.y17d{bottom:346.746680pt;}
.y136{bottom:348.440019pt;}
.yf{bottom:349.330680pt;}
.y112{bottom:350.470669pt;}
.y1ad{bottom:350.910653pt;}
.y1ca{bottom:350.910667pt;}
.yea{bottom:355.984013pt;}
.y44{bottom:358.443973pt;}
.y5e{bottom:359.842640pt;}
.y74{bottom:359.842653pt;}
.y2b{bottom:359.842667pt;}
.y89{bottom:359.842680pt;}
.y17c{bottom:365.145333pt;}
.y1c9{bottom:369.309333pt;}
.y1ac{bottom:369.309347pt;}
.y135{bottom:373.390662pt;}
.y111{bottom:375.421353pt;}
.ye9{bottom:382.965347pt;}
.ye{bottom:383.454680pt;}
.y17b{bottom:383.544000pt;}
.y1c8{bottom:387.708000pt;}
.y1ab{bottom:387.708013pt;}
.y43{bottom:388.123987pt;}
.y2a{bottom:389.522640pt;}
.y5d{bottom:389.522653pt;}
.y6e{bottom:389.522680pt;}
.y82{bottom:393.966680pt;}
.y14{bottom:394.293333pt;}
.y134{bottom:398.341346pt;}
.y10f{bottom:400.371996pt;}
.y17a{bottom:401.942653pt;}
.y1c7{bottom:406.106667pt;}
.y1aa{bottom:406.106680pt;}
.ye8{bottom:413.986693pt;}
.yb3{bottom:415.793343pt;}
.yd{bottom:416.690667pt;}
.y42{bottom:417.804000pt;}
.y29{bottom:419.202653pt;}
.y5c{bottom:419.202667pt;}
.y88{bottom:419.202680pt;}
.y179{bottom:420.341320pt;}
.y133{bottom:423.291989pt;}
.y1a9{bottom:424.505347pt;}
.y10e{bottom:425.322679pt;}
.y178{bottom:438.740027pt;}
.y1a8{bottom:442.904013pt;}
.y41{bottom:447.484013pt;}
.y132{bottom:448.242672pt;}
.y6d{bottom:448.882653pt;}
.y28{bottom:448.882667pt;}
.y5b{bottom:448.882680pt;}
.ye5{bottom:450.258678pt;}
.ye7{bottom:450.258687pt;}
.y10d{bottom:450.273322pt;}
.yc{bottom:450.814667pt;}
.y177{bottom:457.138680pt;}
.y1a7{bottom:461.302680pt;}
.y131{bottom:473.193315pt;}
.y10c{bottom:475.224006pt;}
.y176{bottom:475.537347pt;}
.y40{bottom:477.163987pt;}
.ye3{bottom:477.906677pt;}
.y27{bottom:478.562640pt;}
.y5a{bottom:478.562653pt;}
.y6c{bottom:478.562667pt;}
.y87{bottom:478.562680pt;}
.y1a6{bottom:479.701347pt;}
.y1c6{bottom:479.701360pt;}
.yb{bottom:484.050693pt;}
.yb1{bottom:486.926681pt;}
.yae{bottom:486.926685pt;}
.y175{bottom:493.936013pt;}
.y1a5{bottom:498.100000pt;}
.y1c5{bottom:498.100027pt;}
.y130{bottom:498.143999pt;}
.y10b{bottom:500.174649pt;}
.ye2{bottom:505.554667pt;}
.y3f{bottom:506.844000pt;}
.y6b{bottom:508.242640pt;}
.y26{bottom:508.242653pt;}
.y59{bottom:508.242667pt;}
.y84{bottom:508.242680pt;}
.y174{bottom:512.334667pt;}
.y1a4{bottom:516.498667pt;}
.y1c4{bottom:516.498693pt;}
.ya{bottom:518.174693pt;}
.y12f{bottom:523.094683pt;}
.y10a{bottom:525.125332pt;}
.y173{bottom:530.733333pt;}
.ydf{bottom:533.202657pt;}
.y1a3{bottom:534.897333pt;}
.y1c3{bottom:534.897347pt;}
.y3e{bottom:536.524000pt;}
.y58{bottom:537.922653pt;}
.y25{bottom:537.922667pt;}
.y7b{bottom:537.922680pt;}
.y12e{bottom:548.045325pt;}
.y172{bottom:549.132013pt;}
.y109{bottom:550.076016pt;}
.y9{bottom:551.410680pt;}
.y1a2{bottom:553.296000pt;}
.y1c2{bottom:553.296013pt;}
.yac{bottom:555.139991pt;}
.ydd{bottom:560.850688pt;}
.y3d{bottom:566.203987pt;}
.y171{bottom:567.530653pt;}
.y57{bottom:567.602653pt;}
.y6a{bottom:567.602667pt;}
.y24{bottom:567.602680pt;}
.y14f{bottom:568.758667pt;}
.y1a1{bottom:571.694680pt;}
.y12d{bottom:572.996009pt;}
.y106{bottom:575.026658pt;}
.y108{bottom:575.026659pt;}
.y8{bottom:581.090693pt;}
.y170{bottom:585.929333pt;}
.ydb{bottom:588.498678pt;}
.y1c1{bottom:590.093333pt;}
.y1a0{bottom:590.093347pt;}
.y14e{bottom:595.740000pt;}
.y3c{bottom:595.884000pt;}
.y158{bottom:597.000000pt;}
.y69{bottom:597.282640pt;}
.y23{bottom:597.282653pt;}
.y56{bottom:597.282667pt;}
.y7a{bottom:597.282680pt;}
.y12a{bottom:597.946672pt;}
.y12c{bottom:597.946675pt;}
.y105{bottom:599.977342pt;}
.y154{bottom:601.237333pt;}
.y16f{bottom:604.327987pt;}
.y1c0{bottom:608.492000pt;}
.y19f{bottom:608.492013pt;}
.y7{bottom:615.214680pt;}
.yd9{bottom:616.146678pt;}
.y14d{bottom:622.721333pt;}
.y16e{bottom:622.726653pt;}
.y129{bottom:622.897335pt;}
.y157{bottom:623.981333pt;}
.yaa{bottom:624.832008pt;}
.y100{bottom:624.928004pt;}
.y104{bottom:624.928006pt;}
.y102{bottom:624.928009pt;}
.y3b{bottom:625.564000pt;}
.y1bf{bottom:626.890653pt;}
.y19e{bottom:626.890680pt;}
.y55{bottom:626.962653pt;}
.y22{bottom:626.962667pt;}
.y79{bottom:626.962680pt;}
.y153{bottom:628.218667pt;}
.y16d{bottom:641.125333pt;}
.y1be{bottom:645.289320pt;}
.y19d{bottom:645.289333pt;}
.y1d4{bottom:646.549333pt;}
.y128{bottom:647.847999pt;}
.y14c{bottom:649.702667pt;}
.yff{bottom:649.878669pt;}
.y156{bottom:650.962667pt;}
.y152{bottom:655.200000pt;}
.y3a{bottom:655.244013pt;}
.y21{bottom:656.642653pt;}
.y54{bottom:656.642667pt;}
.y78{bottom:656.642680pt;}
.y16c{bottom:659.524013pt;}
.y19c{bottom:663.688000pt;}
.yd7{bottom:670.776001pt;}
.yd5{bottom:670.776015pt;}
.y127{bottom:672.798662pt;}
.yfe{bottom:674.829332pt;}
.y16b{bottom:677.922680pt;}
.y155{bottom:677.944000pt;}
.y1bd{bottom:682.086667pt;}
.y19b{bottom:682.086680pt;}
.y151{bottom:682.181333pt;}
.y39{bottom:684.924000pt;}
.y20{bottom:686.322653pt;}
.y53{bottom:686.322667pt;}
.y68{bottom:686.322680pt;}
.ya4{bottom:692.503992pt;}
.ya8{bottom:692.503998pt;}
.y16a{bottom:696.321347pt;}
.y126{bottom:697.749325pt;}
.y124{bottom:697.749335pt;}
.yd4{bottom:698.424011pt;}
.yfb{bottom:699.779975pt;}
.yfd{bottom:699.779995pt;}
.y6{bottom:699.810680pt;}
.y1d3{bottom:700.485333pt;}
.y19a{bottom:700.485347pt;}
.y150{bottom:709.162667pt;}
.y38{bottom:714.604000pt;}
.y169{bottom:714.720000pt;}
.y67{bottom:716.002653pt;}
.y1f{bottom:716.002667pt;}
.y8a{bottom:716.002680pt;}
.y199{bottom:718.883987pt;}
.y1bc{bottom:718.884000pt;}
.ya2{bottom:720.151998pt;}
.y123{bottom:722.700009pt;}
.yfa{bottom:724.730659pt;}
.yd3{bottom:726.072001pt;}
.y15b{bottom:726.306667pt;}
.y5{bottom:729.490680pt;}
.y168{bottom:733.118667pt;}
.y198{bottom:737.282667pt;}
.y37{bottom:744.284013pt;}
.y1e{bottom:745.682653pt;}
.y52{bottom:745.682667pt;}
.y122{bottom:747.650672pt;}
.yf8{bottom:749.681342pt;}
.y167{bottom:751.517333pt;}
.y15a{bottom:753.288000pt;}
.yd2{bottom:753.720011pt;}
.y9f{bottom:754.152012pt;}
.y197{bottom:755.681320pt;}
.y1bb{bottom:755.681333pt;}
.y1d2{bottom:755.681347pt;}
.y166{bottom:769.916000pt;}
.y121{bottom:772.601335pt;}
.y36{bottom:773.964000pt;}
.y196{bottom:774.080000pt;}
.y1ba{bottom:774.080013pt;}
.yf7{bottom:774.632005pt;}
.y1d{bottom:775.362667pt;}
.y159{bottom:780.269333pt;}
.yd0{bottom:781.368001pt;}
.y14a{bottom:782.190667pt;}
.y9d{bottom:787.070669pt;}
.y165{bottom:788.314667pt;}
.y195{bottom:792.478667pt;}
.y4{bottom:792.746680pt;}
.y120{bottom:797.551999pt;}
.yf6{bottom:799.582669pt;}
.y35{bottom:803.644000pt;}
.y51{bottom:805.042653pt;}
.y1c{bottom:805.042667pt;}
.y81{bottom:805.042680pt;}
.y164{bottom:806.713333pt;}
.ycf{bottom:809.016001pt;}
.y149{bottom:809.172000pt;}
.y194{bottom:810.877333pt;}
.y11f{bottom:822.502672pt;}
.yf4{bottom:824.533332pt;}
.y163{bottom:825.112000pt;}
.y193{bottom:829.276000pt;}
.y9a{bottom:830.404000pt;}
.y3{bottom:830.522667pt;}
.y34{bottom:833.323987pt;}
.y1b{bottom:834.722667pt;}
.ycd{bottom:836.664002pt;}
.y148{bottom:840.193333pt;}
.y162{bottom:843.510667pt;}
.y11e{bottom:847.453335pt;}
.y192{bottom:847.674667pt;}
.yf2{bottom:849.484005pt;}
.y161{bottom:861.909333pt;}
.y33{bottom:863.004000pt;}
.ycc{bottom:864.312002pt;}
.y50{bottom:864.402653pt;}
.y1a{bottom:864.402667pt;}
.y191{bottom:866.073333pt;}
.y98{bottom:867.906667pt;}
.y11d{bottom:872.404004pt;}
.yf1{bottom:874.434669pt;}
.y160{bottom:880.308000pt;}
.y190{bottom:884.472000pt;}
.y32{bottom:892.684000pt;}
.y19{bottom:894.082667pt;}
.y11c{bottom:897.354669pt;}
.y15f{bottom:898.706680pt;}
.yef{bottom:899.385337pt;}
.y18f{bottom:902.870667pt;}
.y95{bottom:908.573335pt;}
.y15e{bottom:917.105347pt;}
.yc9{bottom:918.941335pt;}
.y18e{bottom:921.269333pt;}
.y31{bottom:922.364000pt;}
.y18{bottom:923.762667pt;}
.yeb{bottom:924.336002pt;}
.y15d{bottom:935.504000pt;}
.y93{bottom:938.237335pt;}
.y18d{bottom:939.668000pt;}
.y30{bottom:952.044000pt;}
.y4f{bottom:953.442667pt;}
.y15c{bottom:953.902667pt;}
.y18c{bottom:958.066667pt;}
.y147{bottom:960.240000pt;}
.y91{bottom:972.237335pt;}
.y18b{bottom:976.465333pt;}
.y2f{bottom:981.724000pt;}
.y4e{bottom:983.122667pt;}
.yc8{bottom:987.221333pt;}
.yc7{bottom:994.493333pt;}
.y18a{bottom:994.864000pt;}
.y17{bottom:1004.706667pt;}
.y2e{bottom:1011.404000pt;}
.y4d{bottom:1012.802667pt;}
.y189{bottom:1013.262667pt;}
.y90{bottom:1014.202667pt;}
.y15{bottom:1015.373333pt;}
.yc6{bottom:1017.246667pt;}
.y146{bottom:1018.242667pt;}
.y1d7{bottom:1031.013320pt;}
.y12{bottom:1097.679987pt;}
.hd{height:10.666667pt;}
.hf{height:12.000000pt;}
.h45{height:26.950667pt;}
.h7{height:27.088542pt;}
.h3b{height:27.617333pt;}
.he{height:28.256000pt;}
.h19{height:29.648000pt;}
.h33{height:30.314667pt;}
.h1b{height:31.664000pt;}
.h10{height:32.965333pt;}
.h37{height:33.657708pt;}
.h49{height:34.442708pt;}
.h1{height:34.588000pt;}
.h5{height:34.872396pt;}
.h21{height:34.918667pt;}
.h39{height:35.039062pt;}
.h1a{height:36.000000pt;}
.h15{height:37.023479pt;}
.h8{height:38.453333pt;}
.h24{height:38.932292pt;}
.h1e{height:39.502667pt;}
.h14{height:39.559896pt;}
.hc{height:41.875000pt;}
.h6{height:42.567708pt;}
.h1d{height:42.666667pt;}
.h11{height:42.825521pt;}
.h48{height:43.343750pt;}
.h3a{height:44.434625pt;}
.h2{height:44.835938pt;}
.h20{height:45.333333pt;}
.h12{height:46.718750pt;}
.h30{height:48.541510pt;}
.h18{height:49.817708pt;}
.h38{height:51.234667pt;}
.h3f{height:52.568000pt;}
.h3{height:54.505208pt;}
.h4{height:54.799479pt;}
.h17{height:56.031250pt;}
.h2f{height:56.629333pt;}
.h31{height:57.296000pt;}
.h34{height:57.962667pt;}
.h1c{height:65.664000pt;}
.h25{height:69.672000pt;}
.h28{height:70.213333pt;}
.h26{height:71.692000pt;}
.h29{height:73.133333pt;}
.h3d{height:77.518667pt;}
.h4b{height:77.656250pt;}
.h2b{height:78.000000pt;}
.h22{height:78.252000pt;}
.h2c{height:79.692000pt;}
.h1f{height:80.169333pt;}
.ha{height:81.539062pt;}
.h32{height:84.944000pt;}
.h42{height:102.469333pt;}
.h2a{height:149.133333pt;}
.h43{height:152.370667pt;}
.h2d{height:157.384000pt;}
.h13{height:166.755793pt;}
.h40{height:177.321333pt;}
.h41{height:202.271987pt;}
.h27{height:207.577333pt;}
.h36{height:223.184000pt;}
.h16{height:226.115819pt;}
.h3c{height:227.222680pt;}
.h2e{height:233.383987pt;}
.h35{height:250.831987pt;}
.h23{height:281.733333pt;}
.h3e{height:302.074667pt;}
.h47{height:314.784000pt;}
.h44{height:476.729333pt;}
.hb{height:501.586667pt;}
.h9{height:795.197333pt;}
.h4a{height:816.000000pt;}
.h46{height:1056.000000pt;}
.h0{height:1122.666667pt;}
.w3{width:13.333333pt;}
.w6{width:23.008000pt;}
.wd{width:30.600000pt;}
.w15{width:42.666667pt;}
.w17{width:56.600000pt;}
.w14{width:60.000000pt;}
.w13{width:64.000000pt;}
.w11{width:65.333333pt;}
.w4{width:69.373333pt;}
.wf{width:70.933333pt;}
.w1c{width:76.266667pt;}
.wb{width:77.600000pt;}
.we{width:81.266667pt;}
.w18{width:83.866667pt;}
.w1b{width:86.400000pt;}
.w9{width:87.066667pt;}
.wa{width:89.266667pt;}
.w1a{width:89.333333pt;}
.w10{width:91.733333pt;}
.w12{width:93.333333pt;}
.w19{width:94.666667pt;}
.wc{width:96.866667pt;}
.w16{width:100.000000pt;}
.w5{width:116.280000pt;}
.w8{width:122.600000pt;}
.w7{width:143.733333pt;}
.w1e{width:626.666667pt;}
.w2{width:782.133333pt;}
.w1{width:793.333329pt;}
.w0{width:793.333333pt;}
.w1f{width:805.333333pt;}
.w1d{width:816.000000pt;}
.x0{left:0.000000pt;}
.x9{left:4.000000pt;}
.x3b{left:6.301329pt;}
.x38{left:7.266661pt;}
.x10{left:8.166664pt;}
.x42{left:9.708001pt;}
.x7{left:10.666667pt;}
.x1d{left:12.570671pt;}
.x24{left:14.453333pt;}
.x2e{left:16.246662pt;}
.x39{left:17.750661pt;}
.x32{left:18.776004pt;}
.x3f{left:20.165335pt;}
.x29{left:21.338673pt;}
.x1b{left:22.302673pt;}
.x1f{left:23.333340pt;}
.x21{left:25.101340pt;}
.x23{left:26.226663pt;}
.x19{left:27.305337pt;}
.x28{left:28.972004pt;}
.x48{left:30.352000pt;}
.x1e{left:31.313337pt;}
.x37{left:32.780004pt;}
.x26{left:34.122671pt;}
.x20{left:35.466671pt;}
.x27{left:37.689333pt;}
.x17{left:39.812000pt;}
.x2b{left:40.819996pt;}
.x25{left:42.253333pt;}
.x2c{left:43.552000pt;}
.x2a{left:44.652000pt;}
.x15{left:48.693341pt;}
.x4f{left:94.666667pt;}
.xe{left:108.333333pt;}
.x22{left:112.066671pt;}
.x6{left:113.400000pt;}
.x4{left:115.644000pt;}
.x2d{left:140.000005pt;}
.x2{left:142.405333pt;}
.xc{left:151.200000pt;}
.x4e{left:161.400000pt;}
.x49{left:190.666672pt;}
.x12{left:193.792002pt;}
.x14{left:206.933339pt;}
.x3a{left:209.400004pt;}
.x2f{left:218.600006pt;}
.x3{left:230.010667pt;}
.x51{left:236.294653pt;}
.x3c{left:263.333333pt;}
.x4a{left:274.400004pt;}
.x30{left:286.866679pt;}
.xf{left:294.000003pt;}
.x5{left:297.006667pt;}
.x50{left:311.333333pt;}
.x3d{left:344.533345pt;}
.x16{left:348.666667pt;}
.x43{left:350.000000pt;}
.x31{left:375.933329pt;}
.x11{left:390.666663pt;}
.x1{left:393.666663pt;}
.x4b{left:410.666667pt;}
.x3e{left:436.533345pt;}
.x33{left:438.599996pt;}
.x44{left:442.000000pt;}
.x18{left:469.266663pt;}
.x40{left:499.200012pt;}
.x4c{left:501.333354pt;}
.x45{left:504.666687pt;}
.x34{left:529.266663pt;}
.x1a{left:554.333354pt;}
.x4d{left:562.666687pt;}
.x35{left:590.599996pt;}
.x46{left:595.333354pt;}
.xb{left:620.080000pt;}
.x1c{left:641.599996pt;}
.x36{left:647.933329pt;}
.x41{left:651.200012pt;}
.x47{left:656.666687pt;}
.xa{left:666.986667pt;}
.x13{left:707.960000pt;}
.xd{left:714.800013pt;}
.x8{left:776.225333pt;}
.x52{left:799.706667pt;}
}




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