
    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_8487973d3b2ab88a041ce3c7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093750;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_a3ebe49b7b2d3d9e6cb8ac3b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.966309;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_acd19d7d4c0fe3b6434e1c59.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_88d8549d4c1b40d326f8d712.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967773;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_72f586f3baf056dea9e88a5c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b3c78ff2cdc03db6829d74c6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926000;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_43a715e33a5ae36540e94492.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0cbd7c24ab96dfeb11bc8105.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722000;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_b80557da0ec9c7c89974c3b1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_96ae5e101fa74b6fd6925381.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.698000;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_5fa141529e03338c26bfe57f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.936523;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_3a25ab82995fde4530c231db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.766602;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_8317c922c06fae6548ce6db7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.102051;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_49646034dd5fa10d292917b2.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_89c12966e2e340450c6c134d.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_3251835d11cb1173f6d38a45.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976111;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_9a70d0024379a68be086e60e.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.963379;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_0f3d55c84e8505e370a6cac4.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-14.118000px;}
.v2{vertical-align:-7.146000px;}
.v6{vertical-align:-5.952000px;}
.v3{vertical-align:-3.912000px;}
.v4{vertical-align:-1.086000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.814000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.015516px;}
.ls8{letter-spacing:23.702226px;}
.lsa{letter-spacing:34.662000px;}
.ls4{letter-spacing:36.042900px;}
.ls2{letter-spacing:36.048900px;}
.ls3{letter-spacing:47.389704px;}
.ls5{letter-spacing:47.395704px;}
.ls7{letter-spacing:56.169780px;}
.ls1{letter-spacing:63.037500px;}
.ls6{letter-spacing:165.960000px;}
.ls9{letter-spacing:1642.977516px;}
.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;}
}
.ws11{word-spacing:-59.275554px;}
.ws1{word-spacing:-53.124822px;}
.wsf{word-spacing:-47.428446px;}
.ws7{word-spacing:-45.366588px;}
.ws8{word-spacing:-41.967990px;}
.wsc{word-spacing:-41.174784px;}
.wsb{word-spacing:-37.380582px;}
.ws12{word-spacing:-32.599554px;}
.ws13{word-spacing:-32.335590px;}
.ws14{word-spacing:-26.676000px;}
.wsd{word-spacing:-25.020000px;}
.ws2{word-spacing:-23.958018px;}
.ws9{word-spacing:-22.806882px;}
.wsa{word-spacing:-19.991988px;}
.ws15{word-spacing:-17.770662px;}
.ws0{word-spacing:-13.989996px;}
.ws6{word-spacing:-0.263964px;}
.ws10{word-spacing:-0.239982px;}
.ws16{word-spacing:-0.131982px;}
.wse{word-spacing:-0.090000px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:525.659952px;}
.ws4{word-spacing:701.114064px;}
._13{margin-left:-5174.067186px;}
._15{margin-left:-5120.649804px;}
._1a{margin-left:-4997.705046px;}
._12{margin-left:-4907.157306px;}
._2e{margin-left:-4420.576140px;}
._77{margin-left:-4418.445726px;}
._16{margin-left:-4403.541768px;}
._10{margin-left:-4333.876110px;}
._7b{margin-left:-4305.340926px;}
._2c{margin-left:-4036.939896px;}
._5f{margin-left:-4031.811114px;}
._1b{margin-left:-4024.431888px;}
._2b{margin-left:-3996.221004px;}
._7c{margin-left:-3958.557498px;}
._6d{margin-left:-3856.297872px;}
._7d{margin-left:-3734.378844px;}
._17{margin-left:-3709.475268px;}
._79{margin-left:-3627.563058px;}
._78{margin-left:-3616.460784px;}
._1c{margin-left:-3556.100418px;}
._68{margin-left:-3548.325246px;}
._7a{margin-left:-3540.979812px;}
._7e{margin-left:-3515.052972px;}
._f{margin-left:-3481.638558px;}
._33{margin-left:-3457.544448px;}
._5c{margin-left:-3364.613106px;}
._70{margin-left:-3302.636340px;}
._72{margin-left:-3277.755792px;}
._11{margin-left:-3264.826770px;}
._61{margin-left:-3252.378240px;}
._63{margin-left:-3225.929022px;}
._32{margin-left:-3219.591114px;}
._25{margin-left:-3091.092414px;}
._5e{margin-left:-3065.044008px;}
._6a{margin-left:-2944.279434px;}
._6e{margin-left:-2845.918086px;}
._28{margin-left:-2764.988544px;}
._6c{margin-left:-2689.358610px;}
._65{margin-left:-2573.113128px;}
._41{margin-left:-2551.855146px;}
._6f{margin-left:-2493.826956px;}
._5b{margin-left:-2461.005006px;}
._67{margin-left:-2435.957244px;}
._58{margin-left:-2430.957702px;}
._59{margin-left:-2417.717640px;}
._49{margin-left:-2403.640404px;}
._57{margin-left:-2362.021896px;}
._5a{margin-left:-2343.389616px;}
._42{margin-left:-2341.333134px;}
._46{margin-left:-2325.219648px;}
._43{margin-left:-2322.527796px;}
._5d{margin-left:-2311.174590px;}
._51{margin-left:-2309.016288px;}
._14{margin-left:-2304.126918px;}
._27{margin-left:-2302.859724px;}
._50{margin-left:-2293.059276px;}
._20{margin-left:-2282.853498px;}
._56{margin-left:-2258.759970px;}
._4d{margin-left:-2246.205666px;}
._4f{margin-left:-2225.193834px;}
._4e{margin-left:-2212.699296px;}
._40{margin-left:-2195.672574px;}
._39{margin-left:-2183.776200px;}
._38{margin-left:-2119.805136px;}
._2a{margin-left:-2113.705986px;}
._73{margin-left:-2018.871306px;}
._36{margin-left:-2000.969712px;}
._60{margin-left:-1964.465898px;}
._48{margin-left:-1951.141482px;}
._37{margin-left:-1908.245748px;}
._55{margin-left:-1891.754874px;}
._76{margin-left:-1858.416996px;}
._3b{margin-left:-1779.874518px;}
._69{margin-left:-1775.760462px;}
._4a{margin-left:-1772.477904px;}
._1e{margin-left:-1768.074954px;}
._1d{margin-left:-1755.374856px;}
._31{margin-left:-1707.873102px;}
._75{margin-left:-1666.857474px;}
._3f{margin-left:-1653.606486px;}
._2d{margin-left:-1621.093404px;}
._29{margin-left:-1606.331376px;}
._64{margin-left:-1544.000070px;}
._47{margin-left:-1521.904464px;}
._30{margin-left:-1489.492320px;}
._23{margin-left:-1485.513546px;}
._3d{margin-left:-1461.752370px;}
._2f{margin-left:-1433.926734px;}
._74{margin-left:-1400.479794px;}
._4b{margin-left:-1338.173754px;}
._44{margin-left:-1280.857764px;}
._52{margin-left:-1247.994246px;}
._45{margin-left:-1150.724556px;}
._3a{margin-left:-1110.017748px;}
._66{margin-left:-1087.822710px;}
._1f{margin-left:-1074.483120px;}
._6b{margin-left:-1044.964362px;}
._4c{margin-left:-995.513724px;}
._54{margin-left:-922.694418px;}
._62{margin-left:-915.802596px;}
._3e{margin-left:-828.409554px;}
._53{margin-left:-796.748832px;}
._35{margin-left:-690.300000px;}
._26{margin-left:-657.403062px;}
._22{margin-left:-624.912978px;}
._24{margin-left:-579.632952px;}
._3c{margin-left:-144.672150px;}
._18{margin-left:-15.525264px;}
._c{margin-left:-14.130000px;}
._d{margin-left:-11.900892px;}
._b{margin-left:-10.210176px;}
._19{margin-left:-9.025116px;}
._a{margin-left:-7.914060px;}
._9{margin-left:-6.173970px;}
._7{margin-left:-4.285020px;}
._6{margin-left:-2.688252px;}
._0{margin-left:-1.008288px;}
._5{width:1.007244px;}
._1{width:2.226636px;}
._2{width:3.264306px;}
._8{width:4.558848px;}
._4{width:6.768828px;}
._3{width:11.713098px;}
._34{width:92.592288px;}
._e{width:113.025204px;}
._21{width:114.082104px;}
._71{width:315.382446px;}
.fc9{color:rgb(113,125,130);}
.fc8{color:rgb(202,13,39);}
.fc7{color:rgb(129,138,143);}
.fc6{color:rgb(246,168,0);}
.fc5{color:rgb(176,7,58);}
.fc4{color:rgb(23,22,28);}
.fc3{color:rgb(220,100,13);}
.fc2{color:rgb(90,96,101);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:42.012000px;}
.fs8{font-size:60.036000px;}
.fs9{font-size:64.122000px;}
.fs4{font-size:65.988000px;}
.fs3{font-size:71.946000px;}
.fsd{font-size:72.000000px;}
.fsc{font-size:90.000000px;}
.fse{font-size:108.000000px;}
.fsa{font-size:112.254000px;}
.fsb{font-size:123.648000px;}
.fs7{font-size:126.030000px;}
.fsf{font-size:131.982000px;}
.fs6{font-size:136.236000px;}
.fs1{font-size:159.534000px;}
.fs2{font-size:192.018000px;}
.fs10{font-size:239.982000px;}
.fs5{font-size:263.964000px;}
.y25{bottom:-9.439500px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y5c{bottom:0.681000px;}
.ycd{bottom:9.439500px;}
.y8e{bottom:9.525000px;}
.y6f{bottom:9.580410px;}
.y24{bottom:16.753500px;}
.y5b{bottom:21.685500px;}
.yb{bottom:22.026000px;}
.y4b{bottom:25.129500px;}
.y5d{bottom:30.232500px;}
.y23{bottom:41.967000px;}
.ya{bottom:43.839000px;}
.y4a{bottom:50.344500px;}
.y6e{bottom:58.033065px;}
.yb4{bottom:58.549500px;}
.y22{bottom:66.204000px;}
.y9{bottom:69.052500px;}
.y49{bottom:74.580000px;}
.yeb{bottom:81.468000px;}
.ycc{bottom:82.744500px;}
.y70{bottom:84.873990px;}
.y65{bottom:85.039380px;}
.y11e{bottom:90.993000px;}
.y3a{bottom:92.395500px;}
.y8{bottom:94.266000px;}
.yb3{bottom:98.136000px;}
.y48{bottom:100.771500px;}
.y4d{bottom:109.276500px;}
.yfe{bottom:111.699000px;}
.y21{bottom:116.632500px;}
.y7{bottom:119.481000px;}
.yea{bottom:122.925000px;}
.y4c{bottom:130.281000px;}
.y11b{bottom:130.578000px;}
.yf6{bottom:133.428000px;}
.yb2{bottom:137.722500px;}
.ybf{bottom:140.103000px;}
.ycb{bottom:140.188500px;}
.ydd{bottom:142.483500px;}
.y20{bottom:142.824000px;}
.y6{bottom:144.694500px;}
.y9d{bottom:145.800000px;}
.ya6{bottom:146.736000px;}
.y12a{bottom:148.054500px;}
.yfd{bottom:151.285500px;}
.yf{bottom:157.450500px;}
.y1f{bottom:167.061000px;}
.y39{bottom:168.039000px;}
.y11a{bottom:170.164500px;}
.yf5{bottom:173.013000px;}
.ydc{bottom:174.883500px;}
.ye9{bottom:178.498500px;}
.yb1{bottom:179.178000px;}
.ybe{bottom:179.688000px;}
.y47{bottom:181.474500px;}
.y9c{bottom:185.386500px;}
.y129{bottom:187.639500px;}
.yfc{bottom:190.872000px;}
.y81{bottom:191.422410px;}
.y38{bottom:192.274500px;}
.y1e{bottom:193.252500px;}
.yca{bottom:197.632500px;}
.ya5{bottom:202.309500px;}
.ydb{bottom:207.283500px;}
.y119{bottom:209.749500px;}
.yf4{bottom:212.599500px;}
.y1d{bottom:217.488000px;}
.ye8{bottom:218.083500px;}
.ybd{bottom:219.274500px;}
.y9b{bottom:226.843500px;}
.y93{bottom:228.883500px;}
.y128{bottom:229.096500px;}
.yfb{bottom:230.457000px;}
.yb0{bottom:234.751500px;}
.yda{bottom:239.683500px;}
.y80{bottom:242.422410px;}
.y37{bottom:242.703000px;}
.ya4{bottom:243.766500px;}
.y11d{bottom:249.336000px;}
.y118{bottom:251.206500px;}
.yf3{bottom:252.184500px;}
.yc9{bottom:255.076500px;}
.ye7{bottom:257.670000px;}
.ybc{bottom:260.731500px;}
.y63{bottom:263.325000px;}
.y1c{bottom:267.916500px;}
.y36{bottom:268.894500px;}
.y113{bottom:271.063500px;}
.yfa{bottom:271.914000px;}
.yd9{bottom:273.571500px;}
.yaf{bottom:274.338000px;}
.y9a{bottom:282.417000px;}
.y127{bottom:284.670000px;}
.y62{bottom:288.538500px;}
.y6d{bottom:290.257020px;}
.y11c{bottom:290.793000px;}
.yf2{bottom:291.771000px;}
.y35{bottom:293.131500px;}
.y7f{bottom:293.422410px;}
.y1b{bottom:294.109500px;}
.y15{bottom:296.745000px;}
.ye6{bottom:297.255000px;}
.ya3{bottom:299.338500px;}
.y10e{bottom:305.760000px;}
.y117{bottom:306.780000px;}
.y92{bottom:307.461000px;}
.y10{bottom:309.628500px;}
.y112{bottom:310.650000px;}
.y44{bottom:311.457000px;}
.yc8{bottom:312.520500px;}
.y61{bottom:313.753500px;}
.yae{bottom:313.923000px;}
.ybb{bottom:316.305000px;}
.y1a{bottom:318.345000px;}
.y99{bottom:323.872500px;}
.y126{bottom:324.255000px;}
.yf9{bottom:327.487500px;}
.y105{bottom:331.356000px;}
.yf1{bottom:333.228000px;}
.ye5{bottom:336.841500px;}
.y43{bottom:337.650000px;}
.ya2{bottom:338.925000px;}
.y60{bottom:338.967000px;}
.y14{bottom:342.624000px;}
.y34{bottom:343.560000px;}
.y4{bottom:345.090000px;}
.y10d{bottom:345.345000px;}
.y116{bottom:346.366500px;}
.y16{bottom:349.725000px;}
.y111{bottom:350.235000px;}
.y7b{bottom:350.535060px;}
.yad{bottom:353.509500px;}
.yba{bottom:355.890000px;}
.y12b{bottom:360.567000px;}
.y42{bottom:362.863500px;}
.y125{bottom:363.841500px;}
.y5f{bottom:364.182000px;}
.y46{bottom:365.755500px;}
.y6c{bottom:366.757020px;}
.yf8{bottom:367.072500px;}
.y89{bottom:368.693910px;}
.y19{bottom:368.773500px;}
.y33{bottom:369.751500px;}
.y7e{bottom:369.922410px;}
.yc7{bottom:369.964500px;}
.y104{bottom:370.942500px;}
.yd8{bottom:372.600000px;}
.ye4{bottom:376.428000px;}
.y98{bottom:379.446000px;}
.y10c{bottom:384.931500px;}
.y115{bottom:385.951500px;}
.y91{bottom:386.037000px;}
.y45{bottom:386.760000px;}
.ya1{bottom:386.971500px;}
.y5e{bottom:388.417500px;}
.y11{bottom:390.628500px;}
.y110{bottom:391.692000px;}
.y3{bottom:393.094500px;}
.y88{bottom:394.193910px;}
.y18{bottom:394.966500px;}
.yb9{bottom:397.347000px;}
.y124{bottom:403.428000px;}
.yd7{bottom:405.000000px;}
.yf7{bottom:406.659000px;}
.y103{bottom:412.399500px;}
.y6b{bottom:417.757020px;}
.ye3{bottom:417.883500px;}
.y17{bottom:419.202000px;}
.y87{bottom:419.422410px;}
.y97{bottom:420.903000px;}
.y77{bottom:420.922410px;}
.y10b{bottom:424.516500px;}
.y41{bottom:424.729500px;}
.yc6{bottom:425.538000px;}
.y5a{bottom:427.111500px;}
.y13{bottom:429.024000px;}
.ya0{bottom:431.277000px;}
.yd6{bottom:438.888000px;}
.y123{bottom:443.013000px;}
.yf0{bottom:446.244000px;}
.y76{bottom:446.422410px;}
.yd1{bottom:447.265500px;}
.y114{bottom:449.136000px;}
.y59{bottom:451.347000px;}
.yac{bottom:452.410500px;}
.ye{bottom:455.811000px;}
.y40{bottom:458.916000px;}
.y10a{bottom:464.103000px;}
.y90{bottom:464.613000px;}
.yc5{bottom:465.123000px;}
.y102{bottom:467.971500px;}
.y6a{bottom:468.757020px;}
.y9f{bottom:470.863500px;}
.y75{bottom:471.922410px;}
.ye2{bottom:473.457000px;}
.y12{bottom:474.903000px;}
.y96{bottom:476.476500px;}
.y122{bottom:484.470000px;}
.yef{bottom:485.830500px;}
.yd0{bottom:486.850500px;}
.y86{bottom:495.922410px;}
.y74{bottom:497.422410px;}
.y26{bottom:498.714000px;}
.y32{bottom:501.733500px;}
.y8d{bottom:502.116000px;}
.y58{bottom:502.753500px;}
.y109{bottom:503.688000px;}
.yc4{bottom:504.709500px;}
.y101{bottom:507.558000px;}
.yab{bottom:507.982500px;}
.yb8{bottom:510.364500px;}
.ye1{bottom:513.043500px;}
.y64{bottom:516.615000px;}
.y2{bottom:517.890000px;}
.y95{bottom:517.933500px;}
.y4e{bottom:518.826000px;}
.y9e{bottom:518.911500px;}
.y27{bottom:519.505500px;}
.y69{bottom:519.757020px;}
.y85{bottom:521.422410px;}
.y7d{bottom:522.922410px;}
.yee{bottom:525.417000px;}
.ycf{bottom:526.437000px;}
.y31{bottom:527.925000px;}
.y57{bottom:527.967000px;}
.yd5{bottom:537.916500px;}
.y121{bottom:540.043500px;}
.y8c{bottom:541.701000px;}
.y108{bottom:543.274500px;}
.yc3{bottom:544.294500px;}
.yaa{bottom:547.569000px;}
.yb7{bottom:549.949500px;}
.ye0{bottom:552.628500px;}
.y30{bottom:553.138500px;}
.y56{bottom:553.182000px;}
.y94{bottom:564.109500px;}
.yed{bottom:565.002000px;}
.y10f{bottom:566.022000px;}
.yd4{bottom:570.316500px;}
.y68{bottom:570.757020px;}
.y73{bottom:573.922410px;}
.y2f{bottom:578.353500px;}
.y55{bottom:578.395500px;}
.y120{bottom:579.628500px;}
.y8b{bottom:581.287500px;}
.y107{bottom:582.861000px;}
.yc2{bottom:583.881000px;}
.ya9{bottom:587.155500px;}
.yb6{bottom:589.536000px;}
.ydf{bottom:592.215000px;}
.y82{bottom:593.535060px;}
.y67{bottom:596.257020px;}
.y84{bottom:597.922410px;}
.y7c{bottom:599.422410px;}
.y2e{bottom:602.589000px;}
.y54{bottom:602.632500px;}
.yd3{bottom:602.716500px;}
.y100{bottom:604.588500px;}
.yec{bottom:606.459000px;}
.y3d{bottom:619.512000px;}
.y7a{bottom:620.535060px;}
.y11f{bottom:621.085500px;}
.y3f{bottom:621.978000px;}
.y106{bottom:622.446000px;}
.y83{bottom:623.422410px;}
.y72{bottom:624.922410px;}
.yc1{bottom:625.338000px;}
.ya8{bottom:628.611000px;}
.y2d{bottom:628.782000px;}
.yb5{bottom:630.993000px;}
.yde{bottom:633.672000px;}
.yd2{bottom:636.604500px;}
.y8a{bottom:638.731500px;}
.yd{bottom:640.516500px;}
.y3e{bottom:642.982500px;}
.y66{bottom:647.369670px;}
.y79{bottom:647.535060px;}
.y2c{bottom:653.995500px;}
.y53{bottom:654.039000px;}
.yff{bottom:663.903000px;}
.y78{bottom:674.535060px;}
.y2b{bottom:678.232500px;}
.y52{bottom:679.252500px;}
.yc0{bottom:680.911500px;}
.ya7{bottom:684.184500px;}
.y3c{bottom:689.499000px;}
.y71{bottom:701.535060px;}
.y2a{bottom:704.424000px;}
.y51{bottom:704.466000px;}
.yc{bottom:708.463500px;}
.y3b{bottom:720.666000px;}
.y5{bottom:723.430500px;}
.y29{bottom:729.639000px;}
.y50{bottom:729.681000px;}
.yce{bottom:733.549500px;}
.y8f{bottom:734.571000px;}
.y4f{bottom:753.916500px;}
.y28{bottom:754.852500px;}
.h1b{height:31.484940px;}
.h2{height:37.109232px;}
.h14{height:48.717691px;}
.h6{height:50.135414px;}
.h13{height:50.750098px;}
.hf{height:52.378655px;}
.h1c{height:52.632000px;}
.h11{height:53.029846px;}
.h21{height:53.959500px;}
.h10{height:54.662098px;}
.h12{height:59.637958px;}
.h29{height:62.777101px;}
.h1e{height:62.820000px;}
.h5{height:63.549958px;}
.h1a{height:65.790000px;}
.h1f{height:78.948000px;}
.h2a{height:88.284328px;}
.h2b{height:94.236328px;}
.h2c{height:95.377617px;}
.h20{height:95.635395px;}
.h15{height:99.154046px;}
.h28{height:100.471377px;}
.hc{height:104.176397px;}
.he{height:104.182397px;}
.h26{height:107.674028px;}
.h25{height:107.680028px;}
.h16{height:109.218375px;}
.hd{height:111.322397px;}
.h27{height:115.162028px;}
.hb{height:120.337365px;}
.h3{height:140.916507px;}
.h7{height:145.888676px;}
.h22{height:167.546956px;}
.h4{height:169.609649px;}
.ha{height:192.173010px;}
.h23{height:195.280356px;}
.h24{height:195.286356px;}
.h2d{height:209.398356px;}
.h8{height:215.987010px;}
.h9{height:216.155010px;}
.h19{height:729.539550px;}
.h1d{height:729.705000px;}
.h1{height:809.956500px;}
.h0{height:810.000000px;}
.h17{height:892.913400px;}
.h18{height:893.250000px;}
.w6{width:26.234940px;}
.w5{width:1106.165850px;}
.w3{width:1262.834700px;}
.w4{width:1263.000000px;}
.w2{width:1439.971500px;}
.w1{width:1440.000000px;}
.w0{width:1440.014190px;}
.x0{left:0.000000px;}
.x30{left:6.705015px;}
.xd{left:10.587000px;}
.x2{left:24.492000px;}
.xa{left:26.362500px;}
.x28{left:38.863500px;}
.x3b{left:41.754000px;}
.x37{left:43.881000px;}
.x26{left:48.940500px;}
.x3a{left:62.758500px;}
.x38{left:64.885500px;}
.x1{left:77.769000px;}
.x2f{left:86.569500px;}
.x3e{left:88.101000px;}
.x3c{left:91.162500px;}
.x39{left:93.288000px;}
.xe{left:114.250500px;}
.x13{left:129.727500px;}
.x44{left:149.754000px;}
.x43{left:151.881000px;}
.x27{left:169.696500px;}
.x12{left:173.481000px;}
.x33{left:185.896500px;}
.x34{left:235.899000px;}
.x45{left:248.314500px;}
.x3{left:307.758000px;}
.x29{left:323.872500px;}
.x23{left:327.147000px;}
.x1c{left:332.164500px;}
.xb{left:334.162500px;}
.x1f{left:336.969000px;}
.x1b{left:339.009000px;}
.x20{left:349.980000px;}
.xc{left:360.949500px;}
.x6{left:367.881000px;}
.x1a{left:377.617500px;}
.x24{left:486.382500px;}
.x8{left:538.086000px;}
.x7{left:552.288000px;}
.x1d{left:587.877000px;}
.x25{left:590.896500px;}
.x21{left:611.901000px;}
.x31{left:620.420850px;}
.x1e{left:645.534000px;}
.x2c{left:650.635500px;}
.x3f{left:735.591000px;}
.x22{left:753.789000px;}
.x42{left:756.595500px;}
.x32{left:778.195500px;}
.x40{left:784.998000px;}
.x35{left:841.635000px;}
.x41{left:843.591000px;}
.x9{left:848.820000px;}
.xf{left:919.318500px;}
.x14{left:924.547500px;}
.x10{left:934.624500px;}
.x16{left:939.855000px;}
.x2d{left:948.657000px;}
.x11{left:949.932000px;}
.x2e{left:963.964500px;}
.x15{left:970.426500px;}
.x4{left:1109.296500px;}
.x17{left:1133.532000px;}
.x18{left:1148.839500px;}
.x19{left:1164.147000px;}
.x2b{left:1266.831000px;}
.x2a{left:1288.984500px;}
.x3d{left:1377.510000px;}
.x36{left:1387.332000px;}
.x5{left:1409.017500px;}
@media print{
.v5{vertical-align:-12.549333pt;}
.v2{vertical-align:-6.352000pt;}
.v6{vertical-align:-5.290667pt;}
.v3{vertical-align:-3.477333pt;}
.v4{vertical-align:-0.965333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.168000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.013792pt;}
.ls8{letter-spacing:21.068645pt;}
.lsa{letter-spacing:30.810667pt;}
.ls4{letter-spacing:32.038133pt;}
.ls2{letter-spacing:32.043467pt;}
.ls3{letter-spacing:42.124181pt;}
.ls5{letter-spacing:42.129515pt;}
.ls7{letter-spacing:49.928693pt;}
.ls1{letter-spacing:56.033333pt;}
.ls6{letter-spacing:147.520000pt;}
.ls9{letter-spacing:1460.424459pt;}
.ws11{word-spacing:-52.689381pt;}
.ws1{word-spacing:-47.222064pt;}
.wsf{word-spacing:-42.158619pt;}
.ws7{word-spacing:-40.325856pt;}
.ws8{word-spacing:-37.304880pt;}
.wsc{word-spacing:-36.599808pt;}
.wsb{word-spacing:-33.227184pt;}
.ws12{word-spacing:-28.977381pt;}
.ws13{word-spacing:-28.742747pt;}
.ws14{word-spacing:-23.712000pt;}
.wsd{word-spacing:-22.240000pt;}
.ws2{word-spacing:-21.296016pt;}
.ws9{word-spacing:-20.272784pt;}
.wsa{word-spacing:-17.770656pt;}
.ws15{word-spacing:-15.796144pt;}
.ws0{word-spacing:-12.435552pt;}
.ws6{word-spacing:-0.234635pt;}
.ws10{word-spacing:-0.213317pt;}
.ws16{word-spacing:-0.117317pt;}
.wse{word-spacing:-0.080000pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:467.253291pt;}
.ws4{word-spacing:623.212501pt;}
._13{margin-left:-4599.170832pt;}
._15{margin-left:-4551.688715pt;}
._1a{margin-left:-4442.404485pt;}
._12{margin-left:-4361.917605pt;}
._2e{margin-left:-3929.401013pt;}
._77{margin-left:-3927.507312pt;}
._16{margin-left:-3914.259349pt;}
._10{margin-left:-3852.334320pt;}
._7b{margin-left:-3826.969712pt;}
._2c{margin-left:-3588.391019pt;}
._5f{margin-left:-3583.832101pt;}
._1b{margin-left:-3577.272789pt;}
._2b{margin-left:-3552.196448pt;}
._7c{margin-left:-3518.717776pt;}
._6d{margin-left:-3427.820331pt;}
._7d{margin-left:-3319.447861pt;}
._17{margin-left:-3297.311349pt;}
._79{margin-left:-3224.500496pt;}
._78{margin-left:-3214.631808pt;}
._1c{margin-left:-3160.978149pt;}
._68{margin-left:-3154.066885pt;}
._7a{margin-left:-3147.537611pt;}
._7e{margin-left:-3124.491531pt;}
._f{margin-left:-3094.789829pt;}
._33{margin-left:-3073.372843pt;}
._5c{margin-left:-2990.767205pt;}
._70{margin-left:-2935.676747pt;}
._72{margin-left:-2913.560704pt;}
._11{margin-left:-2902.068240pt;}
._61{margin-left:-2891.002880pt;}
._63{margin-left:-2867.492464pt;}
._32{margin-left:-2861.858768pt;}
._25{margin-left:-2747.637701pt;}
._5e{margin-left:-2724.483563pt;}
._6a{margin-left:-2617.137275pt;}
._6e{margin-left:-2529.704965pt;}
._28{margin-left:-2457.767595pt;}
._6c{margin-left:-2390.540987pt;}
._65{margin-left:-2287.211669pt;}
._41{margin-left:-2268.315685pt;}
._6f{margin-left:-2216.735072pt;}
._5b{margin-left:-2187.560005pt;}
._67{margin-left:-2165.295328pt;}
._58{margin-left:-2160.851291pt;}
._59{margin-left:-2149.082347pt;}
._49{margin-left:-2136.569248pt;}
._57{margin-left:-2099.575019pt;}
._5a{margin-left:-2083.012992pt;}
._42{margin-left:-2081.185008pt;}
._46{margin-left:-2066.861909pt;}
._43{margin-left:-2064.469152pt;}
._5d{margin-left:-2054.377413pt;}
._51{margin-left:-2052.458923pt;}
._14{margin-left:-2048.112816pt;}
._27{margin-left:-2046.986421pt;}
._50{margin-left:-2038.274912pt;}
._20{margin-left:-2029.203109pt;}
._56{margin-left:-2007.786640pt;}
._4d{margin-left:-1996.627259pt;}
._4f{margin-left:-1977.950075pt;}
._4e{margin-left:-1966.843819pt;}
._40{margin-left:-1951.708955pt;}
._39{margin-left:-1941.134400pt;}
._38{margin-left:-1884.271232pt;}
._2a{margin-left:-1878.849765pt;}
._73{margin-left:-1794.552272pt;}
._36{margin-left:-1778.639744pt;}
._60{margin-left:-1746.191909pt;}
._48{margin-left:-1734.347984pt;}
._37{margin-left:-1696.218443pt;}
._55{margin-left:-1681.559888pt;}
._76{margin-left:-1651.926219pt;}
._3b{margin-left:-1582.110683pt;}
._69{margin-left:-1578.453744pt;}
._4a{margin-left:-1575.535915pt;}
._1e{margin-left:-1571.622181pt;}
._1d{margin-left:-1560.333205pt;}
._31{margin-left:-1518.109424pt;}
._75{margin-left:-1481.651088pt;}
._3f{margin-left:-1469.872432pt;}
._2d{margin-left:-1440.971915pt;}
._29{margin-left:-1427.850112pt;}
._64{margin-left:-1372.444507pt;}
._47{margin-left:-1352.803968pt;}
._30{margin-left:-1323.993173pt;}
._23{margin-left:-1320.456485pt;}
._3d{margin-left:-1299.335440pt;}
._2f{margin-left:-1274.601541pt;}
._74{margin-left:-1244.870928pt;}
._4b{margin-left:-1189.487781pt;}
._44{margin-left:-1138.540235pt;}
._52{margin-left:-1109.328219pt;}
._45{margin-left:-1022.866272pt;}
._3a{margin-left:-986.682443pt;}
._66{margin-left:-966.953520pt;}
._1f{margin-left:-955.096107pt;}
._6b{margin-left:-928.857211pt;}
._4c{margin-left:-884.901088pt;}
._54{margin-left:-820.172816pt;}
._62{margin-left:-814.046752pt;}
._3e{margin-left:-736.364048pt;}
._53{margin-left:-708.221184pt;}
._35{margin-left:-613.600000pt;}
._26{margin-left:-584.358277pt;}
._22{margin-left:-555.478203pt;}
._24{margin-left:-515.229291pt;}
._3c{margin-left:-128.597467pt;}
._18{margin-left:-13.800235pt;}
._c{margin-left:-12.560000pt;}
._d{margin-left:-10.578571pt;}
._b{margin-left:-9.075712pt;}
._19{margin-left:-8.022325pt;}
._a{margin-left:-7.034720pt;}
._9{margin-left:-5.487973pt;}
._7{margin-left:-3.808907pt;}
._6{margin-left:-2.389557pt;}
._0{margin-left:-0.896256pt;}
._5{width:0.895328pt;}
._1{width:1.979232pt;}
._2{width:2.901605pt;}
._8{width:4.052309pt;}
._4{width:6.016736pt;}
._3{width:10.411643pt;}
._34{width:82.304256pt;}
._e{width:100.466848pt;}
._21{width:101.406315pt;}
._71{width:280.339952pt;}
.fs0{font-size:37.344000pt;}
.fs8{font-size:53.365333pt;}
.fs9{font-size:56.997333pt;}
.fs4{font-size:58.656000pt;}
.fs3{font-size:63.952000pt;}
.fsd{font-size:64.000000pt;}
.fsc{font-size:80.000000pt;}
.fse{font-size:96.000000pt;}
.fsa{font-size:99.781333pt;}
.fsb{font-size:109.909333pt;}
.fs7{font-size:112.026667pt;}
.fsf{font-size:117.317333pt;}
.fs6{font-size:121.098667pt;}
.fs1{font-size:141.808000pt;}
.fs2{font-size:170.682667pt;}
.fs10{font-size:213.317333pt;}
.fs5{font-size:234.634667pt;}
.y25{bottom:-8.390667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y5c{bottom:0.605333pt;}
.ycd{bottom:8.390667pt;}
.y8e{bottom:8.466667pt;}
.y6f{bottom:8.515920pt;}
.y24{bottom:14.892000pt;}
.y5b{bottom:19.276000pt;}
.yb{bottom:19.578667pt;}
.y4b{bottom:22.337333pt;}
.y5d{bottom:26.873333pt;}
.y23{bottom:37.304000pt;}
.ya{bottom:38.968000pt;}
.y4a{bottom:44.750667pt;}
.y6e{bottom:51.584947pt;}
.yb4{bottom:52.044000pt;}
.y22{bottom:58.848000pt;}
.y9{bottom:61.380000pt;}
.y49{bottom:66.293333pt;}
.yeb{bottom:72.416000pt;}
.ycc{bottom:73.550667pt;}
.y70{bottom:75.443547pt;}
.y65{bottom:75.590560pt;}
.y11e{bottom:80.882667pt;}
.y3a{bottom:82.129333pt;}
.y8{bottom:83.792000pt;}
.yb3{bottom:87.232000pt;}
.y48{bottom:89.574667pt;}
.y4d{bottom:97.134667pt;}
.yfe{bottom:99.288000pt;}
.y21{bottom:103.673333pt;}
.y7{bottom:106.205333pt;}
.yea{bottom:109.266667pt;}
.y4c{bottom:115.805333pt;}
.y11b{bottom:116.069333pt;}
.yf6{bottom:118.602667pt;}
.yb2{bottom:122.420000pt;}
.ybf{bottom:124.536000pt;}
.ycb{bottom:124.612000pt;}
.ydd{bottom:126.652000pt;}
.y20{bottom:126.954667pt;}
.y6{bottom:128.617333pt;}
.y9d{bottom:129.600000pt;}
.ya6{bottom:130.432000pt;}
.y12a{bottom:131.604000pt;}
.yfd{bottom:134.476000pt;}
.yf{bottom:139.956000pt;}
.y1f{bottom:148.498667pt;}
.y39{bottom:149.368000pt;}
.y11a{bottom:151.257333pt;}
.yf5{bottom:153.789333pt;}
.ydc{bottom:155.452000pt;}
.ye9{bottom:158.665333pt;}
.yb1{bottom:159.269333pt;}
.ybe{bottom:159.722667pt;}
.y47{bottom:161.310667pt;}
.y9c{bottom:164.788000pt;}
.y129{bottom:166.790667pt;}
.yfc{bottom:169.664000pt;}
.y81{bottom:170.153253pt;}
.y38{bottom:170.910667pt;}
.y1e{bottom:171.780000pt;}
.yca{bottom:175.673333pt;}
.ya5{bottom:179.830667pt;}
.ydb{bottom:184.252000pt;}
.y119{bottom:186.444000pt;}
.yf4{bottom:188.977333pt;}
.y1d{bottom:193.322667pt;}
.ye8{bottom:193.852000pt;}
.ybd{bottom:194.910667pt;}
.y9b{bottom:201.638667pt;}
.y93{bottom:203.452000pt;}
.y128{bottom:203.641333pt;}
.yfb{bottom:204.850667pt;}
.yb0{bottom:208.668000pt;}
.yda{bottom:213.052000pt;}
.y80{bottom:215.486587pt;}
.y37{bottom:215.736000pt;}
.ya4{bottom:216.681333pt;}
.y11d{bottom:221.632000pt;}
.y118{bottom:223.294667pt;}
.yf3{bottom:224.164000pt;}
.yc9{bottom:226.734667pt;}
.ye7{bottom:229.040000pt;}
.ybc{bottom:231.761333pt;}
.y63{bottom:234.066667pt;}
.y1c{bottom:238.148000pt;}
.y36{bottom:239.017333pt;}
.y113{bottom:240.945333pt;}
.yfa{bottom:241.701333pt;}
.yd9{bottom:243.174667pt;}
.yaf{bottom:243.856000pt;}
.y9a{bottom:251.037333pt;}
.y127{bottom:253.040000pt;}
.y62{bottom:256.478667pt;}
.y6d{bottom:258.006240pt;}
.y11c{bottom:258.482667pt;}
.yf2{bottom:259.352000pt;}
.y35{bottom:260.561333pt;}
.y7f{bottom:260.819920pt;}
.y1b{bottom:261.430667pt;}
.y15{bottom:263.773333pt;}
.ye6{bottom:264.226667pt;}
.ya3{bottom:266.078667pt;}
.y10e{bottom:271.786667pt;}
.y117{bottom:272.693333pt;}
.y92{bottom:273.298667pt;}
.y10{bottom:275.225333pt;}
.y112{bottom:276.133333pt;}
.y44{bottom:276.850667pt;}
.yc8{bottom:277.796000pt;}
.y61{bottom:278.892000pt;}
.yae{bottom:279.042667pt;}
.ybb{bottom:281.160000pt;}
.y1a{bottom:282.973333pt;}
.y99{bottom:287.886667pt;}
.y126{bottom:288.226667pt;}
.yf9{bottom:291.100000pt;}
.y105{bottom:294.538667pt;}
.yf1{bottom:296.202667pt;}
.ye5{bottom:299.414667pt;}
.y43{bottom:300.133333pt;}
.ya2{bottom:301.266667pt;}
.y60{bottom:301.304000pt;}
.y14{bottom:304.554667pt;}
.y34{bottom:305.386667pt;}
.y4{bottom:306.746667pt;}
.y10d{bottom:306.973333pt;}
.y116{bottom:307.881333pt;}
.y16{bottom:310.866667pt;}
.y111{bottom:311.320000pt;}
.y7b{bottom:311.586720pt;}
.yad{bottom:314.230667pt;}
.yba{bottom:316.346667pt;}
.y12b{bottom:320.504000pt;}
.y42{bottom:322.545333pt;}
.y125{bottom:323.414667pt;}
.y5f{bottom:323.717333pt;}
.y46{bottom:325.116000pt;}
.y6c{bottom:326.006240pt;}
.yf8{bottom:326.286667pt;}
.y89{bottom:327.727920pt;}
.y19{bottom:327.798667pt;}
.y33{bottom:328.668000pt;}
.y7e{bottom:328.819920pt;}
.yc7{bottom:328.857333pt;}
.y104{bottom:329.726667pt;}
.yd8{bottom:331.200000pt;}
.ye4{bottom:334.602667pt;}
.y98{bottom:337.285333pt;}
.y10c{bottom:342.161333pt;}
.y115{bottom:343.068000pt;}
.y91{bottom:343.144000pt;}
.y45{bottom:343.786667pt;}
.ya1{bottom:343.974667pt;}
.y5e{bottom:345.260000pt;}
.y11{bottom:347.225333pt;}
.y110{bottom:348.170667pt;}
.y3{bottom:349.417333pt;}
.y88{bottom:350.394587pt;}
.y18{bottom:351.081333pt;}
.yb9{bottom:353.197333pt;}
.y124{bottom:358.602667pt;}
.yd7{bottom:360.000000pt;}
.yf7{bottom:361.474667pt;}
.y103{bottom:366.577333pt;}
.y6b{bottom:371.339573pt;}
.ye3{bottom:371.452000pt;}
.y17{bottom:372.624000pt;}
.y87{bottom:372.819920pt;}
.y97{bottom:374.136000pt;}
.y77{bottom:374.153253pt;}
.y10b{bottom:377.348000pt;}
.y41{bottom:377.537333pt;}
.yc6{bottom:378.256000pt;}
.y5a{bottom:379.654667pt;}
.y13{bottom:381.354667pt;}
.ya0{bottom:383.357333pt;}
.yd6{bottom:390.122667pt;}
.y123{bottom:393.789333pt;}
.yf0{bottom:396.661333pt;}
.y76{bottom:396.819920pt;}
.yd1{bottom:397.569333pt;}
.y114{bottom:399.232000pt;}
.y59{bottom:401.197333pt;}
.yac{bottom:402.142667pt;}
.ye{bottom:405.165333pt;}
.y40{bottom:407.925333pt;}
.y10a{bottom:412.536000pt;}
.y90{bottom:412.989333pt;}
.yc5{bottom:413.442667pt;}
.y102{bottom:415.974667pt;}
.y6a{bottom:416.672907pt;}
.y9f{bottom:418.545333pt;}
.y75{bottom:419.486587pt;}
.ye2{bottom:420.850667pt;}
.y12{bottom:422.136000pt;}
.y96{bottom:423.534667pt;}
.y122{bottom:430.640000pt;}
.yef{bottom:431.849333pt;}
.yd0{bottom:432.756000pt;}
.y86{bottom:440.819920pt;}
.y74{bottom:442.153253pt;}
.y26{bottom:443.301333pt;}
.y32{bottom:445.985333pt;}
.y8d{bottom:446.325333pt;}
.y58{bottom:446.892000pt;}
.y109{bottom:447.722667pt;}
.yc4{bottom:448.630667pt;}
.y101{bottom:451.162667pt;}
.yab{bottom:451.540000pt;}
.yb8{bottom:453.657333pt;}
.ye1{bottom:456.038667pt;}
.y64{bottom:459.213333pt;}
.y2{bottom:460.346667pt;}
.y95{bottom:460.385333pt;}
.y4e{bottom:461.178667pt;}
.y9e{bottom:461.254667pt;}
.y27{bottom:461.782667pt;}
.y69{bottom:462.006240pt;}
.y85{bottom:463.486587pt;}
.y7d{bottom:464.819920pt;}
.yee{bottom:467.037333pt;}
.ycf{bottom:467.944000pt;}
.y31{bottom:469.266667pt;}
.y57{bottom:469.304000pt;}
.yd5{bottom:478.148000pt;}
.y121{bottom:480.038667pt;}
.y8c{bottom:481.512000pt;}
.y108{bottom:482.910667pt;}
.yc3{bottom:483.817333pt;}
.yaa{bottom:486.728000pt;}
.yb7{bottom:488.844000pt;}
.ye0{bottom:491.225333pt;}
.y30{bottom:491.678667pt;}
.y56{bottom:491.717333pt;}
.y94{bottom:501.430667pt;}
.yed{bottom:502.224000pt;}
.y10f{bottom:503.130667pt;}
.yd4{bottom:506.948000pt;}
.y68{bottom:507.339573pt;}
.y73{bottom:510.153253pt;}
.y2f{bottom:514.092000pt;}
.y55{bottom:514.129333pt;}
.y120{bottom:515.225333pt;}
.y8b{bottom:516.700000pt;}
.y107{bottom:518.098667pt;}
.yc2{bottom:519.005333pt;}
.ya9{bottom:521.916000pt;}
.yb6{bottom:524.032000pt;}
.ydf{bottom:526.413333pt;}
.y82{bottom:527.586720pt;}
.y67{bottom:530.006240pt;}
.y84{bottom:531.486587pt;}
.y7c{bottom:532.819920pt;}
.y2e{bottom:535.634667pt;}
.y54{bottom:535.673333pt;}
.yd3{bottom:535.748000pt;}
.y100{bottom:537.412000pt;}
.yec{bottom:539.074667pt;}
.y3d{bottom:550.677333pt;}
.y7a{bottom:551.586720pt;}
.y11f{bottom:552.076000pt;}
.y3f{bottom:552.869333pt;}
.y106{bottom:553.285333pt;}
.y83{bottom:554.153253pt;}
.y72{bottom:555.486587pt;}
.yc1{bottom:555.856000pt;}
.ya8{bottom:558.765333pt;}
.y2d{bottom:558.917333pt;}
.yb5{bottom:560.882667pt;}
.yde{bottom:563.264000pt;}
.yd2{bottom:565.870667pt;}
.y8a{bottom:567.761333pt;}
.yd{bottom:569.348000pt;}
.y3e{bottom:571.540000pt;}
.y66{bottom:575.439707pt;}
.y79{bottom:575.586720pt;}
.y2c{bottom:581.329333pt;}
.y53{bottom:581.368000pt;}
.yff{bottom:590.136000pt;}
.y78{bottom:599.586720pt;}
.y2b{bottom:602.873333pt;}
.y52{bottom:603.780000pt;}
.yc0{bottom:605.254667pt;}
.ya7{bottom:608.164000pt;}
.y3c{bottom:612.888000pt;}
.y71{bottom:623.586720pt;}
.y2a{bottom:626.154667pt;}
.y51{bottom:626.192000pt;}
.yc{bottom:629.745333pt;}
.y3b{bottom:640.592000pt;}
.y5{bottom:643.049333pt;}
.y29{bottom:648.568000pt;}
.y50{bottom:648.605333pt;}
.yce{bottom:652.044000pt;}
.y8f{bottom:652.952000pt;}
.y4f{bottom:670.148000pt;}
.y28{bottom:670.980000pt;}
.h1b{height:27.986613pt;}
.h2{height:32.985984pt;}
.h14{height:43.304615pt;}
.h6{height:44.564812pt;}
.h13{height:45.111198pt;}
.hf{height:46.558805pt;}
.h1c{height:46.784000pt;}
.h11{height:47.137641pt;}
.h21{height:47.964000pt;}
.h10{height:48.588531pt;}
.h12{height:53.011518pt;}
.h29{height:55.801867pt;}
.h1e{height:55.840000pt;}
.h5{height:56.488852pt;}
.h1a{height:58.480000pt;}
.h1f{height:70.176000pt;}
.h2a{height:78.474958pt;}
.h2b{height:83.765625pt;}
.h2c{height:84.780104pt;}
.h20{height:85.009240pt;}
.h15{height:88.136930pt;}
.h28{height:89.307891pt;}
.hc{height:92.601242pt;}
.he{height:92.606576pt;}
.h26{height:95.710247pt;}
.h25{height:95.715581pt;}
.h16{height:97.083000pt;}
.hd{height:98.953242pt;}
.h27{height:102.366247pt;}
.hb{height:106.966547pt;}
.h3{height:125.259117pt;}
.h7{height:129.678823pt;}
.h22{height:148.930628pt;}
.h4{height:150.764133pt;}
.ha{height:170.820453pt;}
.h23{height:173.582539pt;}
.h24{height:173.587872pt;}
.h2d{height:186.131872pt;}
.h8{height:191.988453pt;}
.h9{height:192.137786pt;}
.h19{height:648.479600pt;}
.h1d{height:648.626667pt;}
.h1{height:719.961333pt;}
.h0{height:720.000000pt;}
.h17{height:793.700800pt;}
.h18{height:794.000000pt;}
.w6{width:23.319947pt;}
.w5{width:983.258533pt;}
.w3{width:1122.519733pt;}
.w4{width:1122.666667pt;}
.w2{width:1279.974667pt;}
.w1{width:1280.000000pt;}
.w0{width:1280.012613pt;}
.x0{left:0.000000pt;}
.x30{left:5.960013pt;}
.xd{left:9.410667pt;}
.x2{left:21.770667pt;}
.xa{left:23.433333pt;}
.x28{left:34.545333pt;}
.x3b{left:37.114667pt;}
.x37{left:39.005333pt;}
.x26{left:43.502667pt;}
.x3a{left:55.785333pt;}
.x38{left:57.676000pt;}
.x1{left:69.128000pt;}
.x2f{left:76.950667pt;}
.x3e{left:78.312000pt;}
.x3c{left:81.033333pt;}
.x39{left:82.922667pt;}
.xe{left:101.556000pt;}
.x13{left:115.313333pt;}
.x44{left:133.114667pt;}
.x43{left:135.005333pt;}
.x27{left:150.841333pt;}
.x12{left:154.205333pt;}
.x33{left:165.241333pt;}
.x34{left:209.688000pt;}
.x45{left:220.724000pt;}
.x3{left:273.562667pt;}
.x29{left:287.886667pt;}
.x23{left:290.797333pt;}
.x1c{left:295.257333pt;}
.xb{left:297.033333pt;}
.x1f{left:299.528000pt;}
.x1b{left:301.341333pt;}
.x20{left:311.093333pt;}
.xc{left:320.844000pt;}
.x6{left:327.005333pt;}
.x1a{left:335.660000pt;}
.x24{left:432.340000pt;}
.x8{left:478.298667pt;}
.x7{left:490.922667pt;}
.x1d{left:522.557333pt;}
.x25{left:525.241333pt;}
.x21{left:543.912000pt;}
.x31{left:551.485200pt;}
.x1e{left:573.808000pt;}
.x2c{left:578.342667pt;}
.x3f{left:653.858667pt;}
.x22{left:670.034667pt;}
.x42{left:672.529333pt;}
.x32{left:691.729333pt;}
.x40{left:697.776000pt;}
.x35{left:748.120000pt;}
.x41{left:749.858667pt;}
.x9{left:754.506667pt;}
.xf{left:817.172000pt;}
.x14{left:821.820000pt;}
.x10{left:830.777333pt;}
.x16{left:835.426667pt;}
.x2d{left:843.250667pt;}
.x11{left:844.384000pt;}
.x2e{left:856.857333pt;}
.x15{left:862.601333pt;}
.x4{left:986.041333pt;}
.x17{left:1007.584000pt;}
.x18{left:1021.190667pt;}
.x19{left:1034.797333pt;}
.x2b{left:1126.072000pt;}
.x2a{left:1145.764000pt;}
.x3d{left:1224.453333pt;}
.x36{left:1233.184000pt;}
.x5{left:1252.460000pt;}
}




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