
    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_8bd3a3e5ae75a551706f8c82.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_c4d886e1b58c5917046a92dc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.720000;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_e24fa10b60aadd477cea44cc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.945813;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_71ae3152b17ef946d59db882.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d96b9e02a4b723a50edff79f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b6656dbfe291d88ef25da1c7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_592e6d417a720ea3ee21e655.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893066;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_040be940cafecbd1ad1b70ab.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6e55a2ebf33822d73958a9cc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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_eb8123eab0904f8f3206d490.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.707000;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_0eff58fb94e5395f710f1905.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.940000;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_8bd3a3e5ae75a551706f8c82.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.969000;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_c4d886e1b58c5917046a92dc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.720000;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_fe4eaea2c601f6ff99322fb5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.720000;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_3ec9e5944ba31688516a69a0.woff2')format("woff");}.fff{font-family:fff;line-height:0.969000;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;}
.m2{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,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);}
.v2{vertical-align:-4.923600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.619400px;}
.ls1{letter-spacing:-0.768000px;}
.ls0{letter-spacing:0.000000px;}
.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:-15.000000px;}
.ws22{word-spacing:-3.420000px;}
.ws5{word-spacing:-2.940000px;}
.ws37{word-spacing:-2.880000px;}
.ws11{word-spacing:-2.400000px;}
.ws28{word-spacing:-1.680000px;}
.ws38{word-spacing:-1.380000px;}
.ws39{word-spacing:-1.080000px;}
.ws2b{word-spacing:-1.020000px;}
.ws2c{word-spacing:-0.960000px;}
.ws1f{word-spacing:-0.900000px;}
.ws2e{word-spacing:-0.840000px;}
.wsd{word-spacing:-0.420000px;}
.wsa{word-spacing:-0.120000px;}
.ws3{word-spacing:0.000000px;}
.ws1e{word-spacing:0.240000px;}
.ws19{word-spacing:0.420000px;}
.ws7{word-spacing:0.720000px;}
.ws16{word-spacing:1.620000px;}
.wse{word-spacing:1.800000px;}
.ws2d{word-spacing:2.040000px;}
.ws2a{word-spacing:2.400000px;}
.ws10{word-spacing:2.460000px;}
.ws20{word-spacing:2.640000px;}
.ws9{word-spacing:2.820000px;}
.ws17{word-spacing:3.300000px;}
.ws1a{word-spacing:3.360000px;}
.ws23{word-spacing:3.540000px;}
.ws31{word-spacing:3.720000px;}
.wsf{word-spacing:4.200000px;}
.ws26{word-spacing:4.500000px;}
.ws21{word-spacing:4.620000px;}
.wsb{word-spacing:4.860000px;}
.ws1b{word-spacing:4.920000px;}
.ws8{word-spacing:5.040000px;}
.ws1d{word-spacing:5.640000px;}
.ws24{word-spacing:5.700000px;}
.ws36{word-spacing:5.760000px;}
.ws12{word-spacing:6.000000px;}
.ws29{word-spacing:6.060000px;}
.ws18{word-spacing:7.200000px;}
.wsc{word-spacing:7.860000px;}
.ws27{word-spacing:8.280000px;}
.ws33{word-spacing:9.060000px;}
.ws35{word-spacing:9.120000px;}
.ws13{word-spacing:9.480000px;}
.ws30{word-spacing:10.800000px;}
.ws1c{word-spacing:10.980000px;}
.ws34{word-spacing:12.480000px;}
.ws15{word-spacing:12.780000px;}
.ws25{word-spacing:12.900000px;}
.ws32{word-spacing:13.260000px;}
.ws2f{word-spacing:15.180000px;}
.ws14{word-spacing:15.900000px;}
.ws4{word-spacing:21.360000px;}
.ws0{word-spacing:48.021000px;}
.ws1{word-spacing:386.314800px;}
.ws6{word-spacing:1714.377600px;}
._a{margin-left:-36.573000px;}
._7{margin-left:-6.526800px;}
._0{margin-left:-4.977000px;}
._1{margin-left:-2.997000px;}
._2{margin-left:-1.060200px;}
._9{width:1.085400px;}
._4{width:2.116800px;}
._5{width:3.272400px;}
._8{width:4.365000px;}
._3{width:5.373000px;}
._6{width:6.463800px;}
._d{width:7.965000px;}
._b{width:9.444000px;}
._17{width:10.482000px;}
._f{width:11.514000px;}
._c{width:12.750000px;}
._19{width:13.902000px;}
._13{width:16.614000px;}
._12{width:18.492000px;}
._1a{width:19.650000px;}
._15{width:21.066000px;}
._14{width:22.578000px;}
._18{width:23.898000px;}
._1b{width:25.020000px;}
._11{width:26.076000px;}
._1d{width:28.032000px;}
._10{width:29.430000px;}
._1c{width:30.756000px;}
._1e{width:47.244000px;}
._16{width:60.540000px;}
._e{width:70.020000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:63.438750px;}
.y37{bottom:64.760550px;}
.y36{bottom:65.586600px;}
.y106{bottom:91.659600px;}
.y2c{bottom:92.442450px;}
.yf5{bottom:96.159600px;}
.y97{bottom:98.634000px;}
.y68{bottom:98.874000px;}
.yc6{bottom:99.159600px;}
.y105{bottom:111.159600px;}
.y2b{bottom:111.942450px;}
.yf4{bottom:114.909600px;}
.y96{bottom:118.134000px;}
.y67{bottom:118.374000px;}
.yc5{bottom:118.659600px;}
.y104{bottom:130.659600px;}
.y2a{bottom:131.442450px;}
.yf3{bottom:133.659600px;}
.y95{bottom:137.634000px;}
.y66{bottom:137.874000px;}
.yc4{bottom:138.159600px;}
.y103{bottom:149.409600px;}
.y29{bottom:150.942450px;}
.yf2{bottom:152.409600px;}
.y94{bottom:157.134000px;}
.y65{bottom:157.374000px;}
.yc3{bottom:157.659600px;}
.y102{bottom:168.159600px;}
.y28{bottom:170.442450px;}
.yf1{bottom:171.159600px;}
.y93{bottom:176.634000px;}
.y64{bottom:176.874000px;}
.yc2{bottom:177.159600px;}
.y101{bottom:186.909600px;}
.yf0{bottom:189.909600px;}
.y27{bottom:189.942450px;}
.y92{bottom:196.134000px;}
.y63{bottom:196.374000px;}
.yc1{bottom:196.659600px;}
.y100{bottom:205.659600px;}
.yef{bottom:208.659600px;}
.y26{bottom:209.442450px;}
.y91{bottom:215.634000px;}
.y62{bottom:215.874000px;}
.yc0{bottom:216.159600px;}
.yff{bottom:224.409600px;}
.yee{bottom:227.409600px;}
.y25{bottom:228.942450px;}
.y90{bottom:235.134000px;}
.y61{bottom:235.374000px;}
.ybf{bottom:235.659600px;}
.yfe{bottom:243.159600px;}
.yed{bottom:246.159600px;}
.y24{bottom:248.442450px;}
.y8f{bottom:254.634000px;}
.y60{bottom:254.874000px;}
.ybe{bottom:255.159600px;}
.yfd{bottom:261.909600px;}
.yec{bottom:264.909600px;}
.y23{bottom:267.942450px;}
.y8e{bottom:274.134000px;}
.y5f{bottom:274.374000px;}
.ybd{bottom:274.659600px;}
.yfc{bottom:280.659600px;}
.yeb{bottom:283.659600px;}
.y22{bottom:287.442450px;}
.y8d{bottom:293.634000px;}
.y5e{bottom:293.874000px;}
.ybc{bottom:294.159600px;}
.yfb{bottom:299.409600px;}
.yea{bottom:302.409600px;}
.y21{bottom:306.942450px;}
.y8c{bottom:313.134000px;}
.y5d{bottom:313.374000px;}
.ybb{bottom:313.659600px;}
.yfa{bottom:318.159600px;}
.ye9{bottom:321.159600px;}
.y20{bottom:326.442450px;}
.y8b{bottom:332.634000px;}
.y5c{bottom:332.874000px;}
.yba{bottom:333.159600px;}
.yf9{bottom:336.909600px;}
.ye8{bottom:339.909600px;}
.y1f{bottom:345.942450px;}
.y8a{bottom:352.134000px;}
.y5b{bottom:352.374000px;}
.yb9{bottom:352.659600px;}
.yf8{bottom:356.409600px;}
.ye7{bottom:358.659600px;}
.y1e{bottom:365.442450px;}
.y89{bottom:371.634000px;}
.y5a{bottom:371.874000px;}
.yb8{bottom:372.159600px;}
.yf7{bottom:375.909600px;}
.ye6{bottom:377.409600px;}
.y88{bottom:391.134000px;}
.y59{bottom:391.374000px;}
.yb7{bottom:391.659600px;}
.yf6{bottom:395.409600px;}
.ye5{bottom:396.159600px;}
.y87{bottom:410.634000px;}
.y58{bottom:410.874000px;}
.yb6{bottom:411.159600px;}
.y1d{bottom:413.442450px;}
.ye4{bottom:414.909600px;}
.y86{bottom:430.134000px;}
.y57{bottom:430.374000px;}
.yb5{bottom:430.659600px;}
.y1c{bottom:431.500950px;}
.ye3{bottom:433.659600px;}
.y1b{bottom:449.496450px;}
.y85{bottom:449.634000px;}
.y56{bottom:449.874000px;}
.yb4{bottom:450.159600px;}
.ye2{bottom:452.409600px;}
.y35{bottom:456.139950px;}
.y1a{bottom:467.491950px;}
.y84{bottom:469.134000px;}
.y55{bottom:469.374000px;}
.yb3{bottom:469.659600px;}
.ye1{bottom:471.159600px;}
.y34{bottom:478.639950px;}
.y19{bottom:485.487450px;}
.y83{bottom:488.634000px;}
.y54{bottom:488.874000px;}
.yb2{bottom:489.159600px;}
.ye0{bottom:489.909600px;}
.y33{bottom:501.139950px;}
.y18{bottom:503.482950px;}
.y82{bottom:508.134000px;}
.y53{bottom:508.374000px;}
.yb1{bottom:508.659600px;}
.y17{bottom:521.478450px;}
.ydf{bottom:527.409600px;}
.y81{bottom:527.634000px;}
.y52{bottom:527.874000px;}
.yb0{bottom:528.159600px;}
.y16{bottom:539.473950px;}
.y32{bottom:541.639950px;}
.yde{bottom:546.159600px;}
.y80{bottom:547.134000px;}
.y51{bottom:547.374000px;}
.yaf{bottom:547.659600px;}
.y15{bottom:557.469450px;}
.ydd{bottom:564.909600px;}
.y7f{bottom:566.634000px;}
.y50{bottom:566.874000px;}
.yae{bottom:567.159600px;}
.y14{bottom:575.464950px;}
.ydc{bottom:583.659600px;}
.y7e{bottom:586.134000px;}
.y4f{bottom:586.374000px;}
.y31{bottom:586.639950px;}
.yad{bottom:586.659600px;}
.y13{bottom:593.460450px;}
.ydb{bottom:602.409600px;}
.y7d{bottom:605.634000px;}
.y4e{bottom:605.874000px;}
.yac{bottom:606.159600px;}
.y12{bottom:611.455950px;}
.yda{bottom:621.159600px;}
.y7c{bottom:625.134000px;}
.y4d{bottom:625.374000px;}
.yab{bottom:625.659600px;}
.y30{bottom:627.139950px;}
.y11{bottom:629.451450px;}
.yd9{bottom:639.909600px;}
.y7b{bottom:644.634000px;}
.y4c{bottom:644.874000px;}
.yaa{bottom:645.159600px;}
.y10{bottom:647.446950px;}
.yd8{bottom:658.659600px;}
.y2f{bottom:663.139950px;}
.y7a{bottom:664.134000px;}
.y4b{bottom:664.374000px;}
.ya9{bottom:664.659600px;}
.yf{bottom:665.442450px;}
.yd7{bottom:677.409600px;}
.ye{bottom:683.442450px;}
.y79{bottom:683.634000px;}
.y4a{bottom:683.874000px;}
.ya8{bottom:684.159600px;}
.yd6{bottom:696.159600px;}
.y2e{bottom:699.139950px;}
.y78{bottom:703.134000px;}
.y49{bottom:703.374000px;}
.ya7{bottom:703.659600px;}
.yd5{bottom:714.909600px;}
.y77{bottom:722.634000px;}
.y48{bottom:722.874000px;}
.ya6{bottom:723.159600px;}
.yd{bottom:723.951450px;}
.yd4{bottom:733.659600px;}
.y2d{bottom:735.139950px;}
.yc{bottom:741.946950px;}
.y76{bottom:742.134000px;}
.y47{bottom:742.374000px;}
.ya5{bottom:742.659600px;}
.yd3{bottom:752.409600px;}
.yb{bottom:759.942450px;}
.y75{bottom:761.634000px;}
.y46{bottom:761.874000px;}
.ya4{bottom:762.159600px;}
.yd2{bottom:771.159600px;}
.ya{bottom:777.942450px;}
.y74{bottom:781.134000px;}
.y45{bottom:781.374000px;}
.ya3{bottom:781.659600px;}
.yd1{bottom:789.909600px;}
.y73{bottom:800.634000px;}
.y44{bottom:800.874000px;}
.ya2{bottom:801.159600px;}
.yd0{bottom:808.659600px;}
.y9{bottom:815.451450px;}
.y72{bottom:820.134000px;}
.y43{bottom:820.374000px;}
.ya1{bottom:820.659600px;}
.ycf{bottom:827.409600px;}
.y8{bottom:833.446950px;}
.y71{bottom:839.634000px;}
.y42{bottom:839.874000px;}
.ya0{bottom:840.159600px;}
.yce{bottom:846.159600px;}
.y7{bottom:851.442450px;}
.y70{bottom:859.134000px;}
.y41{bottom:859.374000px;}
.y9f{bottom:859.659600px;}
.ycd{bottom:864.909600px;}
.y6{bottom:869.442450px;}
.y6f{bottom:878.634000px;}
.y40{bottom:878.874000px;}
.y9e{bottom:879.159600px;}
.ycc{bottom:883.659600px;}
.y6e{bottom:898.134000px;}
.y3f{bottom:898.374000px;}
.y9d{bottom:898.659600px;}
.ycb{bottom:902.409600px;}
.y5{bottom:914.457450px;}
.y6d{bottom:917.634000px;}
.y3e{bottom:917.874000px;}
.y9c{bottom:918.159600px;}
.yca{bottom:921.159600px;}
.y6c{bottom:937.134000px;}
.y3d{bottom:937.374000px;}
.y9b{bottom:937.659600px;}
.yc9{bottom:939.909600px;}
.y4{bottom:939.949950px;}
.y6b{bottom:956.634000px;}
.y3c{bottom:956.874000px;}
.y9a{bottom:957.159600px;}
.yc8{bottom:958.659600px;}
.y3{bottom:965.442450px;}
.y6a{bottom:976.134000px;}
.y3b{bottom:976.374000px;}
.y99{bottom:976.659600px;}
.yc7{bottom:977.409600px;}
.y69{bottom:995.634000px;}
.y3a{bottom:995.874000px;}
.y98{bottom:996.159600px;}
.y39{bottom:1024.374150px;}
.y2{bottom:1027.506750px;}
.y38{bottom:1039.374150px;}
.he{height:34.176000px;}
.hd{height:34.560000px;}
.h6{height:37.494141px;}
.h5{height:40.664062px;}
.h7{height:41.660156px;}
.h8{height:41.689453px;}
.hc{height:42.000000px;}
.hb{height:42.720000px;}
.ha{height:46.200000px;}
.h9{height:50.400000px;}
.h3{height:52.492611px;}
.h2{height:53.467611px;}
.h4{height:60.996094px;}
.h1{height:1092.750000px;}
.h0{height:1092.960000px;}
.w1{width:774.000000px;}
.w0{width:774.360000px;}
.x0{left:0.000000px;}
.xe{left:63.779550px;}
.x2{left:65.202600px;}
.xd{left:73.559100px;}
.x1{left:74.853150px;}
.x14{left:90.779550px;}
.xc{left:224.187900px;}
.x3{left:282.325200px;}
.x4{left:316.390200px;}
.x5{left:351.760200px;}
.xb{left:370.012500px;}
.x9{left:379.400400px;}
.x12{left:399.929550px;}
.x11{left:412.272150px;}
.x8{left:419.522400px;}
.x13{left:426.914550px;}
.x7{left:491.517900px;}
.xa{left:547.146000px;}
.x6{left:591.368250px;}
.x10{left:614.196150px;}
.xf{left:632.875800px;}
@media print{
.v2{vertical-align:-4.376533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.439467pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws22{word-spacing:-3.040000pt;}
.ws5{word-spacing:-2.613333pt;}
.ws37{word-spacing:-2.560000pt;}
.ws11{word-spacing:-2.133333pt;}
.ws28{word-spacing:-1.493333pt;}
.ws38{word-spacing:-1.226667pt;}
.ws39{word-spacing:-0.960000pt;}
.ws2b{word-spacing:-0.906667pt;}
.ws2c{word-spacing:-0.853333pt;}
.ws1f{word-spacing:-0.800000pt;}
.ws2e{word-spacing:-0.746667pt;}
.wsd{word-spacing:-0.373333pt;}
.wsa{word-spacing:-0.106667pt;}
.ws3{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.213333pt;}
.ws19{word-spacing:0.373333pt;}
.ws7{word-spacing:0.640000pt;}
.ws16{word-spacing:1.440000pt;}
.wse{word-spacing:1.600000pt;}
.ws2d{word-spacing:1.813333pt;}
.ws2a{word-spacing:2.133333pt;}
.ws10{word-spacing:2.186667pt;}
.ws20{word-spacing:2.346667pt;}
.ws9{word-spacing:2.506667pt;}
.ws17{word-spacing:2.933333pt;}
.ws1a{word-spacing:2.986667pt;}
.ws23{word-spacing:3.146667pt;}
.ws31{word-spacing:3.306667pt;}
.wsf{word-spacing:3.733333pt;}
.ws26{word-spacing:4.000000pt;}
.ws21{word-spacing:4.106667pt;}
.wsb{word-spacing:4.320000pt;}
.ws1b{word-spacing:4.373333pt;}
.ws8{word-spacing:4.480000pt;}
.ws1d{word-spacing:5.013333pt;}
.ws24{word-spacing:5.066667pt;}
.ws36{word-spacing:5.120000pt;}
.ws12{word-spacing:5.333333pt;}
.ws29{word-spacing:5.386667pt;}
.ws18{word-spacing:6.400000pt;}
.wsc{word-spacing:6.986667pt;}
.ws27{word-spacing:7.360000pt;}
.ws33{word-spacing:8.053333pt;}
.ws35{word-spacing:8.106667pt;}
.ws13{word-spacing:8.426667pt;}
.ws30{word-spacing:9.600000pt;}
.ws1c{word-spacing:9.760000pt;}
.ws34{word-spacing:11.093333pt;}
.ws15{word-spacing:11.360000pt;}
.ws25{word-spacing:11.466667pt;}
.ws32{word-spacing:11.786667pt;}
.ws2f{word-spacing:13.493333pt;}
.ws14{word-spacing:14.133333pt;}
.ws4{word-spacing:18.986667pt;}
.ws0{word-spacing:42.685333pt;}
.ws1{word-spacing:343.390933pt;}
.ws6{word-spacing:1523.891200pt;}
._a{margin-left:-32.509333pt;}
._7{margin-left:-5.801600pt;}
._0{margin-left:-4.424000pt;}
._1{margin-left:-2.664000pt;}
._2{margin-left:-0.942400pt;}
._9{width:0.964800pt;}
._4{width:1.881600pt;}
._5{width:2.908800pt;}
._8{width:3.880000pt;}
._3{width:4.776000pt;}
._6{width:5.745600pt;}
._d{width:7.080000pt;}
._b{width:8.394667pt;}
._17{width:9.317333pt;}
._f{width:10.234667pt;}
._c{width:11.333333pt;}
._19{width:12.357333pt;}
._13{width:14.768000pt;}
._12{width:16.437333pt;}
._1a{width:17.466667pt;}
._15{width:18.725333pt;}
._14{width:20.069333pt;}
._18{width:21.242667pt;}
._1b{width:22.240000pt;}
._11{width:23.178667pt;}
._1d{width:24.917333pt;}
._10{width:26.160000pt;}
._1c{width:27.338667pt;}
._1e{width:41.994667pt;}
._16{width:53.813333pt;}
._e{width:62.240000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:56.390000pt;}
.y37{bottom:57.564933pt;}
.y36{bottom:58.299200pt;}
.y106{bottom:81.475200pt;}
.y2c{bottom:82.171067pt;}
.yf5{bottom:85.475200pt;}
.y97{bottom:87.674667pt;}
.y68{bottom:87.888000pt;}
.yc6{bottom:88.141867pt;}
.y105{bottom:98.808533pt;}
.y2b{bottom:99.504400pt;}
.yf4{bottom:102.141867pt;}
.y96{bottom:105.008000pt;}
.y67{bottom:105.221333pt;}
.yc5{bottom:105.475200pt;}
.y104{bottom:116.141867pt;}
.y2a{bottom:116.837733pt;}
.yf3{bottom:118.808533pt;}
.y95{bottom:122.341333pt;}
.y66{bottom:122.554667pt;}
.yc4{bottom:122.808533pt;}
.y103{bottom:132.808533pt;}
.y29{bottom:134.171067pt;}
.yf2{bottom:135.475200pt;}
.y94{bottom:139.674667pt;}
.y65{bottom:139.888000pt;}
.yc3{bottom:140.141867pt;}
.y102{bottom:149.475200pt;}
.y28{bottom:151.504400pt;}
.yf1{bottom:152.141867pt;}
.y93{bottom:157.008000pt;}
.y64{bottom:157.221333pt;}
.yc2{bottom:157.475200pt;}
.y101{bottom:166.141867pt;}
.yf0{bottom:168.808533pt;}
.y27{bottom:168.837733pt;}
.y92{bottom:174.341333pt;}
.y63{bottom:174.554667pt;}
.yc1{bottom:174.808533pt;}
.y100{bottom:182.808533pt;}
.yef{bottom:185.475200pt;}
.y26{bottom:186.171067pt;}
.y91{bottom:191.674667pt;}
.y62{bottom:191.888000pt;}
.yc0{bottom:192.141867pt;}
.yff{bottom:199.475200pt;}
.yee{bottom:202.141867pt;}
.y25{bottom:203.504400pt;}
.y90{bottom:209.008000pt;}
.y61{bottom:209.221333pt;}
.ybf{bottom:209.475200pt;}
.yfe{bottom:216.141867pt;}
.yed{bottom:218.808533pt;}
.y24{bottom:220.837733pt;}
.y8f{bottom:226.341333pt;}
.y60{bottom:226.554667pt;}
.ybe{bottom:226.808533pt;}
.yfd{bottom:232.808533pt;}
.yec{bottom:235.475200pt;}
.y23{bottom:238.171067pt;}
.y8e{bottom:243.674667pt;}
.y5f{bottom:243.888000pt;}
.ybd{bottom:244.141867pt;}
.yfc{bottom:249.475200pt;}
.yeb{bottom:252.141867pt;}
.y22{bottom:255.504400pt;}
.y8d{bottom:261.008000pt;}
.y5e{bottom:261.221333pt;}
.ybc{bottom:261.475200pt;}
.yfb{bottom:266.141867pt;}
.yea{bottom:268.808533pt;}
.y21{bottom:272.837733pt;}
.y8c{bottom:278.341333pt;}
.y5d{bottom:278.554667pt;}
.ybb{bottom:278.808533pt;}
.yfa{bottom:282.808533pt;}
.ye9{bottom:285.475200pt;}
.y20{bottom:290.171067pt;}
.y8b{bottom:295.674667pt;}
.y5c{bottom:295.888000pt;}
.yba{bottom:296.141867pt;}
.yf9{bottom:299.475200pt;}
.ye8{bottom:302.141867pt;}
.y1f{bottom:307.504400pt;}
.y8a{bottom:313.008000pt;}
.y5b{bottom:313.221333pt;}
.yb9{bottom:313.475200pt;}
.yf8{bottom:316.808533pt;}
.ye7{bottom:318.808533pt;}
.y1e{bottom:324.837733pt;}
.y89{bottom:330.341333pt;}
.y5a{bottom:330.554667pt;}
.yb8{bottom:330.808533pt;}
.yf7{bottom:334.141867pt;}
.ye6{bottom:335.475200pt;}
.y88{bottom:347.674667pt;}
.y59{bottom:347.888000pt;}
.yb7{bottom:348.141867pt;}
.yf6{bottom:351.475200pt;}
.ye5{bottom:352.141867pt;}
.y87{bottom:365.008000pt;}
.y58{bottom:365.221333pt;}
.yb6{bottom:365.475200pt;}
.y1d{bottom:367.504400pt;}
.ye4{bottom:368.808533pt;}
.y86{bottom:382.341333pt;}
.y57{bottom:382.554667pt;}
.yb5{bottom:382.808533pt;}
.y1c{bottom:383.556400pt;}
.ye3{bottom:385.475200pt;}
.y1b{bottom:399.552400pt;}
.y85{bottom:399.674667pt;}
.y56{bottom:399.888000pt;}
.yb4{bottom:400.141867pt;}
.ye2{bottom:402.141867pt;}
.y35{bottom:405.457733pt;}
.y1a{bottom:415.548400pt;}
.y84{bottom:417.008000pt;}
.y55{bottom:417.221333pt;}
.yb3{bottom:417.475200pt;}
.ye1{bottom:418.808533pt;}
.y34{bottom:425.457733pt;}
.y19{bottom:431.544400pt;}
.y83{bottom:434.341333pt;}
.y54{bottom:434.554667pt;}
.yb2{bottom:434.808533pt;}
.ye0{bottom:435.475200pt;}
.y33{bottom:445.457733pt;}
.y18{bottom:447.540400pt;}
.y82{bottom:451.674667pt;}
.y53{bottom:451.888000pt;}
.yb1{bottom:452.141867pt;}
.y17{bottom:463.536400pt;}
.ydf{bottom:468.808533pt;}
.y81{bottom:469.008000pt;}
.y52{bottom:469.221333pt;}
.yb0{bottom:469.475200pt;}
.y16{bottom:479.532400pt;}
.y32{bottom:481.457733pt;}
.yde{bottom:485.475200pt;}
.y80{bottom:486.341333pt;}
.y51{bottom:486.554667pt;}
.yaf{bottom:486.808533pt;}
.y15{bottom:495.528400pt;}
.ydd{bottom:502.141867pt;}
.y7f{bottom:503.674667pt;}
.y50{bottom:503.888000pt;}
.yae{bottom:504.141867pt;}
.y14{bottom:511.524400pt;}
.ydc{bottom:518.808533pt;}
.y7e{bottom:521.008000pt;}
.y4f{bottom:521.221333pt;}
.y31{bottom:521.457733pt;}
.yad{bottom:521.475200pt;}
.y13{bottom:527.520400pt;}
.ydb{bottom:535.475200pt;}
.y7d{bottom:538.341333pt;}
.y4e{bottom:538.554667pt;}
.yac{bottom:538.808533pt;}
.y12{bottom:543.516400pt;}
.yda{bottom:552.141867pt;}
.y7c{bottom:555.674667pt;}
.y4d{bottom:555.888000pt;}
.yab{bottom:556.141867pt;}
.y30{bottom:557.457733pt;}
.y11{bottom:559.512400pt;}
.yd9{bottom:568.808533pt;}
.y7b{bottom:573.008000pt;}
.y4c{bottom:573.221333pt;}
.yaa{bottom:573.475200pt;}
.y10{bottom:575.508400pt;}
.yd8{bottom:585.475200pt;}
.y2f{bottom:589.457733pt;}
.y7a{bottom:590.341333pt;}
.y4b{bottom:590.554667pt;}
.ya9{bottom:590.808533pt;}
.yf{bottom:591.504400pt;}
.yd7{bottom:602.141867pt;}
.ye{bottom:607.504400pt;}
.y79{bottom:607.674667pt;}
.y4a{bottom:607.888000pt;}
.ya8{bottom:608.141867pt;}
.yd6{bottom:618.808533pt;}
.y2e{bottom:621.457733pt;}
.y78{bottom:625.008000pt;}
.y49{bottom:625.221333pt;}
.ya7{bottom:625.475200pt;}
.yd5{bottom:635.475200pt;}
.y77{bottom:642.341333pt;}
.y48{bottom:642.554667pt;}
.ya6{bottom:642.808533pt;}
.yd{bottom:643.512400pt;}
.yd4{bottom:652.141867pt;}
.y2d{bottom:653.457733pt;}
.yc{bottom:659.508400pt;}
.y76{bottom:659.674667pt;}
.y47{bottom:659.888000pt;}
.ya5{bottom:660.141867pt;}
.yd3{bottom:668.808533pt;}
.yb{bottom:675.504400pt;}
.y75{bottom:677.008000pt;}
.y46{bottom:677.221333pt;}
.ya4{bottom:677.475200pt;}
.yd2{bottom:685.475200pt;}
.ya{bottom:691.504400pt;}
.y74{bottom:694.341333pt;}
.y45{bottom:694.554667pt;}
.ya3{bottom:694.808533pt;}
.yd1{bottom:702.141867pt;}
.y73{bottom:711.674667pt;}
.y44{bottom:711.888000pt;}
.ya2{bottom:712.141867pt;}
.yd0{bottom:718.808533pt;}
.y9{bottom:724.845733pt;}
.y72{bottom:729.008000pt;}
.y43{bottom:729.221333pt;}
.ya1{bottom:729.475200pt;}
.ycf{bottom:735.475200pt;}
.y8{bottom:740.841733pt;}
.y71{bottom:746.341333pt;}
.y42{bottom:746.554667pt;}
.ya0{bottom:746.808533pt;}
.yce{bottom:752.141867pt;}
.y7{bottom:756.837733pt;}
.y70{bottom:763.674667pt;}
.y41{bottom:763.888000pt;}
.y9f{bottom:764.141867pt;}
.ycd{bottom:768.808533pt;}
.y6{bottom:772.837733pt;}
.y6f{bottom:781.008000pt;}
.y40{bottom:781.221333pt;}
.y9e{bottom:781.475200pt;}
.ycc{bottom:785.475200pt;}
.y6e{bottom:798.341333pt;}
.y3f{bottom:798.554667pt;}
.y9d{bottom:798.808533pt;}
.ycb{bottom:802.141867pt;}
.y5{bottom:812.851067pt;}
.y6d{bottom:815.674667pt;}
.y3e{bottom:815.888000pt;}
.y9c{bottom:816.141867pt;}
.yca{bottom:818.808533pt;}
.y6c{bottom:833.008000pt;}
.y3d{bottom:833.221333pt;}
.y9b{bottom:833.475200pt;}
.yc9{bottom:835.475200pt;}
.y4{bottom:835.511067pt;}
.y6b{bottom:850.341333pt;}
.y3c{bottom:850.554667pt;}
.y9a{bottom:850.808533pt;}
.yc8{bottom:852.141867pt;}
.y3{bottom:858.171067pt;}
.y6a{bottom:867.674667pt;}
.y3b{bottom:867.888000pt;}
.y99{bottom:868.141867pt;}
.yc7{bottom:868.808533pt;}
.y69{bottom:885.008000pt;}
.y3a{bottom:885.221333pt;}
.y98{bottom:885.475200pt;}
.y39{bottom:910.554800pt;}
.y2{bottom:913.339333pt;}
.y38{bottom:923.888133pt;}
.he{height:30.378667pt;}
.hd{height:30.720000pt;}
.h6{height:33.328125pt;}
.h5{height:36.145833pt;}
.h7{height:37.031250pt;}
.h8{height:37.057292pt;}
.hc{height:37.333333pt;}
.hb{height:37.973333pt;}
.ha{height:41.066667pt;}
.h9{height:44.800000pt;}
.h3{height:46.660099pt;}
.h2{height:47.526765pt;}
.h4{height:54.218750pt;}
.h1{height:971.333333pt;}
.h0{height:971.520000pt;}
.w1{width:688.000000pt;}
.w0{width:688.320000pt;}
.x0{left:0.000000pt;}
.xe{left:56.692933pt;}
.x2{left:57.957867pt;}
.xd{left:65.385867pt;}
.x1{left:66.536133pt;}
.x14{left:80.692933pt;}
.xc{left:199.278133pt;}
.x3{left:250.955733pt;}
.x4{left:281.235733pt;}
.x5{left:312.675733pt;}
.xb{left:328.900000pt;}
.x9{left:337.244800pt;}
.x12{left:355.492933pt;}
.x11{left:366.464133pt;}
.x8{left:372.908800pt;}
.x13{left:379.479600pt;}
.x7{left:436.904800pt;}
.xa{left:486.352000pt;}
.x6{left:525.660667pt;}
.x10{left:545.952133pt;}
.xf{left:562.556267pt;}
}




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