
    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_93c8106d0124f6621612c25a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;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_1e9788225affa7536be5e1de.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_87275955af621c07c3e660b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_59c4d33da38901e51916a339.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.903809;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_3ebf114f11d7dd86acdf3b03.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_8bce975a6ec72360eb5549bd.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1c6a076ed12d553400927d29.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_971e42f5f2a767ae81d262fc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_33a351653d18b4edfc78e112.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_7bb9f7da396e855ff388a0e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_7a80755dfb1b712efd394b58.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.675781;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_a544c9ebed0410e9a362115b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.689453;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_972302afbb238879b5c69d27.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_58f4f1b0fe95eaf1ebf191e7.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5e05ff5ee46c29f813d634cb.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6fcd7928a1d736859e488344.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_12755837c7f9029b176cb362.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_44f6806b64d975e06e89d11b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.689453;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:ff13;src:url('chunks/assets/font_9de0bead3751ca24f834a4d7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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:ff14;src:url('chunks/assets/font_72c680f663c66476aa334804.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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:ff15;src:url('chunks/assets/font_222d34c1c319778153e7c244.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.722656;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:ff16;src:url('chunks/assets/font_ac435fb39cccba56b328a981.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;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:ff17;src:url('chunks/assets/font_9bdc049351a8bc42b0f598e0.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls28{letter-spacing:-0.417312px;}
.ls8{letter-spacing:-0.414864px;}
.ls22{letter-spacing:-0.381024px;}
.ls19{letter-spacing:-0.338688px;}
.ls1c{letter-spacing:-0.320544px;}
.ls7{letter-spacing:-0.318384px;}
.ls5{letter-spacing:-0.317952px;}
.ls17{letter-spacing:-0.302400px;}
.ls1a{letter-spacing:-0.260064px;}
.ls6{letter-spacing:-0.251712px;}
.lsa{letter-spacing:-0.250848px;}
.ls1b{letter-spacing:-0.241920px;}
.lsb{letter-spacing:-0.231552px;}
.ls18{letter-spacing:-0.223776px;}
.ls1f{letter-spacing:-0.175392px;}
.ls1d{letter-spacing:-0.157248px;}
.ls9{letter-spacing:-0.154368px;}
.ls1e{letter-spacing:-0.145152px;}
.ls14{letter-spacing:-0.014400px;}
.ls25{letter-spacing:-0.007200px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000576px;}
.ls23{letter-spacing:0.006912px;}
.ls2e{letter-spacing:0.011520px;}
.ls31{letter-spacing:0.012672px;}
.ls11{letter-spacing:0.014400px;}
.ls16{letter-spacing:0.127584px;}
.ls0{letter-spacing:0.159840px;}
.ls2{letter-spacing:0.160416px;}
.ls1{letter-spacing:0.233856px;}
.ls3{letter-spacing:0.242208px;}
.lse{letter-spacing:0.275616px;}
.lsd{letter-spacing:0.283968px;}
.lsc{letter-spacing:0.359136px;}
.ls30{letter-spacing:1.442880px;}
.ls2f{letter-spacing:2.594304px;}
.ls2a{letter-spacing:3.445344px;}
.ls29{letter-spacing:4.125600px;}
.ls2d{letter-spacing:28.007424px;}
.ls20{letter-spacing:31.766112px;}
.ls2c{letter-spacing:32.050368px;}
.lsf{letter-spacing:33.984000px;}
.ls10{letter-spacing:51.984000px;}
.ls15{letter-spacing:54.866736px;}
.ls27{letter-spacing:55.042560px;}
.ls13{letter-spacing:62.782848px;}
.ls26{letter-spacing:63.588816px;}
.ls24{letter-spacing:64.276992px;}
.ls21{letter-spacing:74.366784px;}
.ls2b{letter-spacing:194.399424px;}
.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;}
}
.ws0{word-spacing:-24.120000px;}
.ws1{word-spacing:-21.239136px;}
.ws4{word-spacing:-18.014400px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.985600px;}
.ws8{word-spacing:-15.120000px;}
.wse{word-spacing:-14.974848px;}
.wsd{word-spacing:-14.962752px;}
.wsa{word-spacing:-14.944608px;}
.wsb{word-spacing:-14.896224px;}
.ws9{word-spacing:-14.878080px;}
.ws10{word-spacing:-14.799456px;}
.ws7{word-spacing:-14.781312px;}
.wsf{word-spacing:-14.702688px;}
.ws6{word-spacing:-0.072000px;}
.wsc{word-spacing:-0.060480px;}
.ws2{word-spacing:0.000000px;}
._16{margin-left:-5.409792px;}
._d{margin-left:-4.334400px;}
._2{margin-left:-3.153600px;}
._a{margin-left:-2.147616px;}
._1{margin-left:-1.020384px;}
._0{width:1.059840px;}
._e{width:3.060000px;}
._3{width:4.125600px;}
._9{width:5.340240px;}
._f{width:6.626160px;}
._5{width:7.689600px;}
._8{width:8.829504px;}
._c{width:10.601568px;}
._4{width:11.823552px;}
._b{width:13.006656px;}
._6{width:14.472000px;}
._7{width:16.099200px;}
._12{width:19.519200px;}
._10{width:20.574000px;}
._18{width:21.974400px;}
._14{width:23.133600px;}
._1a{width:24.512976px;}
._17{width:26.172000px;}
._1b{width:27.655200px;}
._13{width:28.677600px;}
._20{width:29.980800px;}
._15{width:31.752000px;}
._21{width:32.882976px;}
._11{width:34.128000px;}
._1c{width:35.310384px;}
._1e{width:36.985248px;}
._1f{width:39.924000px;}
._24{width:41.126400px;}
._2c{width:42.163200px;}
._22{width:43.167744px;}
._19{width:44.193456px;}
._27{width:50.458752px;}
._1d{width:53.668800px;}
._26{width:69.904800px;}
._2e{width:113.367456px;}
._2a{width:129.802032px;}
._25{width:176.399424px;}
._23{width:194.399424px;}
._29{width:311.290704px;}
._2b{width:505.153008px;}
._2d{width:872.666208px;}
._28{width:2121.357600px;}
.fc6{color:rgb(17,85,204);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(10,2,2);}
.fc1{color:rgb(32,33,34);}
.fc7{color:rgb(42,42,42);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:47.520000px;}
.fs7{font-size:57.600000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:132.480000px;}
.y0{bottom:0.000000px;}
.yfd{bottom:3.600000px;}
.yfa{bottom:3.660000px;}
.yf1{bottom:3.720000px;}
.y142{bottom:3.780000px;}
.y150{bottom:3.840000px;}
.y13d{bottom:3.900000px;}
.y124{bottom:3.960000px;}
.y135{bottom:4.020000px;}
.y105{bottom:4.260000px;}
.y100{bottom:4.320000px;}
.yf5{bottom:4.440000px;}
.y1b5{bottom:4.500000px;}
.y12a{bottom:4.620000px;}
.y14a{bottom:4.680000px;}
.y3{bottom:4.860000px;}
.y107{bottom:14.880000px;}
.yed{bottom:15.300000px;}
.yef{bottom:16.320000px;}
.yfe{bottom:16.920000px;}
.yf3{bottom:17.040000px;}
.y108{bottom:17.760000px;}
.y189{bottom:18.600000px;}
.yfc{bottom:20.880000px;}
.yf9{bottom:20.940000px;}
.yf0{bottom:21.000000px;}
.y141{bottom:21.060000px;}
.y14f{bottom:21.120000px;}
.y13c{bottom:21.180000px;}
.y123{bottom:21.240000px;}
.y134{bottom:21.300000px;}
.y104{bottom:21.540000px;}
.yff{bottom:21.600000px;}
.yf4{bottom:21.720000px;}
.y131{bottom:21.780000px;}
.y129{bottom:21.900000px;}
.y149{bottom:21.960000px;}
.y102{bottom:25.500000px;}
.y14c{bottom:33.720000px;}
.y126{bottom:34.500000px;}
.yfb{bottom:38.160000px;}
.y140{bottom:38.340000px;}
.y14e{bottom:38.400000px;}
.y13b{bottom:38.460000px;}
.y122{bottom:38.520000px;}
.y133{bottom:38.580000px;}
.y103{bottom:38.820000px;}
.y130{bottom:39.060000px;}
.y128{bottom:39.180000px;}
.y148{bottom:39.240000px;}
.y188{bottom:39.480000px;}
.yf7{bottom:42.480000px;}
.y2{bottom:52.500000px;}
.y13f{bottom:55.620000px;}
.y14d{bottom:55.680000px;}
.y13a{bottom:55.740000px;}
.y121{bottom:55.800000px;}
.y132{bottom:55.860000px;}
.y12f{bottom:56.340000px;}
.y127{bottom:56.460000px;}
.y147{bottom:56.520000px;}
.y1{bottom:57.360000px;}
.y187{bottom:60.360000px;}
.y146{bottom:72.780000px;}
.y13e{bottom:72.900000px;}
.y139{bottom:73.020000px;}
.y120{bottom:73.080000px;}
.y12e{bottom:73.620000px;}
.y12c{bottom:77.460000px;}
.y144{bottom:78.120000px;}
.y186{bottom:80.880000px;}
.y137{bottom:85.860000px;}
.y185{bottom:101.760000px;}
.yd5{bottom:109.560000px;}
.y1a6{bottom:112.440000px;}
.y1bf{bottom:112.800000px;}
.y1a9{bottom:113.880000px;}
.y96{bottom:115.320000px;}
.y8d{bottom:115.680000px;}
.y1e0{bottom:116.760000px;}
.y115{bottom:119.280000px;}
.y17e{bottom:120.360000px;}
.y184{bottom:122.280000px;}
.y14b{bottom:123.000000px;}
.y47{bottom:125.400000px;}
.y72{bottom:125.760000px;}
.y162{bottom:126.840000px;}
.yd4{bottom:127.560000px;}
.y24{bottom:128.640000px;}
.y10a{bottom:132.240000px;}
.y8c{bottom:136.200000px;}
.ya7{bottom:138.360000px;}
.y15a{bottom:142.320000px;}
.yce{bottom:143.760000px;}
.y161{bottom:144.120000px;}
.y1be{bottom:144.480000px;}
.y193{bottom:144.840000px;}
.y95{bottom:146.280000px;}
.y71{bottom:146.640000px;}
.yd3{bottom:147.360000px;}
.y1df{bottom:147.720000px;}
.y160{bottom:149.520000px;}
.y23{bottom:149.880000px;}
.y17d{bottom:151.320000px;}
.y114{bottom:151.680000px;}
.y18f{bottom:153.480000px;}
.yd7{bottom:155.640000px;}
.y46{bottom:156.720000px;}
.y8b{bottom:157.080000px;}
.y182{bottom:161.400000px;}
.y15f{bottom:162.120000px;}
.y109{bottom:163.200000px;}
.ycd{bottom:164.640000px;}
.y181{bottom:166.800000px;}
.y70{bottom:167.160000px;}
.y1e5{bottom:167.520000px;}
.ya6{bottom:169.680000px;}
.y18e{bottom:170.760000px;}
.y159{bottom:173.280000px;}
.y22{bottom:174.000000px;}
.y1a5{bottom:174.720000px;}
.y1bd{bottom:175.440000px;}
.y1a8{bottom:175.800000px;}
.y192{bottom:176.160000px;}
.y94{bottom:177.240000px;}
.y8a{bottom:177.600000px;}
.y1de{bottom:178.680000px;}
.y180{bottom:179.400000px;}
.y106{bottom:180.000000px;}
.yd2{bottom:181.920000px;}
.y17c{bottom:182.280000px;}
.y113{bottom:184.080000px;}
.ycc{bottom:185.520000px;}
.yd1{bottom:187.320000px;}
.y45{bottom:187.680000px;}
.y6f{bottom:188.040000px;}
.y143{bottom:192.000000px;}
.y21{bottom:198.120000px;}
.y89{bottom:198.480000px;}
.y1c4{bottom:199.200000px;}
.yd0{bottom:200.280000px;}
.ya5{bottom:201.720000px;}
.y158{bottom:204.600000px;}
.y18d{bottom:205.320000px;}
.y1a4{bottom:205.680000px;}
.ycb{bottom:206.040000px;}
.y1bc{bottom:206.400000px;}
.y1a7{bottom:207.120000px;}
.y93{bottom:208.200000px;}
.y6e{bottom:208.560000px;}
.y1dd{bottom:210.000000px;}
.y18c{bottom:210.720000px;}
.y101{bottom:211.500000px;}
.y17b{bottom:213.240000px;}
.y1c3{bottom:216.480000px;}
.y44{bottom:218.640000px;}
.y88{bottom:219.000000px;}
.y20{bottom:222.240000px;}
.y18b{bottom:223.320000px;}
.yca{bottom:226.920000px;}
.y6d{bottom:229.440000px;}
.y15e{bottom:230.520000px;}
.ya4{bottom:233.040000px;}
.y1c2{bottom:233.760000px;}
.y157{bottom:235.560000px;}
.y1a3{bottom:236.640000px;}
.y1bb{bottom:239.160000px;}
.y92{bottom:239.520000px;}
.y87{bottom:239.880000px;}
.y1dc{bottom:240.960000px;}
.y17a{bottom:244.560000px;}
.y1f{bottom:246.360000px;}
.yc9{bottom:247.440000px;}
.y43{bottom:249.600000px;}
.y6c{bottom:249.960000px;}
.y1c1{bottom:251.760000px;}
.y112{bottom:257.520000px;}
.y86{bottom:260.400000px;}
.y15d{bottom:261.480000px;}
.y145{bottom:262.500000px;}
.ya3{bottom:264.000000px;}
.y156{bottom:266.520000px;}
.y1a2{bottom:267.960000px;}
.yc8{bottom:268.320000px;}
.y1e{bottom:270.480000px;}
.y6b{bottom:270.840000px;}
.y1db{bottom:271.920000px;}
.y179{bottom:275.520000px;}
.y42{bottom:280.920000px;}
.y85{bottom:281.280000px;}
.yc7{bottom:288.840000px;}
.y6a{bottom:291.360000px;}
.y1e4{bottom:291.720000px;}
.y15c{bottom:292.440000px;}
.y1d{bottom:294.600000px;}
.ya2{bottom:296.400000px;}
.y155{bottom:297.480000px;}
.y1a1{bottom:298.920000px;}
.yf6{bottom:300.000000px;}
.y91{bottom:301.440000px;}
.y84{bottom:301.800000px;}
.y1da{bottom:302.880000px;}
.yc6{bottom:309.720000px;}
.y41{bottom:311.880000px;}
.y69{bottom:312.240000px;}
.y178{bottom:313.680000px;}
.y1c{bottom:318.720000px;}
.y111{bottom:321.240000px;}
.y83{bottom:322.680000px;}
.ya1{bottom:327.360000px;}
.y154{bottom:328.800000px;}
.y1a0{bottom:329.880000px;}
.yc5{bottom:330.240000px;}
.y90{bottom:332.400000px;}
.y68{bottom:332.760000px;}
.y1d9{bottom:333.840000px;}
.y40{bottom:342.840000px;}
.y1b{bottom:343.200000px;}
.y177{bottom:344.640000px;}
.y136{bottom:349.500000px;}
.yc4{bottom:351.120000px;}
.yf8{bottom:352.500000px;}
.y110{bottom:353.280000px;}
.y67{bottom:353.640000px;}
.ya0{bottom:358.680000px;}
.y153{bottom:359.760000px;}
.y19f{bottom:360.840000px;}
.y8f{bottom:363.720000px;}
.y82{bottom:364.080000px;}
.y1d8{bottom:365.160000px;}
.y1a{bottom:370.920000px;}
.yc3{bottom:371.640000px;}
.y3f{bottom:373.800000px;}
.y66{bottom:374.160000px;}
.y176{bottom:375.960000px;}
.y81{bottom:384.600000px;}
.y10f{bottom:385.680000px;}
.yf2{bottom:387.000000px;}
.y9f{bottom:390.720000px;}
.y19e{bottom:392.160000px;}
.yc2{bottom:392.520000px;}
.y8e{bottom:394.680000px;}
.y65{bottom:395.040000px;}
.y1d7{bottom:396.120000px;}
.y19{bottom:398.640000px;}
.y3e{bottom:405.120000px;}
.y80{bottom:405.480000px;}
.yc1{bottom:413.040000px;}
.y175{bottom:414.120000px;}
.y64{bottom:415.560000px;}
.y10e{bottom:418.080000px;}
.y183{bottom:420.000000px;}
.y9e{bottom:421.680000px;}
.yee{bottom:423.000000px;}
.y19d{bottom:423.120000px;}
.y1b4{bottom:424.200000px;}
.y7c{bottom:425.640000px;}
.y18{bottom:426.000000px;}
.yc0{bottom:433.920000px;}
.y3d{bottom:436.080000px;}
.y63{bottom:436.440000px;}
.y138{bottom:436.500000px;}
.y174{bottom:445.080000px;}
.y7f{bottom:446.520000px;}
.y10d{bottom:450.480000px;}
.y1d6{bottom:451.560000px;}
.y9d{bottom:453.000000px;}
.y17{bottom:453.720000px;}
.y19c{bottom:454.080000px;}
.ybf{bottom:454.440000px;}
.y1b3{bottom:455.520000px;}
.y7b{bottom:456.600000px;}
.y62{bottom:456.960000px;}
.yec{bottom:457.500000px;}
.y17f{bottom:462.720000px;}
.y1e3{bottom:464.880000px;}
.y3c{bottom:467.040000px;}
.y7e{bottom:467.400000px;}
.ybe{bottom:475.320000px;}
.y173{bottom:476.040000px;}
.y61{bottom:477.840000px;}
.y16{bottom:481.440000px;}
.y10c{bottom:482.880000px;}
.y9c{bottom:485.040000px;}
.y152{bottom:485.400000px;}
.y1b2{bottom:486.480000px;}
.y7a{bottom:487.560000px;}
.y7d{bottom:487.920000px;}
.ybd{bottom:495.840000px;}
.y3b{bottom:498.000000px;}
.y60{bottom:498.360000px;}
.yeb{bottom:504.480000px;}
.y172{bottom:507.360000px;}
.y1d5{bottom:513.840000px;}
.y10b{bottom:515.280000px;}
.y9b{bottom:516.360000px;}
.ybc{bottom:516.720000px;}
.y19b{bottom:517.440000px;}
.y151{bottom:517.800000px;}
.y79{bottom:518.880000px;}
.y5f{bottom:519.240000px;}
.y12b{bottom:523.500000px;}
.y3a{bottom:528.960000px;}
.yea{bottom:535.440000px;}
.y15{bottom:536.880000px;}
.ybb{bottom:537.240000px;}
.y171{bottom:538.320000px;}
.y5e{bottom:539.760000px;}
.y1d4{bottom:544.800000px;}
.y9a{bottom:547.320000px;}
.y19a{bottom:548.400000px;}
.y78{bottom:549.840000px;}
.yba{bottom:558.120000px;}
.y39{bottom:560.280000px;}
.y5d{bottom:560.640000px;}
.ye9{bottom:566.760000px;}
.y170{bottom:569.280000px;}
.y1d3{bottom:575.760000px;}
.y99{bottom:579.720000px;}
.y77{bottom:580.800000px;}
.y5c{bottom:581.160000px;}
.yb9{bottom:588.720000px;}
.y38{bottom:591.240000px;}
.y14{bottom:591.960000px;}
.y12d{bottom:592.500000px;}
.ye8{bottom:597.720000px;}
.y16f{bottom:600.240000px;}
.y5b{bottom:602.040000px;}
.y1d2{bottom:607.080000px;}
.y98{bottom:610.680000px;}
.y76{bottom:611.760000px;}
.y1ba{bottom:612.120000px;}
.yb8{bottom:619.680000px;}
.y37{bottom:622.200000px;}
.y5a{bottom:622.560000px;}
.y1e2{bottom:625.080000px;}
.ye7{bottom:629.040000px;}
.y16e{bottom:631.560000px;}
.y1d1{bottom:638.040000px;}
.y199{bottom:641.640000px;}
.y97{bottom:642.000000px;}
.y75{bottom:643.080000px;}
.y59{bottom:643.440000px;}
.y13{bottom:647.040000px;}
.yb7{bottom:650.640000px;}
.y36{bottom:653.160000px;}
.y1e1{bottom:656.040000px;}
.ye6{bottom:661.440000px;}
.y16d{bottom:662.520000px;}
.y58{bottom:663.960000px;}
.y1d0{bottom:669.000000px;}
.y198{bottom:672.600000px;}
.y74{bottom:674.040000px;}
.yd6{bottom:674.400000px;}
.y125{bottom:679.500000px;}
.yb6{bottom:681.960000px;}
.y35{bottom:684.480000px;}
.y57{bottom:684.840000px;}
.ye5{bottom:693.480000px;}
.y1cf{bottom:699.960000px;}
.y16c{bottom:700.680000px;}
.y12{bottom:702.480000px;}
.y197{bottom:703.920000px;}
.y73{bottom:705.000000px;}
.y56{bottom:705.360000px;}
.y15b{bottom:711.120000px;}
.yb5{bottom:712.920000px;}
.y34{bottom:715.440000px;}
.ye4{bottom:725.880000px;}
.y11{bottom:728.760000px;}
.y1ce{bottom:731.280000px;}
.y16b{bottom:731.640000px;}
.y196{bottom:734.880000px;}
.y55{bottom:735.960000px;}
.y1b9{bottom:736.320000px;}
.yb4{bottom:743.880000px;}
.y33{bottom:746.400000px;}
.y10{bottom:749.640000px;}
.y11f{bottom:750.000000px;}
.ye3{bottom:758.280000px;}
.y1cd{bottom:762.240000px;}
.y195{bottom:765.840000px;}
.y54{bottom:767.280000px;}
.yf{bottom:770.160000px;}
.yb3{bottom:774.840000px;}
.y32{bottom:777.360000px;}
.ye2{bottom:790.320000px;}
.ye{bottom:791.040000px;}
.y1cc{bottom:793.200000px;}
.y1b1{bottom:796.800000px;}
.y194{bottom:797.160000px;}
.y53{bottom:798.240000px;}
.y16a{bottom:801.120000px;}
.yb2{bottom:805.800000px;}
.y31{bottom:808.680000px;}
.yd{bottom:811.560000px;}
.ye1{bottom:821.640000px;}
.y1cb{bottom:824.160000px;}
.y1b0{bottom:828.120000px;}
.y52{bottom:829.200000px;}
.y1e6{bottom:829.560000px;}
.y169{bottom:832.080000px;}
.yc{bottom:832.440000px;}
.y1c0{bottom:835.320000px;}
.y11e{bottom:837.000000px;}
.yb1{bottom:837.120000px;}
.y30{bottom:839.640000px;}
.ye0{bottom:852.600000px;}
.y1ca{bottom:855.480000px;}
.y1af{bottom:859.080000px;}
.y51{bottom:860.160000px;}
.y1b8{bottom:860.520000px;}
.yb{bottom:861.600000px;}
.y168{bottom:863.040000px;}
.ycf{bottom:866.280000px;}
.yb0{bottom:868.080000px;}
.y2f{bottom:870.600000px;}
.y11d{bottom:883.560000px;}
.ydf{bottom:883.920000px;}
.y1c9{bottom:886.440000px;}
.y1ae{bottom:890.040000px;}
.y50{bottom:891.480000px;}
.y167{bottom:894.360000px;}
.y18a{bottom:897.600000px;}
.yaf{bottom:899.040000px;}
.y2e{bottom:901.560000px;}
.ya{bottom:905.160000px;}
.y11c{bottom:914.520000px;}
.yde{bottom:916.320000px;}
.y1ad{bottom:921.000000px;}
.y4f{bottom:922.440000px;}
.y166{bottom:925.320000px;}
.y1c5{bottom:928.560000px;}
.yae{bottom:930.000000px;}
.y2d{bottom:932.880000px;}
.y1c8{bottom:935.400000px;}
.y9{bottom:940.440000px;}
.y11b{bottom:945.840000px;}
.ydd{bottom:948.360000px;}
.y1ac{bottom:952.320000px;}
.y4e{bottom:953.400000px;}
.y8{bottom:960.960000px;}
.yad{bottom:961.320000px;}
.y165{bottom:963.480000px;}
.y2c{bottom:963.840000px;}
.y1c7{bottom:966.360000px;}
.y11a{bottom:976.800000px;}
.ydc{bottom:980.760000px;}
.y7{bottom:981.840000px;}
.y1ab{bottom:983.280000px;}
.y4d{bottom:984.360000px;}
.y1b7{bottom:984.720000px;}
.yac{bottom:992.280000px;}
.y164{bottom:994.440000px;}
.y2b{bottom:994.800000px;}
.y1c6{bottom:997.680000px;}
.y6{bottom:1002.360000px;}
.y119{bottom:1009.200000px;}
.ydb{bottom:1011.720000px;}
.y1aa{bottom:1014.600000px;}
.y4c{bottom:1015.680000px;}
.y190{bottom:1016.040000px;}
.y5{bottom:1023.240000px;}
.y2a{bottom:1025.760000px;}
.y4{bottom:1039.800000px;}
.y118{bottom:1041.600000px;}
.yda{bottom:1044.120000px;}
.y4b{bottom:1046.640000px;}
.yab{bottom:1054.200000px;}
.y163{bottom:1056.720000px;}
.y29{bottom:1057.080000px;}
.y117{bottom:1074.000000px;}
.yd9{bottom:1076.520000px;}
.y4a{bottom:1077.600000px;}
.y28{bottom:1077.960000px;}
.yaa{bottom:1085.520000px;}
.y27{bottom:1098.840000px;}
.y116{bottom:1106.400000px;}
.yd8{bottom:1107.480000px;}
.ya9{bottom:1107.840000px;}
.y49{bottom:1108.560000px;}
.y1b6{bottom:1108.920000px;}
.y26{bottom:1119.360000px;}
.ya8{bottom:1138.800000px;}
.y48{bottom:1139.880000px;}
.y25{bottom:1140.240000px;}
.y191{bottom:1146.000000px;}
.h1a{height:21.000000px;}
.h2{height:22.500000px;}
.hc{height:26.274375px;}
.ha{height:32.113125px;}
.hf{height:33.000000px;}
.h10{height:36.000000px;}
.h1c{height:38.390625px;}
.he{height:41.993438px;}
.hd{height:42.022969px;}
.h1b{height:47.988281px;}
.h1{height:48.656250px;}
.hb{height:49.992188px;}
.h19{height:52.031250px;}
.h12{height:52.500000px;}
.h13{height:54.000000px;}
.h7{height:58.031719px;}
.h8{height:63.175781px;}
.h3{height:63.949219px;}
.h6{height:66.989531px;}
.h15{height:70.500000px;}
.h5{height:85.691953px;}
.h14{height:87.000000px;}
.h11{height:88.500000px;}
.h4{height:90.691875px;}
.h18{height:139.500000px;}
.h16{height:157.500000px;}
.h17{height:174.000000px;}
.h9{height:1236.000000px;}
.h0{height:1263.000000px;}
.w1{width:10.500000px;}
.w2{width:19.500000px;}
.w6{width:39.000000px;}
.w4{width:54.000000px;}
.w8{width:468.000000px;}
.w7{width:567.000000px;}
.w5{width:585.000000px;}
.w3{width:865.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x19{left:9.000000px;}
.x25{left:11.280036px;}
.x18{left:16.376952px;}
.x1b{left:20.144892px;}
.x10{left:27.000000px;}
.x14{left:100.440000px;}
.x1{left:127.439928px;}
.x4{left:131.043096px;}
.x15{left:132.480108px;}
.x21{left:142.920000px;}
.x2a{left:148.740228px;}
.x1c{left:151.390116px;}
.xb{left:154.439928px;}
.x1a{left:159.390036px;}
.x1e{left:169.965072px;}
.x17{left:172.301868px;}
.x28{left:176.489856px;}
.x16{left:180.000000px;}
.xc{left:181.439928px;}
.x1d{left:191.265012px;}
.x24{left:195.000000px;}
.x7{left:197.087760px;}
.xd{left:208.439928px;}
.x8{left:212.749884px;}
.x29{left:233.640036px;}
.x9{left:272.392488px;}
.x6{left:291.324096px;}
.x22{left:312.120000px;}
.x13{left:343.439928px;}
.x23{left:345.329964px;}
.x5{left:385.375140px;}
.x26{left:428.760000px;}
.xa{left:446.339880px;}
.x2b{left:452.077200px;}
.x27{left:461.962080px;}
.xe{left:472.889520px;}
.x2c{left:563.400000px;}
.x11{left:594.360000px;}
.x2d{left:596.427480px;}
.x2e{left:625.320000px;}
.x12{left:627.452640px;}
.x1f{left:636.840000px;}
.x2f{left:658.375920px;}
.x20{left:669.921480px;}
.x3{left:735.480000px;}
.xf{left:747.000000px;}
.x2{left:756.000000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls28{letter-spacing:-0.370944pt;}
.ls8{letter-spacing:-0.368768pt;}
.ls22{letter-spacing:-0.338688pt;}
.ls19{letter-spacing:-0.301056pt;}
.ls1c{letter-spacing:-0.284928pt;}
.ls7{letter-spacing:-0.283008pt;}
.ls5{letter-spacing:-0.282624pt;}
.ls17{letter-spacing:-0.268800pt;}
.ls1a{letter-spacing:-0.231168pt;}
.ls6{letter-spacing:-0.223744pt;}
.lsa{letter-spacing:-0.222976pt;}
.ls1b{letter-spacing:-0.215040pt;}
.lsb{letter-spacing:-0.205824pt;}
.ls18{letter-spacing:-0.198912pt;}
.ls1f{letter-spacing:-0.155904pt;}
.ls1d{letter-spacing:-0.139776pt;}
.ls9{letter-spacing:-0.137216pt;}
.ls1e{letter-spacing:-0.129024pt;}
.ls14{letter-spacing:-0.012800pt;}
.ls25{letter-spacing:-0.006400pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000512pt;}
.ls23{letter-spacing:0.006144pt;}
.ls2e{letter-spacing:0.010240pt;}
.ls31{letter-spacing:0.011264pt;}
.ls11{letter-spacing:0.012800pt;}
.ls16{letter-spacing:0.113408pt;}
.ls0{letter-spacing:0.142080pt;}
.ls2{letter-spacing:0.142592pt;}
.ls1{letter-spacing:0.207872pt;}
.ls3{letter-spacing:0.215296pt;}
.lse{letter-spacing:0.244992pt;}
.lsd{letter-spacing:0.252416pt;}
.lsc{letter-spacing:0.319232pt;}
.ls30{letter-spacing:1.282560pt;}
.ls2f{letter-spacing:2.306048pt;}
.ls2a{letter-spacing:3.062528pt;}
.ls29{letter-spacing:3.667200pt;}
.ls2d{letter-spacing:24.895488pt;}
.ls20{letter-spacing:28.236544pt;}
.ls2c{letter-spacing:28.489216pt;}
.lsf{letter-spacing:30.208000pt;}
.ls10{letter-spacing:46.208000pt;}
.ls15{letter-spacing:48.770432pt;}
.ls27{letter-spacing:48.926720pt;}
.ls13{letter-spacing:55.806976pt;}
.ls26{letter-spacing:56.523392pt;}
.ls24{letter-spacing:57.135104pt;}
.ls21{letter-spacing:66.103808pt;}
.ls2b{letter-spacing:172.799488pt;}
.ws0{word-spacing:-21.440000pt;}
.ws1{word-spacing:-18.879232pt;}
.ws4{word-spacing:-16.012800pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.987200pt;}
.ws8{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.310976pt;}
.wsd{word-spacing:-13.300224pt;}
.wsa{word-spacing:-13.284096pt;}
.wsb{word-spacing:-13.241088pt;}
.ws9{word-spacing:-13.224960pt;}
.ws10{word-spacing:-13.155072pt;}
.ws7{word-spacing:-13.138944pt;}
.wsf{word-spacing:-13.069056pt;}
.ws6{word-spacing:-0.064000pt;}
.wsc{word-spacing:-0.053760pt;}
.ws2{word-spacing:0.000000pt;}
._16{margin-left:-4.808704pt;}
._d{margin-left:-3.852800pt;}
._2{margin-left:-2.803200pt;}
._a{margin-left:-1.908992pt;}
._1{margin-left:-0.907008pt;}
._0{width:0.942080pt;}
._e{width:2.720000pt;}
._3{width:3.667200pt;}
._9{width:4.746880pt;}
._f{width:5.889920pt;}
._5{width:6.835200pt;}
._8{width:7.848448pt;}
._c{width:9.423616pt;}
._4{width:10.509824pt;}
._b{width:11.561472pt;}
._6{width:12.864000pt;}
._7{width:14.310400pt;}
._12{width:17.350400pt;}
._10{width:18.288000pt;}
._18{width:19.532800pt;}
._14{width:20.563200pt;}
._1a{width:21.789312pt;}
._17{width:23.264000pt;}
._1b{width:24.582400pt;}
._13{width:25.491200pt;}
._20{width:26.649600pt;}
._15{width:28.224000pt;}
._21{width:29.229312pt;}
._11{width:30.336000pt;}
._1c{width:31.387008pt;}
._1e{width:32.875776pt;}
._1f{width:35.488000pt;}
._24{width:36.556800pt;}
._2c{width:37.478400pt;}
._22{width:38.371328pt;}
._19{width:39.283072pt;}
._27{width:44.852224pt;}
._1d{width:47.705600pt;}
._26{width:62.137600pt;}
._2e{width:100.771072pt;}
._2a{width:115.379584pt;}
._25{width:156.799488pt;}
._23{width:172.799488pt;}
._29{width:276.702848pt;}
._2b{width:449.024896pt;}
._2d{width:775.703296pt;}
._28{width:1885.651200pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.240000pt;}
.fs7{font-size:51.200000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:117.760000pt;}
.y0{bottom:0.000000pt;}
.yfd{bottom:3.200000pt;}
.yfa{bottom:3.253333pt;}
.yf1{bottom:3.306667pt;}
.y142{bottom:3.360000pt;}
.y150{bottom:3.413333pt;}
.y13d{bottom:3.466667pt;}
.y124{bottom:3.520000pt;}
.y135{bottom:3.573333pt;}
.y105{bottom:3.786667pt;}
.y100{bottom:3.840000pt;}
.yf5{bottom:3.946667pt;}
.y1b5{bottom:4.000000pt;}
.y12a{bottom:4.106667pt;}
.y14a{bottom:4.160000pt;}
.y3{bottom:4.320000pt;}
.y107{bottom:13.226667pt;}
.yed{bottom:13.600000pt;}
.yef{bottom:14.506667pt;}
.yfe{bottom:15.040000pt;}
.yf3{bottom:15.146667pt;}
.y108{bottom:15.786667pt;}
.y189{bottom:16.533333pt;}
.yfc{bottom:18.560000pt;}
.yf9{bottom:18.613333pt;}
.yf0{bottom:18.666667pt;}
.y141{bottom:18.720000pt;}
.y14f{bottom:18.773333pt;}
.y13c{bottom:18.826667pt;}
.y123{bottom:18.880000pt;}
.y134{bottom:18.933333pt;}
.y104{bottom:19.146667pt;}
.yff{bottom:19.200000pt;}
.yf4{bottom:19.306667pt;}
.y131{bottom:19.360000pt;}
.y129{bottom:19.466667pt;}
.y149{bottom:19.520000pt;}
.y102{bottom:22.666667pt;}
.y14c{bottom:29.973333pt;}
.y126{bottom:30.666667pt;}
.yfb{bottom:33.920000pt;}
.y140{bottom:34.080000pt;}
.y14e{bottom:34.133333pt;}
.y13b{bottom:34.186667pt;}
.y122{bottom:34.240000pt;}
.y133{bottom:34.293333pt;}
.y103{bottom:34.506667pt;}
.y130{bottom:34.720000pt;}
.y128{bottom:34.826667pt;}
.y148{bottom:34.880000pt;}
.y188{bottom:35.093333pt;}
.yf7{bottom:37.760000pt;}
.y2{bottom:46.666667pt;}
.y13f{bottom:49.440000pt;}
.y14d{bottom:49.493333pt;}
.y13a{bottom:49.546667pt;}
.y121{bottom:49.600000pt;}
.y132{bottom:49.653333pt;}
.y12f{bottom:50.080000pt;}
.y127{bottom:50.186667pt;}
.y147{bottom:50.240000pt;}
.y1{bottom:50.986667pt;}
.y187{bottom:53.653333pt;}
.y146{bottom:64.693333pt;}
.y13e{bottom:64.800000pt;}
.y139{bottom:64.906667pt;}
.y120{bottom:64.960000pt;}
.y12e{bottom:65.440000pt;}
.y12c{bottom:68.853333pt;}
.y144{bottom:69.440000pt;}
.y186{bottom:71.893333pt;}
.y137{bottom:76.320000pt;}
.y185{bottom:90.453333pt;}
.yd5{bottom:97.386667pt;}
.y1a6{bottom:99.946667pt;}
.y1bf{bottom:100.266667pt;}
.y1a9{bottom:101.226667pt;}
.y96{bottom:102.506667pt;}
.y8d{bottom:102.826667pt;}
.y1e0{bottom:103.786667pt;}
.y115{bottom:106.026667pt;}
.y17e{bottom:106.986667pt;}
.y184{bottom:108.693333pt;}
.y14b{bottom:109.333333pt;}
.y47{bottom:111.466667pt;}
.y72{bottom:111.786667pt;}
.y162{bottom:112.746667pt;}
.yd4{bottom:113.386667pt;}
.y24{bottom:114.346667pt;}
.y10a{bottom:117.546667pt;}
.y8c{bottom:121.066667pt;}
.ya7{bottom:122.986667pt;}
.y15a{bottom:126.506667pt;}
.yce{bottom:127.786667pt;}
.y161{bottom:128.106667pt;}
.y1be{bottom:128.426667pt;}
.y193{bottom:128.746667pt;}
.y95{bottom:130.026667pt;}
.y71{bottom:130.346667pt;}
.yd3{bottom:130.986667pt;}
.y1df{bottom:131.306667pt;}
.y160{bottom:132.906667pt;}
.y23{bottom:133.226667pt;}
.y17d{bottom:134.506667pt;}
.y114{bottom:134.826667pt;}
.y18f{bottom:136.426667pt;}
.yd7{bottom:138.346667pt;}
.y46{bottom:139.306667pt;}
.y8b{bottom:139.626667pt;}
.y182{bottom:143.466667pt;}
.y15f{bottom:144.106667pt;}
.y109{bottom:145.066667pt;}
.ycd{bottom:146.346667pt;}
.y181{bottom:148.266667pt;}
.y70{bottom:148.586667pt;}
.y1e5{bottom:148.906667pt;}
.ya6{bottom:150.826667pt;}
.y18e{bottom:151.786667pt;}
.y159{bottom:154.026667pt;}
.y22{bottom:154.666667pt;}
.y1a5{bottom:155.306667pt;}
.y1bd{bottom:155.946667pt;}
.y1a8{bottom:156.266667pt;}
.y192{bottom:156.586667pt;}
.y94{bottom:157.546667pt;}
.y8a{bottom:157.866667pt;}
.y1de{bottom:158.826667pt;}
.y180{bottom:159.466667pt;}
.y106{bottom:160.000000pt;}
.yd2{bottom:161.706667pt;}
.y17c{bottom:162.026667pt;}
.y113{bottom:163.626667pt;}
.ycc{bottom:164.906667pt;}
.yd1{bottom:166.506667pt;}
.y45{bottom:166.826667pt;}
.y6f{bottom:167.146667pt;}
.y143{bottom:170.666667pt;}
.y21{bottom:176.106667pt;}
.y89{bottom:176.426667pt;}
.y1c4{bottom:177.066667pt;}
.yd0{bottom:178.026667pt;}
.ya5{bottom:179.306667pt;}
.y158{bottom:181.866667pt;}
.y18d{bottom:182.506667pt;}
.y1a4{bottom:182.826667pt;}
.ycb{bottom:183.146667pt;}
.y1bc{bottom:183.466667pt;}
.y1a7{bottom:184.106667pt;}
.y93{bottom:185.066667pt;}
.y6e{bottom:185.386667pt;}
.y1dd{bottom:186.666667pt;}
.y18c{bottom:187.306667pt;}
.y101{bottom:188.000000pt;}
.y17b{bottom:189.546667pt;}
.y1c3{bottom:192.426667pt;}
.y44{bottom:194.346667pt;}
.y88{bottom:194.666667pt;}
.y20{bottom:197.546667pt;}
.y18b{bottom:198.506667pt;}
.yca{bottom:201.706667pt;}
.y6d{bottom:203.946667pt;}
.y15e{bottom:204.906667pt;}
.ya4{bottom:207.146667pt;}
.y1c2{bottom:207.786667pt;}
.y157{bottom:209.386667pt;}
.y1a3{bottom:210.346667pt;}
.y1bb{bottom:212.586667pt;}
.y92{bottom:212.906667pt;}
.y87{bottom:213.226667pt;}
.y1dc{bottom:214.186667pt;}
.y17a{bottom:217.386667pt;}
.y1f{bottom:218.986667pt;}
.yc9{bottom:219.946667pt;}
.y43{bottom:221.866667pt;}
.y6c{bottom:222.186667pt;}
.y1c1{bottom:223.786667pt;}
.y112{bottom:228.906667pt;}
.y86{bottom:231.466667pt;}
.y15d{bottom:232.426667pt;}
.y145{bottom:233.333333pt;}
.ya3{bottom:234.666667pt;}
.y156{bottom:236.906667pt;}
.y1a2{bottom:238.186667pt;}
.yc8{bottom:238.506667pt;}
.y1e{bottom:240.426667pt;}
.y6b{bottom:240.746667pt;}
.y1db{bottom:241.706667pt;}
.y179{bottom:244.906667pt;}
.y42{bottom:249.706667pt;}
.y85{bottom:250.026667pt;}
.yc7{bottom:256.746667pt;}
.y6a{bottom:258.986667pt;}
.y1e4{bottom:259.306667pt;}
.y15c{bottom:259.946667pt;}
.y1d{bottom:261.866667pt;}
.ya2{bottom:263.466667pt;}
.y155{bottom:264.426667pt;}
.y1a1{bottom:265.706667pt;}
.yf6{bottom:266.666667pt;}
.y91{bottom:267.946667pt;}
.y84{bottom:268.266667pt;}
.y1da{bottom:269.226667pt;}
.yc6{bottom:275.306667pt;}
.y41{bottom:277.226667pt;}
.y69{bottom:277.546667pt;}
.y178{bottom:278.826667pt;}
.y1c{bottom:283.306667pt;}
.y111{bottom:285.546667pt;}
.y83{bottom:286.826667pt;}
.ya1{bottom:290.986667pt;}
.y154{bottom:292.266667pt;}
.y1a0{bottom:293.226667pt;}
.yc5{bottom:293.546667pt;}
.y90{bottom:295.466667pt;}
.y68{bottom:295.786667pt;}
.y1d9{bottom:296.746667pt;}
.y40{bottom:304.746667pt;}
.y1b{bottom:305.066667pt;}
.y177{bottom:306.346667pt;}
.y136{bottom:310.666667pt;}
.yc4{bottom:312.106667pt;}
.yf8{bottom:313.333333pt;}
.y110{bottom:314.026667pt;}
.y67{bottom:314.346667pt;}
.ya0{bottom:318.826667pt;}
.y153{bottom:319.786667pt;}
.y19f{bottom:320.746667pt;}
.y8f{bottom:323.306667pt;}
.y82{bottom:323.626667pt;}
.y1d8{bottom:324.586667pt;}
.y1a{bottom:329.706667pt;}
.yc3{bottom:330.346667pt;}
.y3f{bottom:332.266667pt;}
.y66{bottom:332.586667pt;}
.y176{bottom:334.186667pt;}
.y81{bottom:341.866667pt;}
.y10f{bottom:342.826667pt;}
.yf2{bottom:344.000000pt;}
.y9f{bottom:347.306667pt;}
.y19e{bottom:348.586667pt;}
.yc2{bottom:348.906667pt;}
.y8e{bottom:350.826667pt;}
.y65{bottom:351.146667pt;}
.y1d7{bottom:352.106667pt;}
.y19{bottom:354.346667pt;}
.y3e{bottom:360.106667pt;}
.y80{bottom:360.426667pt;}
.yc1{bottom:367.146667pt;}
.y175{bottom:368.106667pt;}
.y64{bottom:369.386667pt;}
.y10e{bottom:371.626667pt;}
.y183{bottom:373.333333pt;}
.y9e{bottom:374.826667pt;}
.yee{bottom:376.000000pt;}
.y19d{bottom:376.106667pt;}
.y1b4{bottom:377.066667pt;}
.y7c{bottom:378.346667pt;}
.y18{bottom:378.666667pt;}
.yc0{bottom:385.706667pt;}
.y3d{bottom:387.626667pt;}
.y63{bottom:387.946667pt;}
.y138{bottom:388.000000pt;}
.y174{bottom:395.626667pt;}
.y7f{bottom:396.906667pt;}
.y10d{bottom:400.426667pt;}
.y1d6{bottom:401.386667pt;}
.y9d{bottom:402.666667pt;}
.y17{bottom:403.306667pt;}
.y19c{bottom:403.626667pt;}
.ybf{bottom:403.946667pt;}
.y1b3{bottom:404.906667pt;}
.y7b{bottom:405.866667pt;}
.y62{bottom:406.186667pt;}
.yec{bottom:406.666667pt;}
.y17f{bottom:411.306667pt;}
.y1e3{bottom:413.226667pt;}
.y3c{bottom:415.146667pt;}
.y7e{bottom:415.466667pt;}
.ybe{bottom:422.506667pt;}
.y173{bottom:423.146667pt;}
.y61{bottom:424.746667pt;}
.y16{bottom:427.946667pt;}
.y10c{bottom:429.226667pt;}
.y9c{bottom:431.146667pt;}
.y152{bottom:431.466667pt;}
.y1b2{bottom:432.426667pt;}
.y7a{bottom:433.386667pt;}
.y7d{bottom:433.706667pt;}
.ybd{bottom:440.746667pt;}
.y3b{bottom:442.666667pt;}
.y60{bottom:442.986667pt;}
.yeb{bottom:448.426667pt;}
.y172{bottom:450.986667pt;}
.y1d5{bottom:456.746667pt;}
.y10b{bottom:458.026667pt;}
.y9b{bottom:458.986667pt;}
.ybc{bottom:459.306667pt;}
.y19b{bottom:459.946667pt;}
.y151{bottom:460.266667pt;}
.y79{bottom:461.226667pt;}
.y5f{bottom:461.546667pt;}
.y12b{bottom:465.333333pt;}
.y3a{bottom:470.186667pt;}
.yea{bottom:475.946667pt;}
.y15{bottom:477.226667pt;}
.ybb{bottom:477.546667pt;}
.y171{bottom:478.506667pt;}
.y5e{bottom:479.786667pt;}
.y1d4{bottom:484.266667pt;}
.y9a{bottom:486.506667pt;}
.y19a{bottom:487.466667pt;}
.y78{bottom:488.746667pt;}
.yba{bottom:496.106667pt;}
.y39{bottom:498.026667pt;}
.y5d{bottom:498.346667pt;}
.ye9{bottom:503.786667pt;}
.y170{bottom:506.026667pt;}
.y1d3{bottom:511.786667pt;}
.y99{bottom:515.306667pt;}
.y77{bottom:516.266667pt;}
.y5c{bottom:516.586667pt;}
.yb9{bottom:523.306667pt;}
.y38{bottom:525.546667pt;}
.y14{bottom:526.186667pt;}
.y12d{bottom:526.666667pt;}
.ye8{bottom:531.306667pt;}
.y16f{bottom:533.546667pt;}
.y5b{bottom:535.146667pt;}
.y1d2{bottom:539.626667pt;}
.y98{bottom:542.826667pt;}
.y76{bottom:543.786667pt;}
.y1ba{bottom:544.106667pt;}
.yb8{bottom:550.826667pt;}
.y37{bottom:553.066667pt;}
.y5a{bottom:553.386667pt;}
.y1e2{bottom:555.626667pt;}
.ye7{bottom:559.146667pt;}
.y16e{bottom:561.386667pt;}
.y1d1{bottom:567.146667pt;}
.y199{bottom:570.346667pt;}
.y97{bottom:570.666667pt;}
.y75{bottom:571.626667pt;}
.y59{bottom:571.946667pt;}
.y13{bottom:575.146667pt;}
.yb7{bottom:578.346667pt;}
.y36{bottom:580.586667pt;}
.y1e1{bottom:583.146667pt;}
.ye6{bottom:587.946667pt;}
.y16d{bottom:588.906667pt;}
.y58{bottom:590.186667pt;}
.y1d0{bottom:594.666667pt;}
.y198{bottom:597.866667pt;}
.y74{bottom:599.146667pt;}
.yd6{bottom:599.466667pt;}
.y125{bottom:604.000000pt;}
.yb6{bottom:606.186667pt;}
.y35{bottom:608.426667pt;}
.y57{bottom:608.746667pt;}
.ye5{bottom:616.426667pt;}
.y1cf{bottom:622.186667pt;}
.y16c{bottom:622.826667pt;}
.y12{bottom:624.426667pt;}
.y197{bottom:625.706667pt;}
.y73{bottom:626.666667pt;}
.y56{bottom:626.986667pt;}
.y15b{bottom:632.106667pt;}
.yb5{bottom:633.706667pt;}
.y34{bottom:635.946667pt;}
.ye4{bottom:645.226667pt;}
.y11{bottom:647.786667pt;}
.y1ce{bottom:650.026667pt;}
.y16b{bottom:650.346667pt;}
.y196{bottom:653.226667pt;}
.y55{bottom:654.186667pt;}
.y1b9{bottom:654.506667pt;}
.yb4{bottom:661.226667pt;}
.y33{bottom:663.466667pt;}
.y10{bottom:666.346667pt;}
.y11f{bottom:666.666667pt;}
.ye3{bottom:674.026667pt;}
.y1cd{bottom:677.546667pt;}
.y195{bottom:680.746667pt;}
.y54{bottom:682.026667pt;}
.yf{bottom:684.586667pt;}
.yb3{bottom:688.746667pt;}
.y32{bottom:690.986667pt;}
.ye2{bottom:702.506667pt;}
.ye{bottom:703.146667pt;}
.y1cc{bottom:705.066667pt;}
.y1b1{bottom:708.266667pt;}
.y194{bottom:708.586667pt;}
.y53{bottom:709.546667pt;}
.y16a{bottom:712.106667pt;}
.yb2{bottom:716.266667pt;}
.y31{bottom:718.826667pt;}
.yd{bottom:721.386667pt;}
.ye1{bottom:730.346667pt;}
.y1cb{bottom:732.586667pt;}
.y1b0{bottom:736.106667pt;}
.y52{bottom:737.066667pt;}
.y1e6{bottom:737.386667pt;}
.y169{bottom:739.626667pt;}
.yc{bottom:739.946667pt;}
.y1c0{bottom:742.506667pt;}
.y11e{bottom:744.000000pt;}
.yb1{bottom:744.106667pt;}
.y30{bottom:746.346667pt;}
.ye0{bottom:757.866667pt;}
.y1ca{bottom:760.426667pt;}
.y1af{bottom:763.626667pt;}
.y51{bottom:764.586667pt;}
.y1b8{bottom:764.906667pt;}
.yb{bottom:765.866667pt;}
.y168{bottom:767.146667pt;}
.ycf{bottom:770.026667pt;}
.yb0{bottom:771.626667pt;}
.y2f{bottom:773.866667pt;}
.y11d{bottom:785.386667pt;}
.ydf{bottom:785.706667pt;}
.y1c9{bottom:787.946667pt;}
.y1ae{bottom:791.146667pt;}
.y50{bottom:792.426667pt;}
.y167{bottom:794.986667pt;}
.y18a{bottom:797.866667pt;}
.yaf{bottom:799.146667pt;}
.y2e{bottom:801.386667pt;}
.ya{bottom:804.586667pt;}
.y11c{bottom:812.906667pt;}
.yde{bottom:814.506667pt;}
.y1ad{bottom:818.666667pt;}
.y4f{bottom:819.946667pt;}
.y166{bottom:822.506667pt;}
.y1c5{bottom:825.386667pt;}
.yae{bottom:826.666667pt;}
.y2d{bottom:829.226667pt;}
.y1c8{bottom:831.466667pt;}
.y9{bottom:835.946667pt;}
.y11b{bottom:840.746667pt;}
.ydd{bottom:842.986667pt;}
.y1ac{bottom:846.506667pt;}
.y4e{bottom:847.466667pt;}
.y8{bottom:854.186667pt;}
.yad{bottom:854.506667pt;}
.y165{bottom:856.426667pt;}
.y2c{bottom:856.746667pt;}
.y1c7{bottom:858.986667pt;}
.y11a{bottom:868.266667pt;}
.ydc{bottom:871.786667pt;}
.y7{bottom:872.746667pt;}
.y1ab{bottom:874.026667pt;}
.y4d{bottom:874.986667pt;}
.y1b7{bottom:875.306667pt;}
.yac{bottom:882.026667pt;}
.y164{bottom:883.946667pt;}
.y2b{bottom:884.266667pt;}
.y1c6{bottom:886.826667pt;}
.y6{bottom:890.986667pt;}
.y119{bottom:897.066667pt;}
.ydb{bottom:899.306667pt;}
.y1aa{bottom:901.866667pt;}
.y4c{bottom:902.826667pt;}
.y190{bottom:903.146667pt;}
.y5{bottom:909.546667pt;}
.y2a{bottom:911.786667pt;}
.y4{bottom:924.266667pt;}
.y118{bottom:925.866667pt;}
.yda{bottom:928.106667pt;}
.y4b{bottom:930.346667pt;}
.yab{bottom:937.066667pt;}
.y163{bottom:939.306667pt;}
.y29{bottom:939.626667pt;}
.y117{bottom:954.666667pt;}
.yd9{bottom:956.906667pt;}
.y4a{bottom:957.866667pt;}
.y28{bottom:958.186667pt;}
.yaa{bottom:964.906667pt;}
.y27{bottom:976.746667pt;}
.y116{bottom:983.466667pt;}
.yd8{bottom:984.426667pt;}
.ya9{bottom:984.746667pt;}
.y49{bottom:985.386667pt;}
.y1b6{bottom:985.706667pt;}
.y26{bottom:994.986667pt;}
.ya8{bottom:1012.266667pt;}
.y48{bottom:1013.226667pt;}
.y25{bottom:1013.546667pt;}
.y191{bottom:1018.666667pt;}
.h1a{height:18.666667pt;}
.h2{height:20.000000pt;}
.hc{height:23.355000pt;}
.ha{height:28.545000pt;}
.hf{height:29.333333pt;}
.h10{height:32.000000pt;}
.h1c{height:34.125000pt;}
.he{height:37.327500pt;}
.hd{height:37.353750pt;}
.h1b{height:42.656250pt;}
.h1{height:43.250000pt;}
.hb{height:44.437500pt;}
.h19{height:46.250000pt;}
.h12{height:46.666667pt;}
.h13{height:48.000000pt;}
.h7{height:51.583750pt;}
.h8{height:56.156250pt;}
.h3{height:56.843750pt;}
.h6{height:59.546250pt;}
.h15{height:62.666667pt;}
.h5{height:76.170625pt;}
.h14{height:77.333333pt;}
.h11{height:78.666667pt;}
.h4{height:80.615000pt;}
.h18{height:124.000000pt;}
.h16{height:140.000000pt;}
.h17{height:154.666667pt;}
.h9{height:1098.666667pt;}
.h0{height:1122.666667pt;}
.w1{width:9.333333pt;}
.w2{width:17.333333pt;}
.w6{width:34.666667pt;}
.w4{width:48.000000pt;}
.w8{width:416.000000pt;}
.w7{width:504.000000pt;}
.w5{width:520.000000pt;}
.w3{width:769.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x19{left:8.000000pt;}
.x25{left:10.026699pt;}
.x18{left:14.557291pt;}
.x1b{left:17.906571pt;}
.x10{left:24.000000pt;}
.x14{left:89.280000pt;}
.x1{left:113.279936pt;}
.x4{left:116.482752pt;}
.x15{left:117.760096pt;}
.x21{left:127.040000pt;}
.x2a{left:132.213536pt;}
.x1c{left:134.568992pt;}
.xb{left:137.279936pt;}
.x1a{left:141.680032pt;}
.x1e{left:151.080064pt;}
.x17{left:153.157216pt;}
.x28{left:156.879872pt;}
.x16{left:160.000000pt;}
.xc{left:161.279936pt;}
.x1d{left:170.013344pt;}
.x24{left:173.333333pt;}
.x7{left:175.189120pt;}
.xd{left:185.279936pt;}
.x8{left:189.111008pt;}
.x29{left:207.680032pt;}
.x9{left:242.126656pt;}
.x6{left:258.954752pt;}
.x22{left:277.440000pt;}
.x13{left:305.279936pt;}
.x23{left:306.959968pt;}
.x5{left:342.555680pt;}
.x26{left:381.120000pt;}
.xa{left:396.746560pt;}
.x2b{left:401.846400pt;}
.x27{left:410.632960pt;}
.xe{left:420.346240pt;}
.x2c{left:500.800000pt;}
.x11{left:528.320000pt;}
.x2d{left:530.157760pt;}
.x2e{left:555.840000pt;}
.x12{left:557.735680pt;}
.x1f{left:566.080000pt;}
.x2f{left:585.223040pt;}
.x20{left:595.485760pt;}
.x3{left:653.760000pt;}
.xf{left:664.000000pt;}
.x2{left:672.000000pt;}
}




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