
    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_ac8c3479521f37a27aeee578.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.763184;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_df930b23fa0e5863deb98378.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_4671c0ae9ab96769928dc84f.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_88bbf1656fb9bb91070bb70d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936035;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_d7a349c70d88b29bf47d00da.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.687988;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_c41942f06eb6690efc73a16f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.710938;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:1376.919804px;}
.ls1{letter-spacing:1866.507804px;}
.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;}
}
.ws1{word-spacing:-9.000000px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:101.467608px;}
.ws0{word-spacing:136.926588px;}
.ws4{word-spacing:146.725608px;}
._13c{margin-left:-569.442312px;}
._123{margin-left:-490.141332px;}
._157{margin-left:-417.421332px;}
._148{margin-left:-142.978992px;}
._1a9{margin-left:-98.810496px;}
._c6{margin-left:-1.836000px;}
._c7{width:1.500000px;}
._122{width:7.772784px;}
._3{width:29.915712px;}
._2{width:56.094216px;}
._183{width:116.445156px;}
._2d{width:137.071128px;}
._5{width:143.411712px;}
._c{width:153.210732px;}
._187{width:300.263376px;}
._30{width:333.521220px;}
._c4{width:377.535780px;}
._31{width:378.917088px;}
._1a4{width:410.101872px;}
._b4{width:449.387208px;}
._f3{width:459.618252px;}
._176{width:542.988384px;}
._184{width:556.460892px;}
._ec{width:565.240392px;}
._dc{width:570.601740px;}
._be{width:583.444320px;}
._32{width:628.606068px;}
._d0{width:643.004448px;}
._128{width:681.200028px;}
._48{width:686.608200px;}
._177{width:689.253756px;}
._62{width:701.357760px;}
._14f{width:734.334660px;}
._2f{width:737.846460px;}
._191{width:745.525596px;}
._d3{width:750.606000px;}
._cf{width:764.044488px;}
._d{width:771.512916px;}
._12d{width:787.409664px;}
._2e{width:791.225820px;}
._f2{width:795.276096px;}
._7f{width:798.260028px;}
._2c{width:800.286264px;}
._1{width:820.922196px;}
._96{width:826.822668px;}
._66{width:828.227388px;}
._c2{width:829.678932px;}
._f0{width:837.909348px;}
._115{width:840.742200px;}
._13a{width:850.668888px;}
._cd{width:856.240944px;}
._a4{width:860.267808px;}
._e{width:861.344760px;}
._155{width:863.321976px;}
._6f{width:871.856748px;}
._171{width:891.405768px;}
._185{width:901.249416px;}
._e9{width:902.901060px;}
._102{width:904.165308px;}
._138{width:913.623756px;}
._e7{width:917.942172px;}
._116{width:934.273140px;}
._10c{width:947.337036px;}
._14d{width:952.966524px;}
._73{width:956.946564px;}
._b{width:958.398108px;}
._9d{width:961.571532px;}
._1a2{width:964.812996px;}
._137{width:971.204472px;}
._105{width:974.424720px;}
._17a{width:982.572096px;}
._178{width:984.221544px;}
._145{width:985.532616px;}
._9b{width:989.512656px;}
._16a{width:993.235164px;}
._109{width:997.308852px;}
._11c{width:999.358500px;}
._129{width:1002.004056px;}
._ce{width:1004.555964px;}
._80{width:1011.636996px;}
._4f{width:1018.930932px;}
._192{width:1020.861324px;}
._4d{width:1025.754432px;}
._19e{width:1029.255624px;}
._e6{width:1031.901180px;}
._17c{width:1035.002172px;}
._158{width:1039.744200px;}
._7c{width:1040.750916px;}
._104{width:1047.353100px;}
._19a{width:1048.640760px;}
._13e{width:1053.357180px;}
._3e{width:1056.460368px;}
._199{width:1059.152748px;}
._11b{width:1060.393584px;}
._164{width:1065.637872px;}
._51{width:1069.688148px;}
._13b{width:1074.006564px;}
._16d{width:1075.223988px;}
._19f{width:1078.514472px;}
._83{width:1082.060292px;}
._5c{width:1087.164108px;}
._15c{width:1090.478004px;}
._ab{width:1095.441348px;}
._10a{width:1098.157140px;}
._111{width:1106.000160px;}
._13d{width:1108.341360px;}
._64{width:1110.003612px;}
._101{width:1111.150800px;}
._bd{width:1115.084016px;}
._50{width:1116.512148px;}
._77{width:1117.823220px;}
._72{width:1122.118224px;}
._d6{width:1123.359060px;}
._12c{width:1128.007440px;}
._197{width:1129.295100px;}
._144{width:1132.583388px;}
._134{width:1135.920696px;}
._9a{width:1138.589664px;}
._eb{width:1141.784304px;}
._7a{width:1144.957728px;}
._a0{width:1146.385860px;}
._17b{width:1147.486224px;}
._76{width:1151.232144px;}
._150{width:1155.971976px;}
._194{width:1161.790956px;}
._16c{width:1163.721348px;}
._11d{width:1168.346316px;}
._75{width:1170.874812px;}
._e1{width:1176.048864px;}
._8e{width:1177.453584px;}
._117{width:1178.717832px;}
._e4{width:1183.845060px;}
._79{width:1185.226368px;}
._18c{width:1188.491244px;}
._15e{width:1191.066564px;}
._154{width:1193.758944px;}
._17d{width:1195.527648px;}
._b2{width:1197.049428px;}
._59{width:1198.102968px;}
._e8{width:1203.464316px;}
._71{width:1207.384728px;}
._15f{width:1210.709232px;}
._37{width:1211.903244px;}
._15a{width:1213.144080px;}
._fe{width:1215.217140px;}
._15{width:1217.932932px;}
._14b{width:1220.344368px;}
._14c{width:1221.608616px;}
._b0{width:1222.989924px;}
._10{width:1225.588656px;}
._44{width:1229.475048px;}
._b7{width:1230.762708px;}
._141{width:1232.856984px;}
._45{width:1234.672512px;}
._167{width:1235.936760px;}
._a7{width:1237.177596px;}
._67{width:1238.465256px;}
._193{width:1240.465884px;}
._114{width:1242.304824px;}
._107{width:1246.120980px;}
._179{width:1250.311728px;}
._188{width:1253.436132px;}
._100{width:1255.392132px;}
._120{width:1256.703204px;}
._10f{width:1259.606292px;}
._65{width:1261.900668px;}
._19b{width:1263.971532px;}
._70{width:1267.121544px;}
._ee{width:1269.215820px;}
._a5{width:1271.078172px;}
._170{width:1275.677532px;}
._c1{width:1278.944604px;}
._ac{width:1280.687700px;}
._c5{width:1282.971468px;}
._124{width:1284.095244px;}
._190{width:1287.958224px;}
._16e{width:1289.386356px;}
._f{width:1291.868028px;}
._8d{width:1293.249336px;}
._8c{width:1295.754420px;}
._3d{width:1297.135728px;}
._68{width:1298.399976px;}
._153{width:1306.862316px;}
._11{width:1315.326852px;}
._f1{width:1317.210420px;}
._63{width:1319.260068px;}
._a1{width:1320.524316px;}
._78{width:1321.835388px;}
._ba{width:1324.363884px;}
._15d{width:1327.488288px;}
._5d{width:1330.895832px;}
._6b{width:1332.160080px;}
._1f{width:1333.588212px;}
._7b{width:1334.665164px;}
._10e{width:1336.689204px;}
._103{width:1338.070512px;}
._12e{width:1339.909452px;}
._131{width:1341.290760px;}
._df{width:1342.625244px;}
._19c{width:1345.177152px;}
._a2{width:1346.605284px;}
._f7{width:1348.465440px;}
._f4{width:1350.444852px;}
._fc{width:1353.826788px;}
._1a3{width:1361.412276px;}
._60{width:1370.519544px;}
._84{width:1376.455584px;}
._33{width:1377.696420px;}
._1a0{width:1379.743872px;}
._11f{width:1381.031532px;}
._74{width:1382.987532px;}
._47{width:1385.633088px;}
._41{width:1386.827100px;}
._69{width:1389.472656px;}
._172{width:1390.713492px;}
._ad{width:1392.118212px;}
._d4{width:1393.288812px;}
._98{width:1394.716944px;}
._156{width:1397.011320px;}
._29{width:1399.222656px;}
._6e{width:1401.061596px;}
._21{width:1402.396080px;}
._2b{width:1403.800800px;}
._40{width:1406.235648px;}
._bb{width:1409.021676px;}
._151{width:1410.332748px;}
._da{width:1411.550172px;}
._11a{width:1412.650536px;}
._18f{width:1414.055256px;}
._119{width:1415.389740px;}
._181{width:1422.015336px;}
._9c{width:1423.232760px;}
._38{width:1424.543832px;}
._46{width:1427.119152px;}
._e5{width:1428.336576px;}
._e2{width:1431.169428px;}
._133{width:1432.293204px;}
._149{width:1434.962172px;}
._143{width:1437.560904px;}
._95{width:1440.019164px;}
._dd{width:1442.066616px;}
._18e{width:1444.163088px;}
._a8{width:1447.979244px;}
._81{width:1449.383964px;}
._140{width:1450.554564px;}
._52{width:1451.912460px;}
._130{width:1456.394760px;}
._c8{width:1457.541948px;}
._1a7{width:1459.708656px;}
._35{width:1461.019728px;}
._126{width:1463.407752px;}
._8f{width:1464.835884px;}
._53{width:1466.053308px;}
._4b{width:1470.173820px;}
._b8{width:1471.274184px;}
._118{width:1472.655492px;}
._97{width:1473.966564px;}
._17{width:1475.920368px;}
._165{width:1481.047596px;}
._c9{width:1483.120656px;}
._61{width:1486.913400px;}
._b3{width:1488.294708px;}
._9f{width:1489.512132px;}
._aa{width:1492.110864px;}
._b9{width:1493.538996px;}
._af{width:1494.709596px;}
._6a{width:1497.425388px;}
._bf{width:1499.883648px;}
._146{width:1502.576028px;}
._162{width:1504.459596px;}
._10b{width:1507.175388px;}
._d9{width:1510.301988px;}
._196{width:1511.683296px;}
._e3{width:1512.877308px;}
._13{width:1515.593100px;}
._d7{width:1516.927584px;}
._20{width:1518.074772px;}
._a9{width:1519.409256px;}
._d2{width:1521.984576px;}
._4a{width:1525.366512px;}
._113{width:1526.654172px;}
._125{width:1532.426328px;}
._166{width:1533.643752px;}
._12{width:1534.837764px;}
._159{width:1538.888040px;}
._182{width:1541.557008px;}
._43{width:1546.132956px;}
._36{width:1548.088956px;}
._142{width:1549.353204px;}
._db{width:1553.858916px;}
._3f{width:1558.530708px;}
._168{width:1563.587700px;}
._b5{width:1566.233256px;}
._17f{width:1568.327532px;}
._e0{width:1570.236708px;}
._fb{width:1573.361112px;}
._86{width:1575.434172px;}
._180{width:1576.838892px;}
._127{width:1579.250328px;}
._9e{width:1581.685176px;}
._12f{width:1585.137348px;}
._57{width:1587.210408px;}
._d8{width:1588.404420px;}
._3b{width:1589.738904px;}
._13f{width:1591.575648px;}
._18a{width:1594.150968px;}
._2a{width:1596.036732px;}
._56{width:1597.535100px;}
._112{width:1598.612052px;}
._42{width:1602.568680px;}
._4c{width:1604.686368px;}
._14e{width:1607.883204px;}
._135{width:1609.053804px;}
._94{width:1611.769596px;}
._90{width:1615.011060px;}
._18b{width:1616.392368px;}
._ef{width:1618.301544px;}
._12a{width:1622.211348px;}
._ea{width:1624.810080px;}
._106{width:1625.957268px;}
._89{width:1628.696472px;}
._ff{width:1633.342656px;}
._a3{width:1635.228420px;}
._14a{width:1637.686680px;}
._121{width:1639.044576px;}
._1a6{width:1640.449296px;}
._1e{width:1642.907556px;}
._7{width:1645.576524px;}
._b1{width:1648.151844px;}
._fa{width:1649.650212px;}
._6d{width:1654.660380px;}
._16f{width:1658.640420px;}
._16b{width:1661.858472px;}
._1a8{width:1663.146132px;}
._12b{width:1665.148956px;}
._19{width:1666.985700px;}
._22{width:1670.369832px;}
._88{width:1672.968564px;}
._f9{width:1675.520472px;}
._bc{width:1679.430276px;}
._c0{width:1680.717936px;}
._110{width:1681.935360px;}
._8{width:1683.269844px;}
._92{width:1684.721388px;}
._11e{width:1688.514132px;}
._5f{width:1690.421112px;}
._18{width:1694.354328px;}
._55{width:1697.574576px;}
._93{width:1699.002708px;}
._f5{width:1701.484380px;}
._f6{width:1704.059700px;}
._1a1{width:1705.370772px;}
._cc{width:1710.016956px;}
._5b{width:1712.685924px;}
._198{width:1713.879936px;}
._85{width:1717.053360px;}
._4{width:1722.344472px;}
._99{width:1723.585308px;}
._b6{width:1724.872968px;}
._136{width:1730.117256px;}
._132{width:1735.291308px;}
._5a{width:1737.890040px;}
._6{width:1747.067544px;}
._6c{width:1750.883700px;}
._a{width:1752.218184px;}
._169{width:1753.459020px;}
._39{width:1757.462472px;}
._cb{width:1758.726720px;}
._1d{width:1759.990968px;}
._1c{width:1761.874536px;}
._54{width:1765.188432px;}
._139{width:1767.857400px;}
._82{width:1769.004588px;}
._7d{width:1775.583360px;}
._34{width:1777.537164px;}
._a6{width:1780.827648px;}
._d5{width:1784.760864px;}
._3a{width:1787.289360px;}
._58{width:1788.670668px;}
._147{width:1790.051976px;}
._152{width:1792.463412px;}
._c3{width:1795.179204px;}
._fd{width:1797.777936px;}
._ed{width:1799.731740px;}
._16{width:1801.640916px;}
._19d{width:1804.286472px;}
._174{width:1812.012432px;}
._87{width:1817.280132px;}
._10d{width:1819.855452px;}
._8b{width:1822.477596px;}
._25{width:1830.893112px;}
._ae{width:1835.494668px;}
._195{width:1836.735504px;}
._27{width:1840.692132px;}
._de{width:1841.956380px;}
._1b{width:1851.040236px;}
._28{width:1852.398132px;}
._163{width:1861.528812px;}
._f8{width:1865.368380px;}
._d1{width:1867.298772px;}
._8a{width:1871.830092px;}
._ca{width:1882.318668px;}
._9{width:1886.181648px;}
._4e{width:1892.666772px;}
._15b{width:1902.369948px;}
._49{width:1909.617060px;}
._91{width:1912.215792px;}
._14{width:1914.814524px;}
._3c{width:1916.102184px;}
._7e{width:1917.389844px;}
._17e{width:1921.229412px;}
._160{width:1929.072432px;}
._23{width:1933.005648px;}
._5e{width:1939.490772px;}
._175{width:1942.779060px;}
._189{width:1968.696144px;}
._26{width:1970.652144px;}
._108{width:1976.632812px;}
._18d{width:1979.853060px;}
._1a5{width:1999.997988px;}
._161{width:2020.098288px;}
._24{width:2031.804288px;}
._186{width:2054.594772px;}
._1a{width:2267.183712px;}
._173{width:2276.933712px;}
._0{width:3803.389200px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,128);}
.fs1{font-size:23.400000px;}
.fs2{font-size:23.412000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:42.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y4{bottom:1.200000px;}
.ye5{bottom:16.834500px;}
.ye4{bottom:27.034500px;}
.ye3{bottom:60.864000px;}
.ye2{bottom:68.341500px;}
.ye1{bottom:75.820500px;}
.ye0{bottom:83.299500px;}
.ydf{bottom:90.778500px;}
.yde{bottom:98.257500px;}
.ydd{bottom:105.736500px;}
.ydc{bottom:113.215500px;}
.ydb{bottom:120.693000px;}
.yda{bottom:128.172000px;}
.yd9{bottom:135.651000px;}
.yd8{bottom:143.130000px;}
.yd7{bottom:150.609000px;}
.yd6{bottom:158.088000px;}
.yd5{bottom:165.567000px;}
.yd4{bottom:173.044500px;}
.yd3{bottom:180.523500px;}
.yd2{bottom:188.002500px;}
.yd1{bottom:195.481500px;}
.yd0{bottom:202.960500px;}
.ycf{bottom:210.439500px;}
.yce{bottom:217.918500px;}
.ycd{bottom:225.396000px;}
.ycc{bottom:232.875000px;}
.ycb{bottom:240.354000px;}
.yca{bottom:247.833000px;}
.yc9{bottom:255.312000px;}
.yc8{bottom:262.791000px;}
.yc7{bottom:270.270000px;}
.yc6{bottom:277.747500px;}
.yc5{bottom:285.226500px;}
.yc4{bottom:292.705500px;}
.yc3{bottom:300.184500px;}
.yc2{bottom:307.663500px;}
.yc1{bottom:315.142500px;}
.yc0{bottom:322.621500px;}
.ybf{bottom:330.099000px;}
.ybe{bottom:337.578000px;}
.ybd{bottom:345.057000px;}
.ybc{bottom:352.536000px;}
.ybb{bottom:360.015000px;}
.yba{bottom:367.494000px;}
.yb9{bottom:374.973000px;}
.yb8{bottom:382.450500px;}
.yb7{bottom:389.929500px;}
.yb6{bottom:397.408500px;}
.yb5{bottom:404.887500px;}
.yb4{bottom:412.366500px;}
.yb3{bottom:419.845500px;}
.yb2{bottom:427.324500px;}
.yb1{bottom:434.802000px;}
.yb0{bottom:442.281000px;}
.yaf{bottom:449.760000px;}
.yae{bottom:457.239000px;}
.yad{bottom:464.718000px;}
.yac{bottom:472.197000px;}
.yab{bottom:479.676000px;}
.yaa{bottom:487.153500px;}
.ya9{bottom:494.632500px;}
.ya8{bottom:502.111500px;}
.ya7{bottom:509.590500px;}
.ya6{bottom:517.069500px;}
.ya5{bottom:524.548500px;}
.ya4{bottom:532.027500px;}
.ya3{bottom:539.505000px;}
.ya2{bottom:546.984000px;}
.ya1{bottom:554.463000px;}
.ya0{bottom:561.942000px;}
.y9f{bottom:569.421000px;}
.y9e{bottom:576.900000px;}
.y9d{bottom:584.379000px;}
.y9c{bottom:591.856500px;}
.y9b{bottom:599.335500px;}
.y9a{bottom:606.814500px;}
.y99{bottom:614.293500px;}
.y98{bottom:621.772500px;}
.y97{bottom:629.251500px;}
.y96{bottom:636.730500px;}
.y95{bottom:644.208000px;}
.y94{bottom:651.687000px;}
.y93{bottom:659.166000px;}
.y92{bottom:666.645000px;}
.y91{bottom:674.124000px;}
.y90{bottom:681.603000px;}
.y8f{bottom:689.082000px;}
.y8e{bottom:696.559500px;}
.y8d{bottom:704.038500px;}
.y8c{bottom:711.517500px;}
.y8b{bottom:718.996500px;}
.y8a{bottom:726.475500px;}
.y89{bottom:733.954500px;}
.y88{bottom:741.433500px;}
.y87{bottom:748.911000px;}
.y86{bottom:756.390000px;}
.y85{bottom:763.869000px;}
.y84{bottom:771.348000px;}
.y83{bottom:778.827000px;}
.y82{bottom:786.306000px;}
.y81{bottom:793.785000px;}
.y80{bottom:801.262500px;}
.y7f{bottom:808.741500px;}
.y7e{bottom:816.220500px;}
.y7d{bottom:823.699500px;}
.y7c{bottom:831.178500px;}
.y7b{bottom:838.657500px;}
.y7a{bottom:846.136500px;}
.y79{bottom:853.614000px;}
.y78{bottom:861.093000px;}
.y77{bottom:868.572000px;}
.y76{bottom:876.051000px;}
.y75{bottom:883.530000px;}
.y74{bottom:891.009000px;}
.y73{bottom:898.488000px;}
.y72{bottom:905.965500px;}
.y71{bottom:913.444500px;}
.y70{bottom:920.923500px;}
.y6f{bottom:928.402500px;}
.y6e{bottom:935.881500px;}
.y6d{bottom:943.360500px;}
.y6c{bottom:950.839500px;}
.y6b{bottom:958.317000px;}
.y6a{bottom:965.796000px;}
.y69{bottom:973.275000px;}
.y68{bottom:980.754000px;}
.y67{bottom:988.233000px;}
.y66{bottom:995.712000px;}
.y65{bottom:1003.191000px;}
.y64{bottom:1010.670000px;}
.y63{bottom:1018.147500px;}
.y62{bottom:1025.626500px;}
.y61{bottom:1033.105500px;}
.y60{bottom:1040.584500px;}
.y5f{bottom:1048.063500px;}
.y5e{bottom:1055.542500px;}
.y5d{bottom:1063.021500px;}
.y5c{bottom:1070.499000px;}
.y5b{bottom:1077.978000px;}
.y5a{bottom:1085.457000px;}
.y59{bottom:1092.936000px;}
.y58{bottom:1100.415000px;}
.y57{bottom:1107.894000px;}
.y56{bottom:1115.373000px;}
.y55{bottom:1122.850500px;}
.y54{bottom:1130.329500px;}
.y53{bottom:1137.808500px;}
.y52{bottom:1145.287500px;}
.y51{bottom:1152.766500px;}
.y50{bottom:1160.245500px;}
.y4f{bottom:1167.724500px;}
.y4e{bottom:1175.202000px;}
.y4d{bottom:1182.681000px;}
.y4c{bottom:1190.160000px;}
.y4b{bottom:1197.639000px;}
.y4a{bottom:1205.118000px;}
.y49{bottom:1212.597000px;}
.y48{bottom:1220.076000px;}
.y47{bottom:1227.553500px;}
.y46{bottom:1235.032500px;}
.y45{bottom:1242.511500px;}
.y44{bottom:1249.990500px;}
.y43{bottom:1257.469500px;}
.y42{bottom:1264.948500px;}
.y41{bottom:1272.427500px;}
.y40{bottom:1279.905000px;}
.y3f{bottom:1287.384000px;}
.y3e{bottom:1294.863000px;}
.y3d{bottom:1302.342000px;}
.y3c{bottom:1309.821000px;}
.y3b{bottom:1317.300000px;}
.y3a{bottom:1324.779000px;}
.y39{bottom:1332.256500px;}
.y38{bottom:1339.735500px;}
.y37{bottom:1347.214500px;}
.y36{bottom:1354.693500px;}
.y35{bottom:1362.172500px;}
.y34{bottom:1369.651500px;}
.y33{bottom:1377.130500px;}
.y32{bottom:1384.608000px;}
.y31{bottom:1392.087000px;}
.y30{bottom:1399.566000px;}
.y2f{bottom:1407.045000px;}
.y2e{bottom:1414.524000px;}
.y2d{bottom:1422.003000px;}
.y2c{bottom:1429.482000px;}
.y2b{bottom:1436.959500px;}
.y2a{bottom:1444.438500px;}
.y29{bottom:1451.917500px;}
.y28{bottom:1459.396500px;}
.y27{bottom:1466.875500px;}
.y26{bottom:1474.354500px;}
.y25{bottom:1481.833500px;}
.y24{bottom:1489.311000px;}
.y23{bottom:1496.790000px;}
.y22{bottom:1504.269000px;}
.y21{bottom:1511.748000px;}
.y20{bottom:1519.227000px;}
.y1f{bottom:1526.706000px;}
.y1e{bottom:1534.185000px;}
.y1d{bottom:1541.662500px;}
.y1c{bottom:1549.141500px;}
.y1b{bottom:1556.620500px;}
.y1a{bottom:1564.099500px;}
.y19{bottom:1571.578500px;}
.y18{bottom:1579.057500px;}
.y17{bottom:1586.536500px;}
.y16{bottom:1594.014000px;}
.y15{bottom:1601.493000px;}
.y14{bottom:1608.972000px;}
.y13{bottom:1616.451000px;}
.y12{bottom:1623.930000px;}
.y11{bottom:1631.409000px;}
.y10{bottom:1638.888000px;}
.yf{bottom:1646.365500px;}
.ye{bottom:1653.844500px;}
.yd{bottom:1661.323500px;}
.yc{bottom:1668.802500px;}
.yb{bottom:1676.281500px;}
.ya{bottom:1683.760500px;}
.y9{bottom:1691.239500px;}
.y8{bottom:1698.717000px;}
.y7{bottom:1706.196000px;}
.y6{bottom:1713.675000px;}
.y5{bottom:1721.154000px;}
.y3{bottom:1736.832000px;}
.y2{bottom:1754.959500px;}
.h4{height:6.492000px;}
.h6{height:17.044576px;}
.h5{height:17.047266px;}
.h7{height:17.056008px;}
.h8{height:27.000000px;}
.h3{height:31.500000px;}
.h1{height:1785.750000px;}
.h2{height:1785.783000px;}
.h0{height:1785.826772px;}
.w3{width:1011.903000px;}
.w2{width:1262.791500px;}
.w0{width:1262.834646px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:165.817500px;}
.x3{left:172.840500px;}
.x4{left:193.171500px;}
.x6{left:264.225000px;}
.x5{left:302.775000px;}
.x1{left:582.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:1223.928715pt;}
.ls1{letter-spacing:1659.118048pt;}
.ws1{word-spacing:-8.000000pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:90.193429pt;}
.ws0{word-spacing:121.712523pt;}
.ws4{word-spacing:130.422763pt;}
._13c{margin-left:-506.170944pt;}
._123{margin-left:-435.681184pt;}
._157{margin-left:-371.041184pt;}
._148{margin-left:-127.092437pt;}
._1a9{margin-left:-87.831552pt;}
._c6{margin-left:-1.632000pt;}
._c7{width:1.333333pt;}
._122{width:6.909141pt;}
._3{width:26.591744pt;}
._2{width:49.861525pt;}
._183{width:103.506805pt;}
._2d{width:121.841003pt;}
._5{width:127.477077pt;}
._c{width:136.187317pt;}
._187{width:266.900779pt;}
._30{width:296.463307pt;}
._c4{width:335.587360pt;}
._31{width:336.815189pt;}
._1a4{width:364.534997pt;}
._b4{width:399.455296pt;}
._f3{width:408.549557pt;}
._176{width:482.656341pt;}
._184{width:494.631904pt;}
._ec{width:502.435904pt;}
._dc{width:507.201547pt;}
._be{width:518.617173pt;}
._32{width:558.760949pt;}
._d0{width:571.559509pt;}
._128{width:605.511136pt;}
._48{width:610.318400pt;}
._177{width:612.670005pt;}
._62{width:623.429120pt;}
._14f{width:652.741920pt;}
._2f{width:655.863520pt;}
._191{width:662.689419pt;}
._d3{width:667.205333pt;}
._cf{width:679.150656pt;}
._d{width:685.789259pt;}
._12d{width:699.919701pt;}
._2e{width:703.311840pt;}
._f2{width:706.912085pt;}
._7f{width:709.564469pt;}
._2c{width:711.365568pt;}
._1{width:729.708619pt;}
._96{width:734.953483pt;}
._66{width:736.202123pt;}
._c2{width:737.492384pt;}
._f0{width:744.808309pt;}
._115{width:747.326400pt;}
._13a{width:756.150123pt;}
._cd{width:761.103061pt;}
._a4{width:764.682496pt;}
._e{width:765.639787pt;}
._155{width:767.397312pt;}
._6f{width:774.983776pt;}
._171{width:792.360683pt;}
._185{width:801.110592pt;}
._e9{width:802.578720pt;}
._102{width:803.702496pt;}
._138{width:812.110005pt;}
._e7{width:815.948597pt;}
._116{width:830.465013pt;}
._10c{width:842.077365pt;}
._14d{width:847.081355pt;}
._73{width:850.619168pt;}
._b{width:851.909429pt;}
._9d{width:854.730251pt;}
._1a2{width:857.611552pt;}
._137{width:863.292864pt;}
._105{width:866.155307pt;}
._17a{width:873.397419pt;}
._178{width:874.863595pt;}
._145{width:876.028992pt;}
._9b{width:879.566805pt;}
._16a{width:882.875701pt;}
._109{width:886.496757pt;}
._11c{width:888.318667pt;}
._129{width:890.670272pt;}
._ce{width:892.938635pt;}
._80{width:899.232885pt;}
._4f{width:905.716384pt;}
._192{width:907.432288pt;}
._4d{width:911.781717pt;}
._19e{width:914.893888pt;}
._e6{width:917.245493pt;}
._17c{width:920.001931pt;}
._158{width:924.217067pt;}
._7c{width:925.111925pt;}
._104{width:930.980533pt;}
._19a{width:932.125120pt;}
._13e{width:936.317493pt;}
._3e{width:939.075883pt;}
._199{width:941.469109pt;}
._11b{width:942.572075pt;}
._164{width:947.233664pt;}
._51{width:950.833909pt;}
._13b{width:954.672501pt;}
._16d{width:955.754656pt;}
._19f{width:958.679531pt;}
._83{width:961.831371pt;}
._5c{width:966.368096pt;}
._15c{width:969.313781pt;}
._ab{width:973.725643pt;}
._10a{width:976.139680pt;}
._111{width:983.111253pt;}
._13d{width:985.192320pt;}
._64{width:986.669877pt;}
._101{width:987.689600pt;}
._bd{width:991.185792pt;}
._50{width:992.455243pt;}
._77{width:993.620640pt;}
._72{width:997.438421pt;}
._d6{width:998.541387pt;}
._12c{width:1002.673280pt;}
._197{width:1003.817867pt;}
._144{width:1006.740789pt;}
._134{width:1009.707285pt;}
._9a{width:1012.079701pt;}
._eb{width:1014.919381pt;}
._7a{width:1017.740203pt;}
._a0{width:1019.009653pt;}
._17b{width:1019.987755pt;}
._76{width:1023.317461pt;}
._150{width:1027.530645pt;}
._194{width:1032.703072pt;}
._16c{width:1034.418976pt;}
._11d{width:1038.530059pt;}
._75{width:1040.777611pt;}
._e1{width:1045.376768pt;}
._8e{width:1046.625408pt;}
._117{width:1047.749184pt;}
._e4{width:1052.306720pt;}
._79{width:1053.534549pt;}
._18c{width:1056.436661pt;}
._15e{width:1058.725835pt;}
._154{width:1061.119061pt;}
._17d{width:1062.691243pt;}
._b2{width:1064.043936pt;}
._59{width:1064.980416pt;}
._e8{width:1069.746059pt;}
._71{width:1073.230869pt;}
._15f{width:1076.185984pt;}
._37{width:1077.247328pt;}
._15a{width:1078.350293pt;}
._fe{width:1080.193013pt;}
._15{width:1082.607051pt;}
._14b{width:1084.750549pt;}
._14c{width:1085.874325pt;}
._b0{width:1087.102155pt;}
._10{width:1089.412139pt;}
._44{width:1092.866709pt;}
._b7{width:1094.011296pt;}
._141{width:1095.872875pt;}
._45{width:1097.486677pt;}
._167{width:1098.610453pt;}
._a7{width:1099.713419pt;}
._67{width:1100.858005pt;}
._193{width:1102.636341pt;}
._114{width:1104.270955pt;}
._107{width:1107.663093pt;}
._179{width:1111.388203pt;}
._188{width:1114.165451pt;}
._100{width:1115.904117pt;}
._120{width:1117.069515pt;}
._10f{width:1119.650037pt;}
._65{width:1121.689483pt;}
._19b{width:1123.530251pt;}
._70{width:1126.330261pt;}
._ee{width:1128.191840pt;}
._a5{width:1129.847264pt;}
._170{width:1133.935584pt;}
._c1{width:1136.839648pt;}
._ac{width:1138.389067pt;}
._c5{width:1140.419083pt;}
._124{width:1141.417995pt;}
._190{width:1144.851755pt;}
._16e{width:1146.121205pt;}
._f{width:1148.327136pt;}
._8d{width:1149.554965pt;}
._8c{width:1151.781707pt;}
._3d{width:1153.009536pt;}
._68{width:1154.133312pt;}
._153{width:1161.655392pt;}
._11{width:1169.179424pt;}
._f1{width:1170.853707pt;}
._63{width:1172.675616pt;}
._a1{width:1173.799392pt;}
._78{width:1174.964789pt;}
._ba{width:1177.212341pt;}
._15d{width:1179.989589pt;}
._5d{width:1183.018517pt;}
._6b{width:1184.142293pt;}
._1f{width:1185.411744pt;}
._7b{width:1186.369035pt;}
._10e{width:1188.168181pt;}
._103{width:1189.396011pt;}
._12e{width:1191.030624pt;}
._131{width:1192.258453pt;}
._df{width:1193.444661pt;}
._19c{width:1195.713024pt;}
._a2{width:1196.982475pt;}
._f7{width:1198.635947pt;}
._f4{width:1200.395424pt;}
._fc{width:1203.401589pt;}
._1a3{width:1210.144245pt;}
._60{width:1218.239595pt;}
._84{width:1223.516075pt;}
._33{width:1224.619040pt;}
._1a0{width:1226.438997pt;}
._11f{width:1227.583584pt;}
._74{width:1229.322251pt;}
._47{width:1231.673856pt;}
._41{width:1232.735200pt;}
._69{width:1235.086805pt;}
._172{width:1236.189771pt;}
._ad{width:1237.438411pt;}
._d4{width:1238.478944pt;}
._98{width:1239.748395pt;}
._156{width:1241.787840pt;}
._29{width:1243.753472pt;}
._6e{width:1245.388085pt;}
._21{width:1246.574293pt;}
._2b{width:1247.822933pt;}
._40{width:1249.987243pt;}
._bb{width:1252.463712pt;}
._151{width:1253.629109pt;}
._da{width:1254.711264pt;}
._11a{width:1255.689365pt;}
._18f{width:1256.938005pt;}
._119{width:1258.124213pt;}
._181{width:1264.013632pt;}
._9c{width:1265.095787pt;}
._38{width:1266.261184pt;}
._46{width:1268.550357pt;}
._e5{width:1269.632512pt;}
._e2{width:1272.150603pt;}
._133{width:1273.149515pt;}
._149{width:1275.521931pt;}
._143{width:1277.831915pt;}
._95{width:1280.017035pt;}
._dd{width:1281.836992pt;}
._18e{width:1283.700523pt;}
._a8{width:1287.092661pt;}
._81{width:1288.341301pt;}
._140{width:1289.381835pt;}
._52{width:1290.588853pt;}
._130{width:1294.573120pt;}
._c8{width:1295.592843pt;}
._1a7{width:1297.518805pt;}
._35{width:1298.684203pt;}
._126{width:1300.806891pt;}
._8f{width:1302.076341pt;}
._53{width:1303.158496pt;}
._4b{width:1306.821173pt;}
._b8{width:1307.799275pt;}
._118{width:1309.027104pt;}
._97{width:1310.192501pt;}
._17{width:1311.929216pt;}
._165{width:1316.486752pt;}
._c9{width:1318.329472pt;}
._61{width:1321.700800pt;}
._b3{width:1322.928629pt;}
._9f{width:1324.010784pt;}
._aa{width:1326.320768pt;}
._b9{width:1327.590219pt;}
._af{width:1328.630752pt;}
._6a{width:1331.044789pt;}
._bf{width:1333.229909pt;}
._146{width:1335.623136pt;}
._162{width:1337.297419pt;}
._10b{width:1339.711456pt;}
._d9{width:1342.490656pt;}
._196{width:1343.718485pt;}
._e3{width:1344.779829pt;}
._13{width:1347.193867pt;}
._d7{width:1348.380075pt;}
._20{width:1349.399797pt;}
._a9{width:1350.586005pt;}
._d2{width:1352.875179pt;}
._4a{width:1355.881344pt;}
._113{width:1357.025931pt;}
._125{width:1362.156736pt;}
._166{width:1363.238891pt;}
._12{width:1364.300235pt;}
._159{width:1367.900480pt;}
._182{width:1370.272896pt;}
._43{width:1374.340405pt;}
._36{width:1376.079072pt;}
._142{width:1377.202848pt;}
._db{width:1381.207925pt;}
._3f{width:1385.360629pt;}
._168{width:1389.855733pt;}
._b5{width:1392.207339pt;}
._17f{width:1394.068917pt;}
._e0{width:1395.765963pt;}
._fb{width:1398.543211pt;}
._86{width:1400.385931pt;}
._180{width:1401.634571pt;}
._127{width:1403.778069pt;}
._9e{width:1405.942379pt;}
._12f{width:1409.010976pt;}
._57{width:1410.853696pt;}
._d8{width:1411.915040pt;}
._3b{width:1413.101248pt;}
._13f{width:1414.733909pt;}
._18a{width:1417.023083pt;}
._2a{width:1418.699317pt;}
._56{width:1420.031200pt;}
._112{width:1420.988491pt;}
._42{width:1424.505493pt;}
._4c{width:1426.387883pt;}
._14e{width:1429.229515pt;}
._135{width:1430.270048pt;}
._94{width:1432.684085pt;}
._90{width:1435.565387pt;}
._18b{width:1436.793216pt;}
._ef{width:1438.490261pt;}
._12a{width:1441.965643pt;}
._ea{width:1444.275627pt;}
._106{width:1445.295349pt;}
._89{width:1447.730197pt;}
._ff{width:1451.860139pt;}
._a3{width:1453.536373pt;}
._14a{width:1455.721493pt;}
._121{width:1456.928512pt;}
._1a6{width:1458.177152pt;}
._1e{width:1460.362272pt;}
._7{width:1462.734688pt;}
._b1{width:1465.023861pt;}
._fa{width:1466.355744pt;}
._6d{width:1470.809227pt;}
._16f{width:1474.347040pt;}
._16b{width:1477.207531pt;}
._1a8{width:1478.352117pt;}
._12b{width:1480.132405pt;}
._19{width:1481.765067pt;}
._22{width:1484.773184pt;}
._88{width:1487.083168pt;}
._f9{width:1489.351531pt;}
._bc{width:1492.826912pt;}
._c0{width:1493.971499pt;}
._110{width:1495.053653pt;}
._8{width:1496.239861pt;}
._92{width:1497.530123pt;}
._11e{width:1500.901451pt;}
._5f{width:1502.596544pt;}
._18{width:1506.092736pt;}
._55{width:1508.955179pt;}
._93{width:1510.224629pt;}
._f5{width:1512.430560pt;}
._f6{width:1514.719733pt;}
._1a1{width:1515.885131pt;}
._cc{width:1520.015072pt;}
._5b{width:1522.387488pt;}
._198{width:1523.448832pt;}
._85{width:1526.269653pt;}
._4{width:1530.972864pt;}
._99{width:1532.075829pt;}
._b6{width:1533.220416pt;}
._136{width:1537.882005pt;}
._132{width:1542.481163pt;}
._5a{width:1544.791147pt;}
._6{width:1552.948928pt;}
._6c{width:1556.341067pt;}
._a{width:1557.527275pt;}
._169{width:1558.630240pt;}
._39{width:1562.188864pt;}
._cb{width:1563.312640pt;}
._1d{width:1564.436416pt;}
._1c{width:1566.110699pt;}
._54{width:1569.056384pt;}
._139{width:1571.428800pt;}
._82{width:1572.448523pt;}
._7d{width:1578.296320pt;}
._34{width:1580.033035pt;}
._a6{width:1582.957909pt;}
._d5{width:1586.454101pt;}
._3a{width:1588.701653pt;}
._58{width:1589.929483pt;}
._147{width:1591.157312pt;}
._152{width:1593.300811pt;}
._c3{width:1595.714848pt;}
._fd{width:1598.024832pt;}
._ed{width:1599.761547pt;}
._16{width:1601.458592pt;}
._19d{width:1603.810197pt;}
._174{width:1610.677717pt;}
._87{width:1615.360117pt;}
._10d{width:1617.649291pt;}
._8b{width:1619.980085pt;}
._25{width:1627.460544pt;}
._ae{width:1631.550816pt;}
._195{width:1632.653781pt;}
._27{width:1636.170784pt;}
._de{width:1637.294560pt;}
._1b{width:1645.369099pt;}
._28{width:1646.576117pt;}
._163{width:1654.692277pt;}
._f8{width:1658.105227pt;}
._d1{width:1659.821131pt;}
._8a{width:1663.848971pt;}
._ca{width:1673.172149pt;}
._9{width:1676.605909pt;}
._4e{width:1682.370464pt;}
._15b{width:1690.995509pt;}
._49{width:1697.437387pt;}
._91{width:1699.747371pt;}
._14{width:1702.057355pt;}
._3c{width:1703.201941pt;}
._7e{width:1704.346528pt;}
._17e{width:1707.759477pt;}
._160{width:1714.731051pt;}
._23{width:1718.227243pt;}
._5e{width:1723.991797pt;}
._175{width:1726.914720pt;}
._189{width:1749.952128pt;}
._26{width:1751.690795pt;}
._108{width:1757.006944pt;}
._18d{width:1759.869387pt;}
._1a5{width:1777.775989pt;}
._161{width:1795.642923pt;}
._24{width:1806.048256pt;}
._186{width:1826.306464pt;}
._1a{width:2015.274411pt;}
._173{width:2023.941077pt;}
._0{width:3380.790400pt;}
.fs1{font-size:20.800000pt;}
.fs2{font-size:20.810667pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:37.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y4{bottom:1.066667pt;}
.ye5{bottom:14.964000pt;}
.ye4{bottom:24.030667pt;}
.ye3{bottom:54.101333pt;}
.ye2{bottom:60.748000pt;}
.ye1{bottom:67.396000pt;}
.ye0{bottom:74.044000pt;}
.ydf{bottom:80.692000pt;}
.yde{bottom:87.340000pt;}
.ydd{bottom:93.988000pt;}
.ydc{bottom:100.636000pt;}
.ydb{bottom:107.282667pt;}
.yda{bottom:113.930667pt;}
.yd9{bottom:120.578667pt;}
.yd8{bottom:127.226667pt;}
.yd7{bottom:133.874667pt;}
.yd6{bottom:140.522667pt;}
.yd5{bottom:147.170667pt;}
.yd4{bottom:153.817333pt;}
.yd3{bottom:160.465333pt;}
.yd2{bottom:167.113333pt;}
.yd1{bottom:173.761333pt;}
.yd0{bottom:180.409333pt;}
.ycf{bottom:187.057333pt;}
.yce{bottom:193.705333pt;}
.ycd{bottom:200.352000pt;}
.ycc{bottom:207.000000pt;}
.ycb{bottom:213.648000pt;}
.yca{bottom:220.296000pt;}
.yc9{bottom:226.944000pt;}
.yc8{bottom:233.592000pt;}
.yc7{bottom:240.240000pt;}
.yc6{bottom:246.886667pt;}
.yc5{bottom:253.534667pt;}
.yc4{bottom:260.182667pt;}
.yc3{bottom:266.830667pt;}
.yc2{bottom:273.478667pt;}
.yc1{bottom:280.126667pt;}
.yc0{bottom:286.774667pt;}
.ybf{bottom:293.421333pt;}
.ybe{bottom:300.069333pt;}
.ybd{bottom:306.717333pt;}
.ybc{bottom:313.365333pt;}
.ybb{bottom:320.013333pt;}
.yba{bottom:326.661333pt;}
.yb9{bottom:333.309333pt;}
.yb8{bottom:339.956000pt;}
.yb7{bottom:346.604000pt;}
.yb6{bottom:353.252000pt;}
.yb5{bottom:359.900000pt;}
.yb4{bottom:366.548000pt;}
.yb3{bottom:373.196000pt;}
.yb2{bottom:379.844000pt;}
.yb1{bottom:386.490667pt;}
.yb0{bottom:393.138667pt;}
.yaf{bottom:399.786667pt;}
.yae{bottom:406.434667pt;}
.yad{bottom:413.082667pt;}
.yac{bottom:419.730667pt;}
.yab{bottom:426.378667pt;}
.yaa{bottom:433.025333pt;}
.ya9{bottom:439.673333pt;}
.ya8{bottom:446.321333pt;}
.ya7{bottom:452.969333pt;}
.ya6{bottom:459.617333pt;}
.ya5{bottom:466.265333pt;}
.ya4{bottom:472.913333pt;}
.ya3{bottom:479.560000pt;}
.ya2{bottom:486.208000pt;}
.ya1{bottom:492.856000pt;}
.ya0{bottom:499.504000pt;}
.y9f{bottom:506.152000pt;}
.y9e{bottom:512.800000pt;}
.y9d{bottom:519.448000pt;}
.y9c{bottom:526.094667pt;}
.y9b{bottom:532.742667pt;}
.y9a{bottom:539.390667pt;}
.y99{bottom:546.038667pt;}
.y98{bottom:552.686667pt;}
.y97{bottom:559.334667pt;}
.y96{bottom:565.982667pt;}
.y95{bottom:572.629333pt;}
.y94{bottom:579.277333pt;}
.y93{bottom:585.925333pt;}
.y92{bottom:592.573333pt;}
.y91{bottom:599.221333pt;}
.y90{bottom:605.869333pt;}
.y8f{bottom:612.517333pt;}
.y8e{bottom:619.164000pt;}
.y8d{bottom:625.812000pt;}
.y8c{bottom:632.460000pt;}
.y8b{bottom:639.108000pt;}
.y8a{bottom:645.756000pt;}
.y89{bottom:652.404000pt;}
.y88{bottom:659.052000pt;}
.y87{bottom:665.698667pt;}
.y86{bottom:672.346667pt;}
.y85{bottom:678.994667pt;}
.y84{bottom:685.642667pt;}
.y83{bottom:692.290667pt;}
.y82{bottom:698.938667pt;}
.y81{bottom:705.586667pt;}
.y80{bottom:712.233333pt;}
.y7f{bottom:718.881333pt;}
.y7e{bottom:725.529333pt;}
.y7d{bottom:732.177333pt;}
.y7c{bottom:738.825333pt;}
.y7b{bottom:745.473333pt;}
.y7a{bottom:752.121333pt;}
.y79{bottom:758.768000pt;}
.y78{bottom:765.416000pt;}
.y77{bottom:772.064000pt;}
.y76{bottom:778.712000pt;}
.y75{bottom:785.360000pt;}
.y74{bottom:792.008000pt;}
.y73{bottom:798.656000pt;}
.y72{bottom:805.302667pt;}
.y71{bottom:811.950667pt;}
.y70{bottom:818.598667pt;}
.y6f{bottom:825.246667pt;}
.y6e{bottom:831.894667pt;}
.y6d{bottom:838.542667pt;}
.y6c{bottom:845.190667pt;}
.y6b{bottom:851.837333pt;}
.y6a{bottom:858.485333pt;}
.y69{bottom:865.133333pt;}
.y68{bottom:871.781333pt;}
.y67{bottom:878.429333pt;}
.y66{bottom:885.077333pt;}
.y65{bottom:891.725333pt;}
.y64{bottom:898.373333pt;}
.y63{bottom:905.020000pt;}
.y62{bottom:911.668000pt;}
.y61{bottom:918.316000pt;}
.y60{bottom:924.964000pt;}
.y5f{bottom:931.612000pt;}
.y5e{bottom:938.260000pt;}
.y5d{bottom:944.908000pt;}
.y5c{bottom:951.554667pt;}
.y5b{bottom:958.202667pt;}
.y5a{bottom:964.850667pt;}
.y59{bottom:971.498667pt;}
.y58{bottom:978.146667pt;}
.y57{bottom:984.794667pt;}
.y56{bottom:991.442667pt;}
.y55{bottom:998.089333pt;}
.y54{bottom:1004.737333pt;}
.y53{bottom:1011.385333pt;}
.y52{bottom:1018.033333pt;}
.y51{bottom:1024.681333pt;}
.y50{bottom:1031.329333pt;}
.y4f{bottom:1037.977333pt;}
.y4e{bottom:1044.624000pt;}
.y4d{bottom:1051.272000pt;}
.y4c{bottom:1057.920000pt;}
.y4b{bottom:1064.568000pt;}
.y4a{bottom:1071.216000pt;}
.y49{bottom:1077.864000pt;}
.y48{bottom:1084.512000pt;}
.y47{bottom:1091.158667pt;}
.y46{bottom:1097.806667pt;}
.y45{bottom:1104.454667pt;}
.y44{bottom:1111.102667pt;}
.y43{bottom:1117.750667pt;}
.y42{bottom:1124.398667pt;}
.y41{bottom:1131.046667pt;}
.y40{bottom:1137.693333pt;}
.y3f{bottom:1144.341333pt;}
.y3e{bottom:1150.989333pt;}
.y3d{bottom:1157.637333pt;}
.y3c{bottom:1164.285333pt;}
.y3b{bottom:1170.933333pt;}
.y3a{bottom:1177.581333pt;}
.y39{bottom:1184.228000pt;}
.y38{bottom:1190.876000pt;}
.y37{bottom:1197.524000pt;}
.y36{bottom:1204.172000pt;}
.y35{bottom:1210.820000pt;}
.y34{bottom:1217.468000pt;}
.y33{bottom:1224.116000pt;}
.y32{bottom:1230.762667pt;}
.y31{bottom:1237.410667pt;}
.y30{bottom:1244.058667pt;}
.y2f{bottom:1250.706667pt;}
.y2e{bottom:1257.354667pt;}
.y2d{bottom:1264.002667pt;}
.y2c{bottom:1270.650667pt;}
.y2b{bottom:1277.297333pt;}
.y2a{bottom:1283.945333pt;}
.y29{bottom:1290.593333pt;}
.y28{bottom:1297.241333pt;}
.y27{bottom:1303.889333pt;}
.y26{bottom:1310.537333pt;}
.y25{bottom:1317.185333pt;}
.y24{bottom:1323.832000pt;}
.y23{bottom:1330.480000pt;}
.y22{bottom:1337.128000pt;}
.y21{bottom:1343.776000pt;}
.y20{bottom:1350.424000pt;}
.y1f{bottom:1357.072000pt;}
.y1e{bottom:1363.720000pt;}
.y1d{bottom:1370.366667pt;}
.y1c{bottom:1377.014667pt;}
.y1b{bottom:1383.662667pt;}
.y1a{bottom:1390.310667pt;}
.y19{bottom:1396.958667pt;}
.y18{bottom:1403.606667pt;}
.y17{bottom:1410.254667pt;}
.y16{bottom:1416.901333pt;}
.y15{bottom:1423.549333pt;}
.y14{bottom:1430.197333pt;}
.y13{bottom:1436.845333pt;}
.y12{bottom:1443.493333pt;}
.y11{bottom:1450.141333pt;}
.y10{bottom:1456.789333pt;}
.yf{bottom:1463.436000pt;}
.ye{bottom:1470.084000pt;}
.yd{bottom:1476.732000pt;}
.yc{bottom:1483.380000pt;}
.yb{bottom:1490.028000pt;}
.ya{bottom:1496.676000pt;}
.y9{bottom:1503.324000pt;}
.y8{bottom:1509.970667pt;}
.y7{bottom:1516.618667pt;}
.y6{bottom:1523.266667pt;}
.y5{bottom:1529.914667pt;}
.y3{bottom:1543.850667pt;}
.y2{bottom:1559.964000pt;}
.h4{height:5.770667pt;}
.h6{height:15.150734pt;}
.h5{height:15.153125pt;}
.h7{height:15.160896pt;}
.h8{height:24.000000pt;}
.h3{height:28.000000pt;}
.h1{height:1587.333333pt;}
.h2{height:1587.362667pt;}
.h0{height:1587.401575pt;}
.w3{width:899.469333pt;}
.w2{width:1122.481333pt;}
.w0{width:1122.519685pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:147.393333pt;}
.x3{left:153.636000pt;}
.x4{left:171.708000pt;}
.x6{left:234.866667pt;}
.x5{left:269.133333pt;}
.x1{left:518.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; }
  