updates on index.html
parent
2482ead3d0
commit
01d040344a
Binary file not shown.
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,281 @@
|
|||||||
|
|
||||||
|
/* Hide */
|
||||||
|
|
||||||
|
.hide {
|
||||||
|
background-color: black !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.legendhide-clicked {
|
||||||
|
background-color: black !important;
|
||||||
|
color: white !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.TO:hover, .DT:hover, .IN:hover, .WDT:hover, .WP:hover, .MD:hover, .PRP:hover, .CC:hover, .marks:hover, .comma:hover, .dot:hover {
|
||||||
|
background-color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Verb */
|
||||||
|
|
||||||
|
.verb {
|
||||||
|
background-color: yellow !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.VB:hover, .VBZ:hover, .VBN:hover, .VVD:hover {
|
||||||
|
background-color: yellow;
|
||||||
|
color: black;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/* .verb-bg {
|
||||||
|
background-color: yellow;
|
||||||
|
color: yellow;
|
||||||
|
|
||||||
|
}*/
|
||||||
|
|
||||||
|
.bg-verb {
|
||||||
|
background-color: yellow;
|
||||||
|
color: yellow;
|
||||||
|
}
|
||||||
|
|
||||||
|
.legendverb-clicked {
|
||||||
|
background-color: yellow !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Adjective */
|
||||||
|
|
||||||
|
.adjective {
|
||||||
|
color: white !important;
|
||||||
|
background-color: blue !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.JJ:hover {
|
||||||
|
color: white;
|
||||||
|
background-color: blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-adjective {
|
||||||
|
color: blue;
|
||||||
|
background-color: blue;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.legendadjective-clicked {
|
||||||
|
background-color: blue !important;
|
||||||
|
color: white !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Posessive Pronoun*/
|
||||||
|
|
||||||
|
.possesivepronoun {
|
||||||
|
background-color: red !important;
|
||||||
|
color: white !important;
|
||||||
|
}
|
||||||
|
.PRPS:hover {
|
||||||
|
background-color: red !important;
|
||||||
|
color: white !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-possesivepronoun {
|
||||||
|
background-color: red;
|
||||||
|
color: red;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.legendpossesivepronoun-clicked {
|
||||||
|
background-color: red !important;
|
||||||
|
color: white !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* Noun */
|
||||||
|
|
||||||
|
.noun {
|
||||||
|
background-color: springgreen !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.NN:hover, .NNS:hover {
|
||||||
|
background-color: springgreen;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-noun {
|
||||||
|
background-color: springgreen;
|
||||||
|
color: springgreen;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.legendnoun-clicked {
|
||||||
|
background-color: springgreen !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Proper Noun */
|
||||||
|
|
||||||
|
.propernoun {
|
||||||
|
background-color: pink !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.NNP:hover, .NNPS:hover {
|
||||||
|
background-color: pink;
|
||||||
|
color: black;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-propernoun {
|
||||||
|
background-color: pink;
|
||||||
|
color: pink;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.legendpropernoun-clicked {
|
||||||
|
background-color: pink !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Adverb */
|
||||||
|
|
||||||
|
.adverb {
|
||||||
|
background-color: purple !important;
|
||||||
|
color: white !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.RB:hover {
|
||||||
|
background-color: purple;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-adverb {
|
||||||
|
background-color: purple;
|
||||||
|
color: purple;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.legendadverb-clicked {
|
||||||
|
background-color: purple !important;
|
||||||
|
color: white !important;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Present Participle */
|
||||||
|
|
||||||
|
.presentparticiple {
|
||||||
|
background-color: brown !important;
|
||||||
|
color: white !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.VBG:hover {
|
||||||
|
background-color: brown;
|
||||||
|
color: white;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-presentparticiple {
|
||||||
|
background-color: brown;
|
||||||
|
color: brown;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.legendpresentparticiple-clicked {
|
||||||
|
background-color: brown !important;
|
||||||
|
color: white !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Adjective Superlative */
|
||||||
|
|
||||||
|
.adjectivesuperlative {
|
||||||
|
background-color: salmon !important;
|
||||||
|
color: white !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.JJS:hover {
|
||||||
|
background-color: salmon;
|
||||||
|
color: white;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-adjectivesuperlative {
|
||||||
|
background-color: salmon;
|
||||||
|
color: salmon;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.legendadjectivesuperlative-clicked {
|
||||||
|
background-color: salmon !important;
|
||||||
|
color: white !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Adjective Superlative */
|
||||||
|
|
||||||
|
.adverb-comparative-superative {
|
||||||
|
background-color: lightgreen !important;
|
||||||
|
color: black !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.RBR:hover, .JJR:hover, .RBS:hover {
|
||||||
|
background-color: lightgreen;
|
||||||
|
color: black;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-adverb-comparative-superative {
|
||||||
|
background-color: lightgreen !important;
|
||||||
|
color: lightgreen !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.legendadverb-comparative-superative-clicked {
|
||||||
|
background-color: lightgreen !important;
|
||||||
|
color: black !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* currency sign */
|
||||||
|
|
||||||
|
.currencysign {
|
||||||
|
background-color: deepskyblue !important;
|
||||||
|
color: black !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.currencysign2:hover {
|
||||||
|
background-color: deepskyblue !important;
|
||||||
|
color: black;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.bgcurrencysign {
|
||||||
|
background-color: deepskyblue !important;
|
||||||
|
color: deepskyblue !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.legendcurrencysign-clicked {
|
||||||
|
background-color: deepskyblue !important;
|
||||||
|
color: black !important;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
Binary file not shown.
After Width: | Height: | Size: 193 KiB |
Binary file not shown.
After Width: | Height: | Size: 176 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Binary file not shown.
Before Width: | Height: | Size: 75 KiB After Width: | Height: | Size: 1.0 MiB |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1,7 +1,15 @@
|
|||||||
$(function() {
|
$(function() {
|
||||||
$('.icon').on('click',function(e) {
|
$('.menu-title').on('click',function(e) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
$(".submenu").slideToggle();
|
$('.submenu').slideToggle();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$(function() {
|
||||||
|
$('.icon2').on('click',function(e) {
|
||||||
|
e.preventDefault();
|
||||||
|
$('.submenu2').slideToggle();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -1,95 +1,61 @@
|
|||||||
$(document).ready(function(){
|
$(document).ready(function(){
|
||||||
|
|
||||||
// index page
|
|
||||||
var modal = document.getElementById("myModal"); //$("#myModal");
|
|
||||||
var btn = document.getElementById("button");
|
|
||||||
var btn_bar = document.getElementById("button-right");
|
|
||||||
var tos_iframe = document.getElementById("tosview");
|
|
||||||
|
|
||||||
// Get the <span> element that closes the modal
|
|
||||||
var span = document.getElementsByClassName("close")[0];
|
|
||||||
|
|
||||||
// When the user clicks the button, open the modal
|
// When the user clicks the button, open the modal
|
||||||
$( ".button-tos" ).click(function() {
|
$( '.button-tos, #button-right').click(function() {
|
||||||
var text = $(this).text().toLowerCase() + '.html';
|
|
||||||
console.log(text);
|
|
||||||
|
|
||||||
$('iframe#tosview').attr('src', text);
|
var text_tos = $(this).text().toLowerCase() + '.html';
|
||||||
modal.style.display = "block";
|
console.log(text_tos);
|
||||||
|
|
||||||
|
$('iframe#tosview').attr('src', text_tos);
|
||||||
|
$('#myModal').css('display', 'block');
|
||||||
|
$('html, body').css('position', 'fixed');
|
||||||
|
|
||||||
});
|
|
||||||
|
|
||||||
// When the user clicks right menu, open the modal
|
});
|
||||||
$( ".button-right" ).click(function() {
|
|
||||||
var text = $(this).text().toLowerCase() + '.html';
|
|
||||||
console.log(text);
|
|
||||||
|
|
||||||
$('iframe#treatyview').attr('src', text);
|
|
||||||
modal.style.display = "block";
|
|
||||||
|
|
||||||
|
$('.close').click(function() {
|
||||||
|
$('#myModal').css('display', 'none');
|
||||||
|
$('html, body').css("position", "relative");
|
||||||
|
window.location.replace("index.html#contents");
|
||||||
|
return false;
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
//right bar list
|
|
||||||
btn_bar.onclick = function() {
|
|
||||||
modal.style.display = "block";
|
|
||||||
}
|
|
||||||
|
|
||||||
// When the user clicks on <span> (x), close the modal
|
|
||||||
span.onclick = function() {
|
|
||||||
modal.style.display = "none";
|
|
||||||
tos_iframe.src = tos_iframe.src;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
// When the user clicks right menu, open the modal
|
||||||
|
$('.button-ht, #t_button-right').click(function() {
|
||||||
|
var text_treaty = $(this).text().toLowerCase().replace(/\s/g, "-") + '.html';
|
||||||
|
console.log(text_treaty);
|
||||||
|
|
||||||
|
$('iframe#treatyview').attr('src', text_treaty);
|
||||||
|
$('#t_myModal').css('display', 'block');
|
||||||
|
$('html, body').css('position', 'fixed');
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
// index page
|
$('.t_close').click(function() {
|
||||||
var t_modal = document.getElementById("t_myModal");
|
$('#t_myModal').css('display', 'none');
|
||||||
var t_btn = document.getElementById("t_button");
|
$('html, body').css("position", "relative");
|
||||||
var t_btn_bar = document.getElementById("t_button-right");
|
window.location.replace("index.html#contents");
|
||||||
var treaty_iframe = document.getElementById("treatyview");
|
return false;
|
||||||
|
|
||||||
// Get the <span> element that closes the modal
|
|
||||||
var t_span = document.getElementsByClassName("t_close")[0];
|
|
||||||
// When the user clicks the button, open the modal
|
|
||||||
t_btn.onclick = function() {
|
|
||||||
t_modal.style.display = "block";
|
|
||||||
}
|
|
||||||
//right bar list
|
|
||||||
t_btn_bar.onclick = function() {
|
|
||||||
modal.style.display = "block";
|
|
||||||
}
|
|
||||||
|
|
||||||
// When the user clicks on <span> (x), close the modal
|
|
||||||
t_span.onclick = function() {
|
|
||||||
t_modal.style.display = "none";
|
|
||||||
treaty_iframe.src = treaty_iframe.src;
|
treaty_iframe.src = treaty_iframe.src;
|
||||||
}
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$(function(){
|
|
||||||
var overlay_modal = $('<div id="overlay-modal"></div>');
|
|
||||||
overlay_modal.show();
|
|
||||||
overlay_modal.appendTo(document.body);
|
|
||||||
$('html, body').css('position', 'fixed');
|
|
||||||
$('.myModal').show();
|
|
||||||
$('.close').click(function(){
|
|
||||||
$('.myModal').hide();
|
|
||||||
overlay_modal.appendTo(document.body).remove();
|
|
||||||
$('html, body').css("position", "relative");
|
|
||||||
return false;
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
});
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -0,0 +1,183 @@
|
|||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
|
// index page
|
||||||
|
var modal = document.getElementById("myModal"); //$("#myModal");
|
||||||
|
var btn = document.getElementById("button");
|
||||||
|
var btn_bar = document.getElementById("button-right");
|
||||||
|
var tos_iframe = document.getElementById("tosview");
|
||||||
|
|
||||||
|
// Get the <span> element that closes the modal
|
||||||
|
var span = document.getElementsByClassName("close")[0];
|
||||||
|
|
||||||
|
// When the user clicks the button, open the modal
|
||||||
|
$( ".button-tos" ).click(function() {
|
||||||
|
var text_tos = $(this).text().toLowerCase() + '.html';
|
||||||
|
console.log(text_tos);
|
||||||
|
|
||||||
|
$('iframe#tosview').attr('src', text_tos);
|
||||||
|
$('#myModal').css('display', 'block');
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// When the user clicks on <span> (x), close the modal
|
||||||
|
span.onclick = function() {
|
||||||
|
modal.style.display = "none";
|
||||||
|
tos_iframe.src = tos_iframe.src;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// When the user clicks right menu, open the modal
|
||||||
|
$( ".button-ht" ).click(function() {
|
||||||
|
var text_treaty = $(this).text().toLowerCase().replace(/\s/g, "-") + '.html';
|
||||||
|
console.log(text_treaty);
|
||||||
|
|
||||||
|
$('iframe#treatyview').attr('src', text_treaty);
|
||||||
|
$('#t_myModal').css('display', 'block');
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.t_close').click(function() {
|
||||||
|
$('#t_myModal').css('display', 'none');
|
||||||
|
treaty_iframe.src = treaty_iframe.src;
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// When the user clicks on <span> (x), close the modal
|
||||||
|
t_span.onclick = function() {
|
||||||
|
t_modal.style.display = "none";
|
||||||
|
treaty_iframe.src = treaty_iframe.src;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// index page
|
||||||
|
var t_modal = document.getElementById("t_myModal");
|
||||||
|
var t_btn = document.getElementById("t_button");
|
||||||
|
var t_btn_bar = document.getElementById("t_button-right");
|
||||||
|
var treaty_iframe = document.getElementById("treatyview");
|
||||||
|
|
||||||
|
// Get the <span> element that closes the modal
|
||||||
|
var t_span = document.getElementsByClassName("t_close")[0];
|
||||||
|
// When the user clicks the button, open the modal
|
||||||
|
t_btn.onclick = function() {
|
||||||
|
t_modal.style.display = "block";
|
||||||
|
}
|
||||||
|
//right bar list
|
||||||
|
t_btn_bar.onclick = function() {
|
||||||
|
modal.style.display = "block";
|
||||||
|
}
|
||||||
|
|
||||||
|
// When the user clicks on <span> (x), close the modal
|
||||||
|
t_span.onclick = function() {
|
||||||
|
t_modal.style.display = "none";
|
||||||
|
treaty_iframe.src = treaty_iframe.src;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
|
// index page
|
||||||
|
var modal = document.getElementById("myModal"); //$("#myModal");
|
||||||
|
var btn = document.getElementById("button");
|
||||||
|
var btn_bar = document.getElementById("button-right");
|
||||||
|
var tos_iframe = document.getElementById("tosview");
|
||||||
|
|
||||||
|
// Get the <span> element that closes the modal
|
||||||
|
var span = document.getElementsByClassName("close")[0];
|
||||||
|
|
||||||
|
// When the user clicks the button, open the modal
|
||||||
|
$( ".button-tos" ).click(function() {
|
||||||
|
var text_tos = $(this).text().toLowerCase() + '.html';
|
||||||
|
console.log(text_tos);
|
||||||
|
|
||||||
|
$('iframe#tosview').attr('src', text_tos);
|
||||||
|
$('#myModal').css('display', 'block');
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
// When the user clicks on <span> (x), close the modal
|
||||||
|
span.onclick = function() {
|
||||||
|
modal.style.display = "none";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// When the user clicks right menu, open the modal
|
||||||
|
$( ".button-ht" ).click(function() {
|
||||||
|
var text_treaty = $(this).text().toLowerCase().replace(/\s/g, "-") + '.html';
|
||||||
|
console.log(text_treaty);
|
||||||
|
|
||||||
|
$('iframe#treatyview').attr('src', text_treaty);
|
||||||
|
$('#t_myModal').css('display', 'block');
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.t_close').click(function() {
|
||||||
|
$('#t_myModal').css('display', 'none');
|
||||||
|
treaty_iframe.src = treaty_iframe.src;
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// index page
|
||||||
|
var t_modal = document.getElementById("t_myModal");
|
||||||
|
var t_btn = document.getElementById("t_button");
|
||||||
|
var t_btn_bar = document.getElementById("t_button-right");
|
||||||
|
var treaty_iframe = document.getElementById("treatyview");
|
||||||
|
|
||||||
|
// Get the <span> element that closes the modal
|
||||||
|
var t_span = document.getElementsByClassName("t_close")[0];
|
||||||
|
// When the user clicks the button, open the modal
|
||||||
|
t_btn.onclick = function() {
|
||||||
|
t_modal.style.display = "block";
|
||||||
|
}
|
||||||
|
//right bar list
|
||||||
|
t_btn_bar.onclick = function() {
|
||||||
|
modal.style.display = "block";
|
||||||
|
}
|
||||||
|
|
||||||
|
// When the user clicks on <span> (x), close the modal
|
||||||
|
t_span.onclick = function() {
|
||||||
|
t_modal.style.display = "none";
|
||||||
|
treaty_iframe.src = treaty_iframe.src;
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,39 @@
|
|||||||
|
$(document).ready(function(){
|
||||||
|
|
||||||
|
// When the user clicks the button, open the modal
|
||||||
|
$( '.button-tos').click(function() {
|
||||||
|
var text_tos = $(this).text().toLowerCase() + '.html';
|
||||||
|
console.log(text_tos);
|
||||||
|
|
||||||
|
$('iframe#tosview').attr('src', text_tos);
|
||||||
|
$('#myModal').css('display', 'block');
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.close').click(function() {
|
||||||
|
$('#myModal').css('display', 'none');
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
// When the user clicks right menu, open the modal
|
||||||
|
$('.button-ht').click(function() {
|
||||||
|
var text_treaty = $(this).text().toLowerCase().replace(/\s/g, "-") + '.html';
|
||||||
|
console.log(text_treaty);
|
||||||
|
|
||||||
|
$('iframe#treatyview').attr('src', text_treaty);
|
||||||
|
$('#t_myModal').css('display', 'block');
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
$('.t_close').click(function() {
|
||||||
|
$('#t_myModal').css('display', 'none');
|
||||||
|
treaty_iframe.src = treaty_iframe.src;
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
})
|
||||||
|
|
@ -0,0 +1,23 @@
|
|||||||
|
$(function(){
|
||||||
|
var overlay_modal = $('<div id="overlay_modal"></div>');
|
||||||
|
overlay_modal.show();
|
||||||
|
overlay_modaloverlay_modal.appendTo(document.body);
|
||||||
|
$('html, body').css('position', 'fixed');
|
||||||
|
$('.button-tos, #button-right, .button-ht, #t_button-right ').show();
|
||||||
|
$('.popupclose').click(function(){
|
||||||
|
$('.close, .t_close').hide();
|
||||||
|
overlay_modal.appendTo(document.body).remove();
|
||||||
|
$('html, body').css("position", "relative");
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
$('.x').click(function(){
|
||||||
|
$('.popup').hide();
|
||||||
|
overlay.appendTo(document.body).remove();
|
||||||
|
|
||||||
|
return false;
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
|
});
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,639 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: "Belgika";
|
||||||
|
src: url("http://bohyewoo.com/webfonts/belgika/belgika-40th-webfont.eot");
|
||||||
|
src: url("http://bohyewoo.com/webfonts/belgika/belgika-40th-webfont.woff") format("woff"),
|
||||||
|
url("http://bohyewoo.com/webfonts/belgika/belgika-40th-webfont.svg#filename") format("svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Belgika";
|
||||||
|
src: url("http://bohyewoo.com/webfonts/belgika/belgika-16th-webfont.eot");
|
||||||
|
src: url("http://bohyewoo.com/webfonts/belgika/belgika-16th-webfont.woff") format("woff"),
|
||||||
|
url("http://bohyewoo.com/webfonts/belgika/belgika-16th-webfont.svg#filename") format("svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Belgika";
|
||||||
|
src: url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.eot");
|
||||||
|
src: url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.woff") format("woff"),
|
||||||
|
url("http://bohyewoo.com/webfonts/belgika/belgika-8th-webfont.svg#filename") format("svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Belgika";
|
||||||
|
src: url("http://bohyewoo.com/webfonts/belgika/belgika-5th-webfont.eot");
|
||||||
|
src: url("http://bohyewoo.com/webfonts/belgika/belgika-5th-webfont.woff") format("woff"),
|
||||||
|
url("http://bohyewoo.com/webfonts/belgika/belgika-5th-webfont.svg#filename") format("svg");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "DMMono";
|
||||||
|
src: url("http://bohyewoo.com/webfonts/DM_Mono/DMMono-Regular.ttf") format("ttf");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&family=Raleway:wght@200;300;400;500&family=Source+Code+Pro:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* navigation locating right position*/
|
||||||
|
.namemargin:before {
|
||||||
|
display: block;
|
||||||
|
content: "";
|
||||||
|
height: 50px;
|
||||||
|
margin: -50px 0 0;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* not scrolling while modal is opened */
|
||||||
|
|
||||||
|
#overlay_modal {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: #000;
|
||||||
|
filter:alpha(opacity=70);
|
||||||
|
-moz-opacity:0.8;
|
||||||
|
-khtml-opacity: 0.8;
|
||||||
|
opacity: 0.8;
|
||||||
|
z-index: 997;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* pop-up */
|
||||||
|
|
||||||
|
#overlay {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: #000;
|
||||||
|
filter:alpha(opacity=70);
|
||||||
|
-moz-opacity:0.8;
|
||||||
|
-khtml-opacity: 0.8;
|
||||||
|
opacity: 0.8;
|
||||||
|
z-index: 997;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cnt223 a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cnt223{
|
||||||
|
min-width: 600px;
|
||||||
|
width: 55vw;
|
||||||
|
min-height: 150px;
|
||||||
|
margin: 100px auto;
|
||||||
|
background: #f3f3f3;
|
||||||
|
position: relative;
|
||||||
|
z-index: 999;
|
||||||
|
padding: 15px 35px;
|
||||||
|
border-radius: 50px;
|
||||||
|
box-shadow: 0 2px 5px #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cnt223 p{
|
||||||
|
|
||||||
|
/**/font-size: 16px;
|
||||||
|
font-family: 'Source Sans Pro', sans-serif;
|
||||||
|
|
||||||
|
clear: both;
|
||||||
|
color: #555555;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cnt223 p a{
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cnt223 .x{
|
||||||
|
float: right;
|
||||||
|
height: 35px;
|
||||||
|
left: 22px;
|
||||||
|
position: relative;
|
||||||
|
top: -25px;
|
||||||
|
width: 34px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.cnt223 .x:hover{
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cnt223 > h1 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.popup{
|
||||||
|
width: 100%;
|
||||||
|
height: 100vh;
|
||||||
|
overflow-y: hidden;
|
||||||
|
margin: 0 auto;
|
||||||
|
display: none;
|
||||||
|
position: fixed;
|
||||||
|
z-index: 999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.popupclose {
|
||||||
|
font-family: Belgika-40th;
|
||||||
|
color: black !important;
|
||||||
|
font-size: 20pt;
|
||||||
|
padding: 10px;
|
||||||
|
position: relative;
|
||||||
|
left: 24vw;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.popupclose:hover {
|
||||||
|
text-decoration-line: none;
|
||||||
|
color: red !important;
|
||||||
|
font-size: 20pt;
|
||||||
|
padding: 10px;
|
||||||
|
position: relative;
|
||||||
|
left: 24vw;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* index.html */
|
||||||
|
|
||||||
|
* {
|
||||||
|
top: 0;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
overflow-x: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.indent {
|
||||||
|
padding-left: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon {
|
||||||
|
float: right;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon2 {
|
||||||
|
float: right;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.wrapper {
|
||||||
|
background-color: black;
|
||||||
|
font-family: 'Source Sans Pro', sans-serif;
|
||||||
|
line-height: 1.9;
|
||||||
|
font-size: 12pt;
|
||||||
|
width: 100%;
|
||||||
|
overflow-x: hidden;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.tos {
|
||||||
|
background-color: white;
|
||||||
|
width: 55%;
|
||||||
|
border: 0.5px solid black;
|
||||||
|
/* outline: 40px dotted black;
|
||||||
|
*/ padding: 40px;
|
||||||
|
margin: 0 auto;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.index-menu {
|
||||||
|
width: 17%;
|
||||||
|
top: 50px;
|
||||||
|
left: 20px;
|
||||||
|
|
||||||
|
font-family: Belgika-8th;
|
||||||
|
font-size: 7pt;
|
||||||
|
color: white;
|
||||||
|
letter-spacing: 0.6px;
|
||||||
|
|
||||||
|
position: fixed;
|
||||||
|
float: left;
|
||||||
|
z-index: 994;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-title {
|
||||||
|
font-family: Belgika-40th;
|
||||||
|
color: white;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-title-right {
|
||||||
|
font-family: Belgika-40th;
|
||||||
|
color: white;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.menu-title-country {
|
||||||
|
border: 0.1px solid white;
|
||||||
|
color: white;
|
||||||
|
padding: 5px;
|
||||||
|
z-index: 995;
|
||||||
|
}
|
||||||
|
|
||||||
|
.menu-title-country:hover {
|
||||||
|
border: 0.1px solid white;
|
||||||
|
color: white;
|
||||||
|
padding: 5px;
|
||||||
|
z-index: 995;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.index-menu-right {
|
||||||
|
width: 17.5%;
|
||||||
|
top: 50px;
|
||||||
|
right: calc(0.8vw);
|
||||||
|
overflow-y: auto;
|
||||||
|
|
||||||
|
font-family: Belgika-8th;
|
||||||
|
font-size: 7pt;
|
||||||
|
color: white;
|
||||||
|
letter-spacing: 0.5px;
|
||||||
|
|
||||||
|
position: fixed;
|
||||||
|
float: left;
|
||||||
|
z-index: 994;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.index-menu-single {
|
||||||
|
font-family: Belgika-8th;
|
||||||
|
font-size: 7pt;
|
||||||
|
color: white;
|
||||||
|
|
||||||
|
border-bottom: none;
|
||||||
|
text-decoration: none;
|
||||||
|
line-height: 2;
|
||||||
|
padding: 2px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.index-menu-single:hover {
|
||||||
|
background-color: white;
|
||||||
|
color: red;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.single-right {
|
||||||
|
line-height: 2;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#header {
|
||||||
|
background-color: black;
|
||||||
|
top: 0px;
|
||||||
|
width: 100%;
|
||||||
|
font-family: belgika-8th;
|
||||||
|
font-size: 12pt;
|
||||||
|
color: white;
|
||||||
|
text-align: center;
|
||||||
|
position: fixed;
|
||||||
|
padding: 10px;
|
||||||
|
z-index: 994;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#header h1 {
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#title-text {
|
||||||
|
font-family: Belgika-8th;
|
||||||
|
font-size: 30pt;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2 {
|
||||||
|
font-family: Belgika;
|
||||||
|
font-size: 20pt;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
font-family: Belgika;
|
||||||
|
font-size: 20pt;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.subtitle {
|
||||||
|
font-family: Belgika;
|
||||||
|
font-size: 15pt;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: black;
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #0033FF;
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.text {
|
||||||
|
font-weight: bold;
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
padding-bottom: -5px;
|
||||||
|
|
||||||
|
border-bottom: 2px solid black;
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.text .text-hover {
|
||||||
|
visibility: hidden;
|
||||||
|
width: 400px;
|
||||||
|
font-family: Belgika-8th;
|
||||||
|
font-size: 8pt;
|
||||||
|
|
||||||
|
padding: 10px;
|
||||||
|
background-color: #0033FF;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 6px;
|
||||||
|
padding: 5px 0;
|
||||||
|
position: absolute;
|
||||||
|
|
||||||
|
top: calc(-9vh);
|
||||||
|
left: calc(-9vh);
|
||||||
|
z-index: 998;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.text .text-hover-top {
|
||||||
|
visibility: hidden;
|
||||||
|
width: 600px;
|
||||||
|
font-family: Belgika-8th;
|
||||||
|
font-size: 8pt;
|
||||||
|
padding: 10px;
|
||||||
|
background-color: #0033FF ;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
border-radius: 6px;
|
||||||
|
padding: 5px 0;
|
||||||
|
|
||||||
|
/* Position the tooltip */
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
|
|
||||||
|
top: calc(-9vh);
|
||||||
|
left: calc(-9vh);
|
||||||
|
z-index: 998;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text .text-hover-img {
|
||||||
|
visibility: hidden;
|
||||||
|
/* Position the tooltip */
|
||||||
|
position: absolute;
|
||||||
|
z-index: 998;
|
||||||
|
|
||||||
|
top: calc(-400px);
|
||||||
|
left: calc(-200px);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.text:hover {
|
||||||
|
color: #0033FF ;
|
||||||
|
border-bottom: 2px solid #0033FF;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text:hover .text-hover {
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text:hover .text-hover-top {
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text:hover .text-hover-img {
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#reference-number {
|
||||||
|
color: blue;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 8pt;
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.reference-text {
|
||||||
|
font-size: 9pt;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.reference-link {
|
||||||
|
font-size: 9pt;
|
||||||
|
border-bottom: 2px solid black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.reference-link:hover {
|
||||||
|
color: #0033FF ;
|
||||||
|
font-size: 9pt;
|
||||||
|
border-bottom: 2px solid #0033FF;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/* The Modal (background) */
|
||||||
|
|
||||||
|
#overlay_modal {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: #000;
|
||||||
|
filter:alpha(opacity=70);
|
||||||
|
-moz-opacity:0.8;
|
||||||
|
-khtml-opacity: 0.8;
|
||||||
|
opacity: 0.8;
|
||||||
|
z-index: 997;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
.modal {
|
||||||
|
display: none;
|
||||||
|
position: fixed;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 50%;
|
||||||
|
height: 100%;
|
||||||
|
overflow-y: auto;
|
||||||
|
overflow-x: hidden;
|
||||||
|
|
||||||
|
border: 1px solid #888;
|
||||||
|
float: left;
|
||||||
|
z-index: 999 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Modal Content */
|
||||||
|
.modal-content {
|
||||||
|
background-color: gainsboro;
|
||||||
|
width: 95%;
|
||||||
|
margin: auto;
|
||||||
|
padding: 20px;
|
||||||
|
float: left;
|
||||||
|
|
||||||
|
-webkit-animation-name: animatetop;
|
||||||
|
-webkit-animation-duration: 0.5s;
|
||||||
|
animation-name: animatetop;
|
||||||
|
animation-duration: 0.5s;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.t_modal {
|
||||||
|
display: none;
|
||||||
|
position: fixed;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 50%;
|
||||||
|
height: 100%;
|
||||||
|
overflow-y: auto;
|
||||||
|
overflow-x: hidden;
|
||||||
|
float: right;
|
||||||
|
border: 1px solid #888;
|
||||||
|
z-index: 999;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Modal Content */
|
||||||
|
.t_modal-content {
|
||||||
|
background-color: gainsboro;
|
||||||
|
margin: auto;
|
||||||
|
padding: 20px;
|
||||||
|
width: 95%;
|
||||||
|
float: right;
|
||||||
|
|
||||||
|
-webkit-animation-name: animatetop;
|
||||||
|
-webkit-animation-duration: 0.5s;
|
||||||
|
animation-name: animatetop;
|
||||||
|
animation-duration: 0.5s;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Add Animation */
|
||||||
|
@-webkit-keyframes animatetop {
|
||||||
|
from {top:-300px; opacity:0}
|
||||||
|
to {top:0; opacity:1}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes animatetop {
|
||||||
|
from {top:-300px; opacity:0}
|
||||||
|
to {top:0; opacity:1}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.close {
|
||||||
|
font-family: 'Anonymous Pro', monospace !important;
|
||||||
|
top: 0;
|
||||||
|
left: calc(46vw);
|
||||||
|
color: #aaaaaa;
|
||||||
|
float: right;
|
||||||
|
font-size: 60px;
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
|
.t_close {
|
||||||
|
font-family: 'Anonymous Pro', monospace !important;
|
||||||
|
top: 0;
|
||||||
|
right: calc(12vw);
|
||||||
|
color: #aaaaaa;
|
||||||
|
float: right;
|
||||||
|
font-size: 60px;
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.close:hover,
|
||||||
|
.close:focus, .t_close:hover,
|
||||||
|
.t_close:focus {
|
||||||
|
color: #000;
|
||||||
|
text-decoration: none;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#button, #t_button {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 14px;
|
||||||
|
border-bottom: 2px solid black;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
#button:hover, #t_button:hover {
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 14px;
|
||||||
|
border-bottom: 2px solid #0033FF;
|
||||||
|
color: #0033FF;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
.reference-website {
|
||||||
|
color: #0033FF;
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
#tosview {
|
||||||
|
border: none;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
margin: -20px;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#treatyview {
|
||||||
|
border: none;
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
margin: -20px;
|
||||||
|
|
||||||
|
}
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,61 @@
|
|||||||
|
Between Brigadier-General John C. Bates, representing the United States, of the one part; and his Highness, the Sultan of Jolo, the Dato Rajah Muda, the Dato Attik, The Dato Calbi, and the Dato Joakanain, of the other part: it being understood that this agreement will be in full force only when approved by the Governor-General of the Philippine Islands and confirmed by the President of the United States, and will be subject to future modifications by the mutual consent of the parties in interest.
|
||||||
|
|
||||||
|
Article 1.
|
||||||
|
|
||||||
|
The sovereignty of the United States over the whole Archipelago of Jolo, and its dependencies, is declared and acknowledged.
|
||||||
|
|
||||||
|
Article 2.
|
||||||
|
|
||||||
|
The United States flag will be used in the Archipelago of Jolo, and its dependencies, on land and sea.
|
||||||
|
|
||||||
|
Article 3.
|
||||||
|
|
||||||
|
The rights and dignities of His Highness the Sultan, and his Datos, shall be fully respected; the Moros are not to be interfered with on account of their religion; all religious customs are to be respected, and no one is to be persecuted on account of his religion.
|
||||||
|
|
||||||
|
Article 4.
|
||||||
|
|
||||||
|
While the United States government may occupy and control such points in the Archipelago of Jolo as the public interests demand, encroachment will not be made upon the lands immediately about the residence of His Highness the Sultan, unless military necessity requires such occupation in case of war with a foreign power; and, where the property of individuals is taken, due compensation will be made in each case. Any person can purchase land in the Archipelago of Jolo and hold the same by obtaining the consent of the Sultan and coming to satisfactory agreement with the owner of the land, and such purchase shall immediately be registered in the proper office of the United States Government.
|
||||||
|
|
||||||
|
Article 5.
|
||||||
|
|
||||||
|
All trade in domestic products of the Arrchipelago of Jolo, when carried on by the Sultan and his people with any part of the Philippine Islands, and when conducted under the American flag, shall be free, unlimited, and undutiable.
|
||||||
|
|
||||||
|
Article 6.
|
||||||
|
|
||||||
|
The Sultan of Jolo shall be allowed to communicate direct with the Governor-General of the Philippine Islands in making complaint against the Commanding Officer of Jolo or against any Naval Commander.
|
||||||
|
|
||||||
|
Article 7.
|
||||||
|
|
||||||
|
The introduction of firearms and war material is forbidden, except under specific authority of the Governor-General of the Philippine Islands.
|
||||||
|
|
||||||
|
Article 8.
|
||||||
|
|
||||||
|
Piracy must be suppressed and the Sultan and his Datos agree to heartily cooperate with the United States authorities to that end, and to make every possible effort to arrest and bring to justice all persons engaged in piracy.
|
||||||
|
|
||||||
|
Article 9.
|
||||||
|
|
||||||
|
Where crimes and offenses are committed by Moros against Moros, the government of the Sultan will bring to trial and punishment the criminals and offenders, who will be delivered to the government of the Sultan by the United States authorities if in their possession. In all other cases persons charged with crimes or offenses will be delivered to the United States authorities for trial and punishment.
|
||||||
|
|
||||||
|
Article 10.
|
||||||
|
|
||||||
|
Any slave in the Archipelago of Jolo shall have the right to purchase freedom by paying to the master the usual market value.
|
||||||
|
|
||||||
|
Article 11.
|
||||||
|
|
||||||
|
In case of any trouble with subjects of the Sultan, the American authorities in the islands will be instructed to make careful investigation before resorting to harsh measures, as in most cases serious trouble can thus be avoided.
|
||||||
|
|
||||||
|
Article 12.
|
||||||
|
|
||||||
|
At present, American or foreigners wishing to go into the country should state their wishes to the Moro authorities and ask for an escort, but it is hoped that this will become unnecessary as we know each other better.
|
||||||
|
|
||||||
|
Article 13.
|
||||||
|
|
||||||
|
The United States will give full protection to the Sultan and his subjects in case any foreign nation should attempt to impose upon them.
|
||||||
|
|
||||||
|
Article 14.
|
||||||
|
|
||||||
|
The United States will not sell the island of Jolo or any other island of the Jolo Archipelago to any foreign nation without the consent of the Sultan of Jolo.
|
||||||
|
|
||||||
|
Article 15.
|
||||||
|
|
||||||
|
The United States government will pay the following monthly salaries: To the Sultan $250.00 (Mexican dollars) To Dato Rajah Muda $ 75.00 To Dato Attik $ 60.00 To Dato Calbi $ 75.00 To Dato Joakanain $ 75.00 To Dato Amin Hussin $ 60.00 To Dato Puyo $ 60.00 To Hadji Butu $ 50.00 To Hadji Mura $ 10.00 To Serif Saguin $ 15.00.
|
@ -0,0 +1,33 @@
|
|||||||
|
1. Victoria, by the GRACE of God, of the United Kingdom of Great Britain and Ireland, Queen, Defender of the Faith, —To all to whom these Presents shall come — GREETING: KNOW YE — that We, of our Special Grace, certain knowledge, and mere motion, have thought fit to erect and do hereby erect our Island of Hong Kong and its Dependencies, situate between twenty two degrees nine minutes, and twenty-two degrees twenty-one minutes North Latitude, and the one hundred and fourteenth degree eighteen minutes East Longtitude from the Meridian of Greenwich, into a Colony, and the said Island and its Dependencies is hereby erected into a separate Colony accordingly, to be known and designated at “the Colony of Hong Kong”.
|
||||||
|
|
||||||
|
2. AND WE DO hereby further grant, appoint, and ordain, that the Governor, for the time being, of the said Colony, and such other Persons as are hereinafter designated, shall constitute, and be a Legislative Council for the said Colony: And We do hereby direct and appoint, that in addition to the said Governor, the said Legislative Council shall be composed of such Public Officers within the said Colony, or of such other Persons within the same, as shall from time to time be named or designated for that purpose, by Us, by any Instruction of Instructions, or Warrant, or Warrants, to be by Us for that purpose issued under Our Signet and Sign Manual, and with the advice of Our Privy Councillor, shall hold their places in the said Council, at our pleasure.
|
||||||
|
|
||||||
|
3. And we do hereby grant and ordain, that the Governor for the time being, of the said Colony, with the advice of the said Legislative Council, shall have full power and authority to make and enact all such laws and Ordinances as may from time to time be required for the Peace, Order, and good Government of the said Colony of Hong-Kong: And that, in making all such laws and Ordinances, the said Governor shall exercise all such powers and authorities; and that the said Legislative Council shall conform to, and observe all such rules and regulations as We, with the advice of Our Privy Council, shall from time to time, make for his and their guidance therein: Provided, nevertheless, and We do hereby reserve to Ourselves, our Heirs and Successors, our and their right and authority to disallow any such Ordinances in the whole or in part, and to make and establish from time to time, with the advice and consent of Parliament, or with the advice of our or their Privy Council, all such Laws as may to Us, to them, appear necessary, for the Order, Peace, and good Government of our said Island and its Dependencies, as full as if these Presents had not been made.
|
||||||
|
|
||||||
|
4. And, whereas, it is expedient, that an Executive Council should be appointed to advise and assist the Governor of our said Colony of Hong-Kong, for the time being, in the administration of the Government thereof — We do therefore, by these, our Letters Patent, authorizing the Governor of said Colony, for the time being, to summon as an Executive Council, such Persons as may from time to time be named or designated by Us, in any Instructions under Our Signet and Sign Manual, addressed to him in that behalf.
|
||||||
|
|
||||||
|
5. And We, do hereby authorize and empower the Governor of Our said Colony of Hong Kong, for the time being, to keep and use the Public Seal appointed for the Sealing of all things whatsoever that shall pass the Seal of our said Colony.
|
||||||
|
|
||||||
|
6. And we do hereby give and grant to the Governor of our said Colony of Hong-Kong, for the time being, full power and authority in our name and on our behalf, but subject, nevertheless, to such provisions as may be, in that respect contained in any instructions which may from time to time be addressed to him by Us, for that purpose, to make and execute in our name, and on our behalf, under the Public Seal of our said Colony, Grants of Land to us belonging within the same, to Private Persons for their own use and benefit, or to any Persons, Bodies Politic or Corporate, in trust for the Public uses of our Subjects there resident, or of any of them.
|
||||||
|
|
||||||
|
7. And We do hereby authorize and empower the Governor of our said Colony of Hong Kong, for the time being, to constitute and appoint Judges, and in cases requisite, Commissioners of Oyer and Terminer, Justices of the Peace, and other necessary Officers and Ministers in our said Colony, for the due and impartial administration of justice, and for putting the Laws into execution, and to administer, or cause to be administered unto them, such Oath, or Oaths as are usually given for the due execution and performance of officers and places, and for the clearing of truth in judicial matters.
|
||||||
|
|
||||||
|
8. And we do hereby give and grant unto the Governor of our said Colony of Hong-Kong, for the time being, full power and authority, as he shall see occasion, in our name, and on our behalf, to remit any fines, penalties, or forfeitures which may accrue, or become payable to us, provided the same do not exceed Fifty Pounds Sterling, in any one case, and to respite and suspend the payment of any such Fine, Penalty or Forfeiture, exceeding the said sum of Fifty Pounds, until our pleasure thereon shall be made known and signified to such Governor.
|
||||||
|
|
||||||
|
9. And we do hereby give and grant unto the Governor of our said Colony of Hong Kong, for the time being, full power and authority, as he shall see occasion, in our name, and on our behalf, to grant to any offender convicted of any crime, in any Court, or before any Judge, Justice or Magistrate within our said Colony, a free and unconditional pardon, or a pardon subject to such conditions, as by any Law or Ordinance hereafter to be in force in our said Colony, may be there unto annexed, or any respite of the execution of the sentence of any such offender, for such period as to such Governor may seem fit.
|
||||||
|
|
||||||
|
10. And we do hereby give and grant unto the Governor of our said Colony of Hong Kong, for the time being, full power and authority, upon sufficient cause to him appearing, to suspend from the exercise of his Office, within our said Colony, any person exercising any office or Warrant granted, or which may be granted by us, or in our name, or under our authority which suspension shall continue and have effect, only until our pleasure therein shall be made known and signified to such Governor: And we do hereby strictly require and enjoin the Governor of our said Colony of Hong Kong, for the time being, in proceeding to any such suspension, to observe the directions in that behalf, given to him by our instructions, under our Signet and Sign Manual, accompanying his Commission of appointment as Governor of the said Colony.
|
||||||
|
|
||||||
|
11. And, in the event of the death or absence out of our said Colony of Hong-Kong, of such person as may be commissioned and appointed by us, to be the Governor thereof We do hereby provide and declare our pleasure to be, that all, and every, the powers and authorities herein granted to the Governor of our said Colony of Hong Kong, for the time being, shall be, and the same are, hereby vested in such person as may be appointed by us, by Warrant, under our Signet and Sign Manual, to be the Lieutenant-Governor of our said Colony; or, in the event of there being no Person upon the place, Commissioned and appointed by use to be Lieutenant-Governor thereof, then our pleasure is, and we do hereby provide and declare, that in any such contingency, all the powers and authorities herein granted to the Governor, or Lieutenant-Governor of our said Colony shall be, and the same are hereby granted, to the Colonial Secretary of our said Colony of Hong Kong, for the time being, and such Lieutenant-Governor, or such Colonial Secretary, as the case may be, shall execute all, and every, the powers and authorities herein granted, until our further pleasure shall be signified therein.
|
||||||
|
|
||||||
|
12. And we do hereby require and command all our Officers and Ministers, Civil and Military, and all other, the Inhabitants of our said Colony of Hong-Kong, to be obedient in aiding and assisting to such person as may be Commissioned and appointed by us to be Governor of Hong-Kong, or, in the event of his death or absence, to such person as may, under the provision of these, our Letters Patent, assume and exercise the functions of such Governor.
|
||||||
|
|
||||||
|
13. And we do hereby reserve to us, our heirs and successors, full power and authority from time to time, to revoke, alter, or amend, these our Letters Patent, as to us or them shall seem meet:
|
||||||
|
|
||||||
|
IN WITNESS WHEREOF, we have caused these, our Letters, to be made Patent.
|
||||||
|
|
||||||
|
WITNESS Ourself, at Westminster, the Fifth day of April, in the Sixth year of our Reign.
|
||||||
|
|
||||||
|
BY THE QUEEN HERSELF
|
||||||
|
|
||||||
|
EDMUNDS.
|
@ -0,0 +1,30 @@
|
|||||||
|
This treaty transferring responsibility for postal, telegraph, and telephone service to Japan.
|
||||||
|
The provisions of the treaty encompassed the right of eminent domain or condemnation against public property and against private property. In this context, the treaty provided for no compensation or payments except that Japan “shall deliver to the Korean Government a suitable percentage” of the profits.
|
||||||
|
The treaty preamble asserted that the Envoy Extraordinary and Minister Plenipotentiary of His Majesty the Emperor of Japan and the Minister of State for Foreign Affairs of His Majesty the Emperor of Korea were “respectively duly empowered” to negotiate and to agree upon the specific language of the proposed bilateral treaty.
|
||||||
|
Article 1
|
||||||
|
The Imperial Government of Korea shall transfer and assign the control and administration of the post, telegraph and telephone services in Korea (except the telephone service exclusively pertaining to the Department of the Imperial Household) to the Imperial Japanese Government.
|
||||||
|
Article 2
|
||||||
|
The land, buildings, furnitures, instruments, machines and all other appliances connected with the system of communications already established by the Imperial Government of Korea, shall, by virtue of the present Agreement, be transferred to the control of the Imperial Japanese Government. The authorities of the two countries acting together shall make an inventory of the land, buildings and all other requisites mentioned in the preceding paragraph which shall serve as evidence in the future.
|
||||||
|
Article 3
|
||||||
|
|
||||||
|
When it is deemed necessary by the Japanese Government to extend the communication system in Korea, they may appropriate land and buildings belonging to the State or to private persons, the former without compensation and the latter with proper indemnification.
|
||||||
|
Article 4
|
||||||
|
|
||||||
|
In respect of the control of the communication service and the custody of the properties in connection therewith, the Japanese Government assume, on their own account, the responsibility of good administration. The expenses required for the extension of the communication services shall also be borne by the Imperial Government of Japan. The Imperial Government of Japan shall officially notify the Imperial Government of Korea of the financial condition of the system of communications under their control.
|
||||||
|
Article 5
|
||||||
|
All appliances and materials which are deemed necessary by the Imperial Government of Japan for the control or extension of the system of communication shall be exempt from all duties and imposts.
|
||||||
|
Article 6
|
||||||
|
|
||||||
|
The Imperial Government of Korea shall be at liberty to maintain the present Board of Communication so far as such retention does not interfere with the control and extension of the services by the Japanese Government. The Japanese Government, in controlling and extending the services, shall engage as many Korean officials and employees as possible.
|
||||||
|
Article 7
|
||||||
|
|
||||||
|
In respect of the arrangements formerly entered into by the Korean Government with the Governments of foreign Powers concerning the post, telegraph and telephone services, the Japanese Government shall in behalf of Korea exercise the rights and perform the obligations pertaining thereto ....
|
||||||
|
Article 8
|
||||||
|
|
||||||
|
The various conventions and agreements respecting the communication services hitherto existing between the Governments of Japan and Korea are naturally abolished or modified by the present Agreement.
|
||||||
|
Article 9
|
||||||
|
When in future as the result of the general development of the communication system in Korea, there is some adequate profit over and above expenditures defrayed by the Japanese Government for the control and maintenance of the old services and for their extensions and improvements, the Japanese Government shall deliver to the Korean Government a suitable percentage of such profit.
|
||||||
|
Article 10
|
||||||
|
When in the future an ample surplus exists in the finance of the Korean Government, the control of their communication services may be returned, as the result of the consultation of the two Governments, to the Government of Korea.
|
||||||
|
Hayashi Gonsuke, Envoy Extraordinary and Minister Plenipotentiary (dated, the 1st day of the 4th month of the 38th year of Meiji)[5]Yi Ha-yeong, Minister of State for Foreign Affairs (dated, the 1st day of the 4th month of the 9th year of Gwangmu)
|
||||||
|
|
@ -0,0 +1,109 @@
|
|||||||
|
Treaty of Peace Between the United States and Spain (December 10, 1898)
|
||||||
|
|
||||||
|
The United States of America and Her Majesty the Queen Regent of Spain, in the name of her august son Don Alfonso XIII, desiring to end the state of war now existing between the two countries, have for that purpose appointed as plenipotentiaries:
|
||||||
|
|
||||||
|
The President of the United States, William R. Day, Cushman K. Davis, William P. Frye, George Gray, and Whitelaw Reid, citizens of the United States;
|
||||||
|
|
||||||
|
And Her Majesty the Queen Regent of Spain,
|
||||||
|
|
||||||
|
Don Eugenio Montero Rios, president of the senate, Don Buenaventura de Abarzuza, senator of the Kingdom and ex-minister of the Crown; Don Jose de Garnica, deputy of the Cortes and associate justice of the supreme court; Don Wenceslao Ramirez de Villa-Urrutia, envoy extraordinary and minister plenipotentiary at Brussels, and Don Rafael Cerero, general of division;
|
||||||
|
|
||||||
|
Who, having assembled in Paris, and having exchanged their full powers, which were found to be in due and proper form, have, after discussion of the matters before them, agreed upon the following articles:
|
||||||
|
|
||||||
|
Article 1.
|
||||||
|
|
||||||
|
Spain relinquishes all claim of sovereignty over and title to Cuba.And as the island is, upon its evacuation by Spain, to be occupied by the United States, the United States will, so long as such occupation shall last, assume and discharge the obligations that may under international law result from the fact of its occupation, for the protection of life and property.
|
||||||
|
|
||||||
|
Article 2.
|
||||||
|
|
||||||
|
Spain cedes to the United States the island of Porto Rico and other islands now under Spanish sovereignty in the West Indies, and the island of Guam in the Marianas or Ladrones.
|
||||||
|
|
||||||
|
Article 3.
|
||||||
|
|
||||||
|
Spain cedes to the United States the archipelago known as the Philippine Islands, and comprehending the islands lying within the following line:
|
||||||
|
|
||||||
|
A line running from west to east along or near the twentieth parallel of north latitude, and through the middle of the navigable channel of Bachi, from the one hundred and eighteenth (118th) to the one hundred and twenty-seventh (127th) degree meridian of longitude east of Greenwich, thence along the one hundred and twenty seventh (127th) degree meridian of longitude east of Greenwich to the parallel of four degrees and forty five minutes (4°45']) north latitude, thence along the parallel of four degrees and forty five minutes (4°45') north latitude to its intersection with the meridian of longitude one hundred and nineteen degrees and thirty five minutes (119°35') east of Greenwich, thence along the meridian of longitude one hundred and nineteen degrees and thirty five minutes (119°35') east of Greenwich to the parallel of latitude seven degrees and forty minutes (7°40') north, thence along the parallel of latitude of seven degrees and forty minutes (7°40') north to its intersection with the one hundred and sixteenth (116th) degree meridian of longitude east of Greenwich, thence by a direct line to the intersection of the tenth (10th) degree parallel of north latitude with the one hundred and eighteenth (118th) degree meridian of longitude east of Greenwich, and thence along the one hundred and eighteenth (118th) degree meridian of longitude east of Greenwich to the point of beginning.The United States will pay to Spain the sum of twenty million dollars ($20,000,000) within three months after the exchange of the ratifications of the present treaty.
|
||||||
|
|
||||||
|
Article 4.
|
||||||
|
|
||||||
|
The United States will, for the term of ten years from the date of the exchange of the ratifications of the present treaty, admit Spanish ships and merchandise to the ports of the Philippine Islands on the same terms as ships and merchandise of the United States.
|
||||||
|
|
||||||
|
Article 5.
|
||||||
|
|
||||||
|
The United States will, upon the signature of the present treaty, send back to Spain, at its own cost, the Spanish soldiers taken as prisoners of war on the capture of Manila by the American forces. The arms of the soldiers in question shall be restored to them.
|
||||||
|
|
||||||
|
Spain will, upon the exchange of the ratifications of the present treaty, proceed to evacuate the Philippines, as well as the island of Guam, on terms similar to those agreed upon by the Commissioners appointed to arrange for the evacuation of Porto Rico and other islands in the West Indies, under the Protocol of August 12, 1898, which is to continue in force till its provisions are completely executed.
|
||||||
|
|
||||||
|
The time within which the evacuation of the Philippine Islands and Guam shall be completed shall be fixed by the two Governments. Stands of colors, uncaptured war vessels, small arms, guns of all calibres, with their carriages and accessories, powder, ammunition, livestock, and materials and supplies of all kinds, belonging to the land and naval forces of Spain in the Philippines and Guam, remain the property of Spain. Pieces of heavy ordnance, exclusive of field artillery, in the fortifications and coast defences, shall remain in their emplacements for the term of six months, to be reckoned from the exchange of ratifications of the treaty; and the United States may, in the meantime, purchase such material from Spain, if a satisfactory agreement between the two Governments on the subject shall be reached.
|
||||||
|
|
||||||
|
Article 6.
|
||||||
|
|
||||||
|
Spain will, upon the signature of the present treaty, release all prisoners of war, and all persons detained or imprisoned for political offences, in connection with the insurrections in Cuba and the Philippines and the war with the United States.
|
||||||
|
|
||||||
|
Reciprocally, the United States will release all persons made prisoners of war by the American forces, and will undertake to obtain the release of all Spanish prisoners in the hands of the insurgents in Cuba and the Philippines.
|
||||||
|
|
||||||
|
The Government of the United States will at its own cost return to Spain and the Government of Spain will at its own cost return to the United States, Cuba, Porto Rico, and the Philippines, according to the situation of their respective homes, prisoners released or caused to be released by them, respectively, under this article.
|
||||||
|
|
||||||
|
Article 7.
|
||||||
|
|
||||||
|
The United States and Spain mutually relinquish all claims for indemnity, national and individual, of every kind, of either Government, or of its citizens or subjects, against the other Government, that may have arisen since the beginning of the late insurrection in Cuba and prior to the exchange of ratifications of the present treaty, including all claims for indemnity for the cost of the war.
|
||||||
|
|
||||||
|
The United States will adjudicate and settle the claims of its citizens against Spain relinquished in this article.
|
||||||
|
|
||||||
|
Article 8.
|
||||||
|
|
||||||
|
In conformity with the provisions of Articles I, II, and III of this treaty, Spain relinquishes in Cuba, and cedes in Porto Rico and other islands in the West Indies, in the island of Guam, and in the Philippine Archipelago, all the buildings, wharves, barracks, forts, structures, public highways and other immovable property which, in conformity with law, belong to the public domain, and as such belong to the Crown of Spain.
|
||||||
|
|
||||||
|
And it is hereby declared that the relinquishment or cession, as the case may be, to which the preceding paragraph refers, can not in any respect impair the property or rights which by law belong to the peaceful possession of property of all kinds, of provinces, municipalities, public or private establishments, ecclesiastical or civic bodies, or any other associations having legal capacity to acquire and possess property in the aforesaid territories renounced or ceded, or of private individuals, of whatsoever nationality such individuals may be.
|
||||||
|
|
||||||
|
The aforesaid relinquishment or cession, as the case may be, includes all documents exclusively referring to the sovereignty relinquished or ceded that may exist in the archives of the Peninsula. Where any document in such archives only in part relates to said sovereignty, a copy of such part will be furnished whenever it shall be requested. Like rules shall be reciprocally observed in favor of Spain in respect of documents in the archives of the islands above referred to.
|
||||||
|
|
||||||
|
In the aforesaid relinquishment or cession, as the case may be, are also included such rights as the Crown of Spain and its authorities possess in respect of the official archives and records, executive as well as judicial, in the islands above referred to, which relate to said islands or the rights and property of their inhabitants. Such archives and records shall be carefully preserved, and private persons shall without distinction have the right to require, in accordance with law, authenticated copies of the contracts, wills and other instruments forming part of notorial protocols or files, or which may be contained in the executive or judicial archives, be the latter in Spain or in the islands aforesaid.
|
||||||
|
|
||||||
|
Article 9.
|
||||||
|
|
||||||
|
Spanish subjects, natives of the Peninsula, residing in the territory over which Spain by the present treaty relinquishes or cedes her sovereignty, may remain in such territory or may remove therefrom, retaining in either event all their rights of property, including the right to sell or dispose of such property or of its proceeds; and they shall also have the right to carry on their industry, commerce and professions, being subject in respect thereof to such laws as are applicable to other foreigners. In case they remain in the territory they may preserve their allegiance to the Crown of Spain by making, before a court of record, within a year from the date of the exchange of ratifications of this treaty, a declaration of their decision to preserve such allegiance; in default of which declaration they shall be held to have renounced it and to have adopted the nationality of the territory in which they may reside.
|
||||||
|
|
||||||
|
The civil rights and political status of the native inhabitants of the territories hereby ceded to the United States shall be determined by the Congress.
|
||||||
|
|
||||||
|
Article 10.
|
||||||
|
|
||||||
|
The inhabitants of the territories over which Spain relinquishes or cedes her sovereignty shall be secured in the free exercise of their religion.
|
||||||
|
|
||||||
|
Article 11.
|
||||||
|
|
||||||
|
The Spaniards residing in the territories over which Spain by this treaty cedes or relinquishes her sovereignty shall be subject in matters civil as well as criminal to the jurisdiction of the courts of the country wherein they reside, pursuant to the ordinary laws governing the same; and they shall have the right to appear before such courts, and to pursue the same course as citizens of the country to which the courts belong.
|
||||||
|
|
||||||
|
Article 12.
|
||||||
|
|
||||||
|
Judicial proceedings pending at the time of the exchange of ratifications of this treaty in the territories over which Spain relinquishes or cedes her sovereignty shall be determined according to the following rules:
|
||||||
|
|
||||||
|
12-1. Judgments rendered either in civil suits between private individuals, or in criminal matters, before the date mentioned, and with respect to which there is no recourse or right of review under the Spanish law, shall be deemed to be final, and shall be executed in due form by competent authority in the territory within which such judgments should be carried out.
|
||||||
|
|
||||||
|
12-2. Civil suits between private individuals which may on the date mentioned be undetermined shall be prosecuted to judgment before the court in which they may then be pending or in the court that may be substituted therefor.
|
||||||
|
|
||||||
|
12-3. Criminal actions pending on the date mentioned before the Supreme Court of Spain against citizens of the territory which by this treaty ceases to be Spanish shall continue under its jurisdiction until final judgment; but, such judgment having been rendered, the execution thereof shall be committed to the competent authority of the place in which the case arose.
|
||||||
|
|
||||||
|
Article 13.
|
||||||
|
|
||||||
|
The rights of property secured by copyrights and patents acquired by Spaniards in the Island of Cuba and in Porto Rico, the Philippines and other ceded territories, at the time of the exchange of the ratifications of this treaty, shall continue to be respected. Spanish scientific, literary and artistic works, not subversive of public order in the territories in question, shall continue to be admitted free of duty into such territories, for the period of ten years, to be reckoned from the date of the exchange of the ratifications of this treaty.
|
||||||
|
|
||||||
|
Article 14.
|
||||||
|
|
||||||
|
Spain will have the power to establish consular officers in the ports and places of the territories, the sovereignty over which has been either relinquished or ceded by the present treaty.
|
||||||
|
|
||||||
|
Article 15.
|
||||||
|
|
||||||
|
The Government of each country will, for the term of ten years, accord to the merchant vessels of the other country the same treatment in respect of all port charges, including entrance and clearance dues, light dues, and tonnage duties, as it accords to its own merchant vessels, not engaged in the coastwise trade.
|
||||||
|
|
||||||
|
Article 16.
|
||||||
|
|
||||||
|
It is understood that any obligations assumed in this treaty by the United States with respect to Cuba are limited to the time of its occupancy thereof; but it will upon termination of such occupancy, advise any Government established in the island to assume the same obligations.
|
||||||
|
|
||||||
|
Article 17.
|
||||||
|
|
||||||
|
The present treaty shall be ratified by the President of the United States, by and with the advice and consent of the Senate thereof, and by Her Majesty the Queen Regent of Spain; and the ratifications shall be exchanged at Washington within six months from the date hereof, or earlier if possible.
|
||||||
|
|
||||||
|
In faith whereof, we, the respective Plenipotentiaries, have signed this treaty and have hereunto affixed our seals.
|
||||||
|
|
||||||
|
Done in duplicate at Paris, the tenth day of December, in the year of Our Lord one thousand eight hundred and ninety-eight.
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue